diff --git a/CHANGELOG.md b/CHANGELOG.md index 63de115..a0c58a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## Unreleased + +### Added +- Optional higher-resolution networks as **subpath exports**. Import + `DEFAULT_MARNET` from `searoute-ts/marnet-20km` (Eurostat `marnet_plus_20km`, + ~29,581 segments) or `searoute-ts/marnet-50km` (~15,498 segments) and pass it + to the `network` option for finer coastal routing than the bundled 100 km + default. Each variant ships once as a shared `dist/data/marnet-.cjs` + asset that both the CJS and ESM builds load at runtime (building on #10), so + importing a variant doesn't bloat the core or duplicate data across builds. + `scripts/build-marnet.cjs` now takes a resolution label and can generate any + Eurostat resolution (5/10/20/50/100 km); the 10 km and 5 km networks are too + large to bundle and are documented for use via `loadNetwork`. A size/accuracy + tradeoff table was added to the README. (#11) + ## 2.2.0 — 2026-07-03 ### Added @@ -163,9 +178,11 @@ see ~24% smaller numbers — they now match the geodesic length in nm correctly. - ~~The marnet is inlined in the bundle (~1.1 MB per build, ~2.2 MB total unpacked). Migrating to a single shared JSON asset is a non-breaking follow-up and would roughly halve published size.~~ Done in Unreleased (#10). -- Multi-resolution networks (Eurostat ships 5 km / 10 km / 20 km / 50 km / +- ~~Multi-resolution networks (Eurostat ships 5 km / 10 km / 20 km / 50 km / 100 km). Currently we only ship 100 km. Other resolutions could be loaded - via a separate import path. + via a separate import path.~~ 20 km and 50 km now ship as the + `searoute-ts/marnet-20km` / `searoute-ts/marnet-50km` subpath exports; 10 km + and 5 km are generatable via `scripts/build-marnet.cjs`. Done in Unreleased (#11). ## 1.2.1 — 2022-07-12 First public release of the TypeScript port. See git history for prior 1.x diff --git a/DOCS.md b/DOCS.md index 4008eb9..d0f3cc7 100644 --- a/DOCS.md +++ b/DOCS.md @@ -32,7 +32,14 @@ A consequence is that a route which crosses the Pacific comes back wrapped to `[ ### Other resolutions -Eurostat ships 5 km / 10 km / 20 km / 50 km / 100 km networks. We bundle only 100 km to keep the package small. For higher resolution, use the `network` option — see [Custom networks](#custom-networks). +Eurostat ships 5 km / 10 km / 20 km / 50 km / 100 km networks. The core bundles only 100 km to keep the install small. Two finer resolutions are available as **subpath exports** you can pass to the `network` option: + +```ts +import { DEFAULT_MARNET } from 'searoute-ts/marnet-20km'; // or 'searoute-ts/marnet-50km' +seaRoute(origin, destination, { network: DEFAULT_MARNET }); +``` + +Each variant ships as its own shared `dist/data/marnet-.cjs` asset (loaded once by both builds), so you only download it if you import it. The 10 km and 5 km networks are too large to bundle — generate them from source with `scripts/build-marnet.cjs` and load them via `loadNetwork` or the `network` option. See [Custom networks](#custom-networks) and the resolution table in the README. --- diff --git a/README.md b/README.md index f830798..ce8516e 100644 --- a/README.md +++ b/README.md @@ -211,6 +211,40 @@ You choose the version by choosing the **URL**: For production, prefer a **pinned** URL (or just the bundled default) so your distances don't shift when the network is updated. +### Higher-resolution networks (optional) + +The bundled network is Eurostat's **100 km** `marnet_plus`. Eurostat also +publishes finer resolutions, which give more accurate coastal routing and +shorter-hop fidelity at the cost of a larger download and slightly slower +first-route graph construction. Two moderate resolutions ship as **subpath +exports** so you only pay for them if you import them: + +```ts +import { DEFAULT_MARNET } from 'searoute-ts/marnet-20km'; // or 'searoute-ts/marnet-50km' +import { seaRoute } from 'searoute-ts'; + +seaRoute(origin, destination, { network: DEFAULT_MARNET }); +``` + +Like the bundled default, each variant ships once as a shared +`dist/data/marnet-.cjs` asset that both the CJS and ESM builds load at +runtime, so importing a variant doesn't duplicate the network across builds. + +| Import | Resolution | Segments | JSON size | gzipped | Coastal accuracy | +| --- | --- | --- | --- | --- | --- | +| `searoute-ts` (bundled default) | 100 km | 9,847 | ~1.3 MB | ~0.18 MB | Baseline — good for global routing | +| `searoute-ts/marnet-50km` | 50 km | 15,498 | ~1.9 MB | ~0.27 MB | Modest step up | +| `searoute-ts/marnet-20km` | 20 km | 29,581 | ~3.6 MB | ~0.51 MB | Noticeably finer coastal hops | +| via `loadNetwork` (see below) | 10 km | 48,301 | ~5.9 MB | ~0.84 MB | High — larger download | +| via `loadNetwork` (see below) | 5 km | 72,478 | ~9.0 MB | ~1.24 MB | Highest — largest download | + +The 10 km and 5 km networks are large enough that bundling them would dominate +the install, so they are **not** shipped in the package. Generate them from the +Eurostat source with `scripts/build-marnet.cjs` (the script header documents the +GDAL conversion), host the resulting JSON, and load it with +[`loadNetwork`](#fetch-the-network-from-a-url-instead-of-bundling-it-optional) +— or pass any `FeatureCollection` to the `network` option directly. + ## Output shape ```ts @@ -392,8 +426,10 @@ by default — the Northwest and Northeast Passages are blocked. Pass `allowArctic: true` to enable them. **Can I use my own network?** Yes — `seaRoute(origin, destination, { network })`. -Useful for higher-resolution Eurostat data (5/10/20/50 km), inland waterways, -or AIS-derived custom graphs. +Useful for inland waterways or AIS-derived custom graphs. For higher-resolution +Eurostat data (5/10/20/50 km), see +[Higher-resolution networks](#higher-resolution-networks-optional) — 20 km and +50 km ship as subpath exports. **Does it handle the Red Sea / Suez crisis?** Yes — pass `restrictions: ['suez', 'babelmandeb']` to force Cape of Good Hope routing. @@ -402,10 +438,14 @@ or AIS-derived custom graphs. marnet has been normalised so the Pacific is a connected graph, and all distances use haversine internally. -**What's the bundle size?** ~184 KB packed / ~1.3 MB unpacked on npm. The -bundled marnet is the bulk (~1.1 MB JSON). It ships once as a shared -`dist/data/marnet.cjs` asset that both the CJS and ESM builds load at runtime, -rather than being inlined into each build. Tree-shakeable. +**What's the bundle size?** What you import at runtime is small: the core plus +the bundled 100 km marnet (~1.1 MB JSON, shipped once as a shared +`dist/data/marnet.cjs` asset both builds load, rather than inlined into each). +Tree-shakeable, so the optional `searoute-ts/marnet-20km` / `marnet-50km` +networks only load if you import them. They do add to the npm tarball, though — +including them the package is ~1.1 MB packed / ~7 MB unpacked (each variant is a +single shared asset, not duplicated per build). If you need the finer networks +without the install cost, generate and host them and use `loadNetwork` instead. ## Credits diff --git a/data/marnet-20km.cjs b/data/marnet-20km.cjs new file mode 100644 index 0000000..1395a6b --- /dev/null +++ b/data/marnet-20km.cjs @@ -0,0 +1,12 @@ +/* Auto-generated by scripts/build-marnet.cjs. Do not edit by hand. + * + * Single shared copy of the Eurostat marnet_plus_20km network, loaded by both the CJS + * and ESM builds (see src/lib/marnet.ts / src/marnet/*.ts). Shipping the + * network as one asset instead of inlining it into each build roughly halves + * the published package size. + * + * Source: https://github.com/eurostat/searoute (EUPL-1.2). + */ +module.exports = JSON.parse( + '{"type":"FeatureCollection","features":[{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.25325,54.094375],[14.299422,53.977562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.085875,42.980563],[3.283,43.086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.613,71.009],[23.4435,71.1135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.0025,60.1795],[25.8385,60.1805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.002,35.613],[-133.138,37.104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.385,62.587],[5.115,62.461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.226,-24.761],[-34.868,-25.152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.525313,57.723312],[9.43,57.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.819488,55.736742],[10.921047,55.630969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.635687,36.517281],[14.821125,36.556516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.031,39.505],[-71.728,39.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-2.019],[50.955,-0.829]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.595,54.946],[-0.706625,54.952625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.806719,57.722094],[10.962883,57.725977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.285625,56.15325],[20.347,56.303],[20.422875,56.409813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.616,41.406],[136.259,42.027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.7905,44.57725],[-8.965,44.356]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.044125,55.693125],[15.267492,55.642883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.496875,58.794438],[10.312703,58.878641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.53875,41.25775],[2.938875,41.14975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.563,39.075875],[7.729,39.0915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.218,-20.949],[-175.5,-21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.94375,35.4515],[27.045,35.772],[27.08,35.901]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.419,62.3635],[18.9975,62.7195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.763,46.625],[142.927,46.151]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.398,65.378],[23.597,65.206]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.423875,37.7135],[16.63,37.909]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.0655,66.252],[-21.03,66.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.225828,50.785375],[1.407969,50.850938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.565062,47.619125],[-6.613,47.446]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.180867,57.926906],[7.436063,57.685312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.914188,58.028562],[6.0195,57.9865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.470094,53.916625],[3.538,53.911],[3.749,53.933]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.015738,42.886645],[10.014422,42.730695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.3405,18.893],[-65.0535,18.407]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.252938,35.780312],[27.223773,35.946328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.352,37.851],[25.342,37.73075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30,-40],[26.0055,-34.501]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.028,70.724],[20.797,71.151625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.5,-20],[-36.2,-13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.101,25.5],[56.731,25.975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.978195,50.7655],[-0.551172,50.742578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.112,59.524],[17.414,59.383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.562078,50.371922],[0.428766,50.403988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.085,25.8165],[-76.984,25.881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.27,37.481],[-50.001,36.534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.385,42.2565],[15.497625,42.175156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.009375,48.941063],[-4.211,48.93775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.409562,43.420125],[-8.262891,43.470453],[-8.402055,43.614492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.288,55.837],[7.2315,55.50075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-10],[-77.699,-12.002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.658,53.03],[5.588,53.178]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67,22.3],[66.6,24.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.5,37.4],[7.6215,37.2355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.4705,61.47825],[4.42875,61.177063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.464687,60.453016],[21.580266,60.355922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.396,36.939],[1.638,36.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.214187,57.974],[9.36725,58.076]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.085875,42.980563],[3.1305,42.5335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.938,48.808],[-2.666,48.686]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.550141,42.856656],[10.624219,42.749781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.781844,42.169281],[9.913125,42.126188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.807,56.313],[16.329359,56.167422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.047,67.671],[7.701,66.979]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.353125,56.250375],[11.454937,56.3865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.361,39.307],[1.4685,39.2315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,60],[-21.378,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.063656,46.314531],[-2.0135,46.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.0655,66.252],[-21.006,66.134]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.3,-11],[123.219,-9.415],[124.548,-8.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.731,-35.207],[-49.778,-36.039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.255,42.639],[41.088,42.211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.1195,36.57825],[14.1775,36.45275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.968,39.985],[10.105,40.028]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.499,36.225],[15.4005,36.2535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.636,55.946188],[17.7765,55.8565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.481,59.531],[22.581359,59.451078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.301125,39.56325],[25.375125,39.399687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.066813,54.710938],[15.985289,54.818844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.519008,54.151023],[7.39025,54.168062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.645406,54.935109],[-5.63925,54.808375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.936,55.9195],[16.080562,55.967969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.999,34.5095],[-8.293,34.333]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.9175,62.0295],[18.024,61.8915],[18.117,61.83175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.379,54.449],[5.564,54.726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.2995,53.54075],[5.187,53.5535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.536,21.218],[124.383,20.997]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.572,38.646],[13.67125,38.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.222,60.9305],[19.012375,60.984875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.692875,37.29175],[15.957219,37.721516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.586531,38.515062],[23.321094,38.646359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.29475,64.38125],[-14.212,64.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.158125,61.129375],[17.965125,61.15425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.503625,54.865125],[13.781,54.9735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.667,38.215],[-70.969,38.037]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3505,59.89425],[4.1955,59.6395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.451,53.5],[2.2215,53.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.5315,38.021],[133.019,39.227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.3335,-11.7495],[-170.597,-14.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.812,8.98],[-93.521,6.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.213969,38.212187],[21.565,38.25625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.45125,41.823125],[16.611359,41.91252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.189,52.548],[2.066156,52.592937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.767,54.4585],[-8.98525,54.511]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.996,-54.774],[-80,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.037,27.131],[140,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.404,50.85],[-30.1375,50.1055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.395,49.912],[-5.50625,49.928562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.258,66.438],[-21.159,66.737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.397,44.039],[36.846,44.211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.68975,40.603],[2.423,40.50975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.903,39.868],[23.74575,39.901875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.643016,42.992141],[9.541906,42.961406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.483,44.08],[29.788,44.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.36425,66.2045],[-14.981,66.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.397938,41.180969],[2.53875,41.25775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.247,61.826],[-168,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.54625,43.555],[8.531,43.771375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.8465,55.283],[18.803187,55.4435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.242,29.979],[-15.391,29.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.787,39.983],[3.248,40.4505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.4855,43.07],[4.79375,42.942125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.448,-5.607],[-143.614,-3.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.927813,60.014313],[19.705188,59.993406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.893,33.144],[-77.561,32.171]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.210625,42.20618],[16.332617,42.138547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.933375,41.962781],[15.875563,42.049125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.694,42.2035],[40.255,42.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.207539,37.923922],[24.192812,37.770094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.907,41.014],[17.80275,41.1905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.703383,42.106164],[15.835125,42.287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.501,64.263],[-4.404,64.322]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.943109,54.001172],[11.163,54.028],[11.374234,54.029688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.440438,-7.267563],[70,-9.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.95,39.335],[-10.087,39.063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.594413,16.051921],[-84.702485,16.058561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.811375,46.65775],[-2.906,46.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.126,57.96],[0.154,57.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.027125,50.029375],[-0.254125,50.21425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.196,-52.636],[-75,-53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.65025,56.86],[7.541125,56.63725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.127125,53.823289],[6.975797,53.878438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.622,61.109],[2.4315,61.0545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.074063,36.502156],[26.12975,36.701797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.166,60.315],[27.1435,60.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.177,38.21025],[12.1945,38.31025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.709937,38.299813],[21.8625,38.33975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.27,42.483375],[3.326,41.989]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.535,-40.074],[-88.17,-38.311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.472,60.4055],[2.162,59.794]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.216,49.47325],[-2.042078,49.697828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.056187,21.765438],[-85.874,21.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.023594,49.599656],[-0.136047,49.512703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.743,61.868],[-6.708,62.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.399,41.044125],[8.408,41.159594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[77.601,-22.543],[80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.715,59.758],[18.734,59.759],[19.028195,59.747914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.355092,37.062154],[15.276563,37.155148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-40],[95,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.001,15.001],[-130,11.666]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.671,18.741],[136.61,16.758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.3325,26.57925],[-73.188,26.458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.112,45.402],[-147.484,47.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.619,57.11],[7.65025,56.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.657687,55.1635],[14.746152,55.300796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.034,-6.294],[-80.967,-6.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.348,58.1305],[19.5215,58.2635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.6355,56.407781],[-6.5735,56.153375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.045064,38.408082],[14.911,38.429],[14.736,38.396],[14.598,38.38475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.676,39.86775],[25.782812,39.842437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.8,-27.15],[154.2435,-27.0115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.267156,36.273813],[26.242,36.130625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.155812,56.310563],[12.0565,56.138]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.982,50.608625],[0.874273,50.62893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.515844,50.214344],[-0.434,50.0555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.451,53.5],[2.133,53.5055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.804125,35.962438],[25.97,35.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,40],[-145,40.107],[-150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.858375,43.04875],[6.685,42.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.838,43.396],[4.059,43.51],[4.265,43.366]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.6245,29.3],[-94.8,29.2],[-94.599,29.031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.482,59.197],[10.311891,59.01743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.513219,58.767844],[9.6365,58.829937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.68259,40.563051],[14.5795,40.5335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.3,-39],[146.041,-39.627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.081,35.725],[-9.109,35.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.7715,42.266],[16.916,42.35475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.365,26.618],[-87.264,26.263]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,10],[-115,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.28,53.38725],[-3.530828,53.493547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.74,-34.631],[172.3,-34.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.002,55.194],[-25.249,55.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.7485,36.95025],[23.697344,36.851469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.028,62.431],[-5.614,63.587],[-4.501,64.263]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.694102,42.070801],[11.57675,42.11325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.999,-27.923],[-18.198,-28.298]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.519375,54.60625],[15.4765,54.7095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[99.947,-5.454],[104,-7.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.976,58.642],[18.055,58.542],[18.164813,58.435437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-40],[-166.117,-36.416]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.32925,56.925],[11.448,57.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.192875,38.882375],[10.264625,38.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.32,68.38],[14.137375,68.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.567,49.007],[-2.4475,49.17025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.279,40.298],[-141.545,41.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.3545,60.796],[18.481,60.736]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.041375,39.890875],[22.885,39.684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.041,-39.627],[146.332,-39.68],[147.304,-39.286]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,-19],[13.0875,-23.3505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.856,26.188],[-90.558,25.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-10],[-150,-6.982]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.73325,53.072],[-5.680625,53.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.44075,58.222],[9.6585,58.153]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22,33.3],[22.628,34.242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.832,70.384],[22.506,70.466]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.555438,56.672406],[11.575063,56.531188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.483437,46.081187],[-1.630656,46.091781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.258,53.198875],[5.201,53.304],[5.133,53.382]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.146,32.995],[127.293,32.861]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.9265,37.9065],[-29.9955,37.929]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.69,67.757],[-87.153,68.544],[-87.406,69.461],[-89.995,70.498],[-91.637,71.774],[-89.134,74.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.725062,59.536187],[19.040625,59.444125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.0625,60.309375],[21.8335,60.3485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.269,44.669],[36.399,44.722]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.46,54.209125],[13.505,54.34],[13.660906,54.225875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.541,46.3545],[-1.794,46.465625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.08625,52.512],[6.602,53.031],[6.559,53.214],[6.83,53.302],[7.034406,53.331937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.824,56.1365],[11.875656,56.348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.583004,42.024083],[11.66425,41.9375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.457,69.574],[-8.687,70.758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.1435,63.04],[-20.006,62.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.963938,54.581],[11.098937,54.607438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.551781,35.825375],[23.580719,36.035313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.999,-25.847],[-29.999,-27.993]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.318812,54.628844],[10.178896,54.620967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.890566,58.507941],[11.066281,58.405984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70,30],[-70.492,29.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.465,-36.802],[-169.998,-36.681]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.484375,37.986],[15.586453,38.055121]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.5545,43.327875],[8.679906,43.340594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.06625,56.1615],[17.056938,56.292625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.792,61.493],[21.371938,61.606813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.075,55.507],[4.752,55.517]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.922516,43.046828],[6.077,42.825125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.056625,57.749625],[17.059,57.6375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.193,48.08],[-6.958,48.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.643625,57.86225],[-1.598875,57.713125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9,39.289],[9.968,39.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.992875,54.742188],[18.830938,54.952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.462375,40.718906],[13.3785,40.857062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.128875,57.01575],[8.012078,56.967609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-121.277,-8.748],[-125,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.39825,44.21375],[14.266375,44.164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25,-5.057],[-21.781,-1.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.998,0],[143.198,3.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.558,-22.005],[168.576,-20.823],[168.025,-18.944]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.007375,11.029125],[-18,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.639,34.135],[130.92,33.896],[131.051,33.969],[131.839,33.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.637,35.865],[0.51875,36.50425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.097,-4.96],[-180,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.205,36.217],[-7.783,36.108]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-172.486,-16.912],[-170.682,-14.527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.895,40.2935],[-69.055,40.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.29425,55.553],[16.988188,55.52175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.687,37.969],[-13.94525,37.9905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.999,13.766],[70,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.77,63.275],[-49.021,60.448],[-44.201,58.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.626,50.969],[157.594,50.157]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.926625,51.317281],[-5.877,50.587],[-5.856625,50.363937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.939375,36.260625],[-4.5765,36.101375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.242,36.130625],[26.082,36.146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.923813,36.666719],[24.969711,36.537469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.388,56.102],[-2.822,56.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.445,54.758],[-9.575,54.791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.184,59.674],[21.737,59.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.322,31.471],[-77.037,30.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.003969,54.116563],[5.06325,54.242375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.725,70.31],[18.742,70.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.5145,5.516],[-14.49,8.491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,8.503],[-140,4.836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.80218,61.269719],[4.706,61.233],[4.42875,61.177063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.537016,37.42],[12.420078,37.448047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.833031,40.499813],[-68.895,40.2935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.757,44.094],[-68.359,42.156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.784,27.54],[-85.777,27.713]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.761,-18.166],[174.246,-15.2785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.799563,56.712313],[18.851,56.53925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.627,63.169],[20.565,63.0435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.369875,40.806375],[3.24,40.849]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.0945,28.55275],[-16.2315,28.4795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.777,65.68275],[22.52225,65.444]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,24.634],[120,25.337]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.529875,57.969375],[21.515813,57.624594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.503,49.4345],[-3.211875,49.594375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.9255,36.7475],[-69.997,36.487]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.055,27.43],[-85.824,26.564]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.729125,43.4265],[-9.28,43.155],[-9.168,42.584],[-9.110813,42.446813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.074063,36.502156],[25.814062,36.692281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.313,22.905],[-86.578,22.223]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.267687,52.380437],[4.129,52.299],[3.992625,52.17175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.092,49.388],[140.613,46.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,39.609],[-130.001,37.491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.293,43.399],[-9.4535,43.4145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.09,43.692],[-3.118859,43.526453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.153625,54.709937],[15.29175,54.825688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128,26],[123.55125,25.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.956172,36.944266],[13.782219,36.822125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.453,58.8155],[-3.359125,58.703875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.721,42.552],[-160.001,42.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.8975,55.784],[3.925,55.622]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.813,42.433],[5.819,42.257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.244656,42.836906],[6.20175,42.931625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.4545,51.7085],[1.46925,51.608875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.68,34.898],[17.84575,35.60475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.127,69.886],[43.0975,69.6785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.574125,11.637812],[-61.791,11.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-30],[-140,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.382188,57.299813],[-1.357438,57.459688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.915062,56.724437],[7.06025,56.556875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.38,65.702],[36.378,66.123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.949,43.941],[-8.221,43.8965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.835,48.851],[-3.164125,48.943938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.129844,45.311562],[-4.404875,45.23625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.98,35.742],[-12.595,35.706]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.6745,8.6815],[70,8.5915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.37825,53.71425],[1.452,53.817]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.383469,37.928031],[19.7915,38.6235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.11225,65.661],[-24.328,65.7135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.757562,37.463438],[25.662875,37.394937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.5025,53.88275],[-3.622875,53.805125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.691,42.4565],[10.8005,42.461],[10.919633,42.400891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,10],[-138.435,8.466]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-50],[-79.999,-51.107]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.68875,39.76825],[25.763312,39.652125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.6,36.2],[-0.511,36.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.906547,43.517922],[15.675179,43.535677]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.8835,57.739656],[22.915,57.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.1875,36.73675],[26.999023,36.667992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.361937,52.285625],[-6.279813,52.145188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.99,-44.925],[-56.882,-45.737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.4275,56.9035],[2.789,56.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.35,20.4],[114.1135,21.70575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.108125,38.30125],[22.265375,38.280375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.2,35.2],[34.0455,35.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.573,64.761],[-13.436,64.782]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.591789,59.890969],[25.002813,59.812562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2275,37.059],[14.16175,36.8465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.656,54.597],[14.6365,54.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.576,38.814],[14.1415,39.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.837,36.13],[15.708,36.1845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.22232,61.4235],[21.156,61.2965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.926,36.251],[15.79,36.308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.426,8.665],[-32.762,7.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.924,55.192],[20.038,55.518]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.128,42.440875],[27.67725,42.481]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.469,-14.183],[-173.659,-12.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.799375,40.86875],[2.987,40.9215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.162449,47.89148],[-5.28275,47.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.186016,54.361187],[11.341328,54.389234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.326,60.5475],[0.727,60.828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.828469,44.979125],[14.859562,44.733937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.107648,51.392562],[3.25225,51.48425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.159,48.819],[-7.0705,49.00275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.437,19.216],[141.469,18.039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.1305,42.5335],[3.27,42.483375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135,5.057],[137.388,7.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.869625,49.220375],[-5.837125,49.055563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.54,-34.385],[151.5,-34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.837,38.602],[-74.531,38.308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.113,55.886],[-6.18,56.069],[-5.7985,56.2805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.205,55.113],[18.360813,55.012187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.356,39.114],[20.455937,38.751469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.273031,36.518203],[24.201375,36.731938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.7655,29.5235],[-94,29.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.17375,39.212375],[13.970688,39.329062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,0],[-145.372,4.683]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.638312,54.561875],[7.63225,54.71875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.843,51.497],[-150.308,51.268]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.168,57.916],[4.9415,57.9345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0755,40.187],[8.095156,39.792156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.179,41.61225],[2.863,41.456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.650875,36.742375],[13.459,36.77175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.80275,41.1905],[18.024,41.212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.5805,36.4615],[-1.3815,36.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.585,36.569],[20.5235,36.442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.079,43.752],[8.02875,43.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.59,40.52825],[12.910375,40.288187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.811375,46.65775],[-2.733,46.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-121.229,-1.247],[-120,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.82975,46.003875],[-5.592,45.619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.43825,36.750375],[26.548821,36.637965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.8765,40.8155],[25.465375,40.399875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.229984,45.702668],[13.2095,45.552375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.220406,53.539359],[-3.9805,53.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.553,68.918],[14.334,68.527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.969,46.591],[153.688,46.196]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.063,42.368],[133.814,42.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.161,41.772],[-70.339,42.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.35825,41.65725],[8.432875,41.806375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.031,35.105],[-67.613,34.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.3725,66.05775],[-18.392562,66.210797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.142937,41.267531],[2.297246,41.344242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.682,12.668],[43.605,12.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.83725,47.9095],[-4.613,47.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.021609,42.014109],[-8.971,41.90175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,11.666],[-130,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.334,43.036],[14.522313,43.238125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.24,58.7945],[21.05975,58.5975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.478,34.941],[139.598,34.901]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.442625,37.017625],[23.495,37.1155],[23.591125,37.244969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.284,33.179],[-17.85,32.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.2105,31.921625],[33.142,32.541]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.015,51.866],[2.375125,52.03625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.022,40.379],[27.268,40.596]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.68575,42.14675],[16.7715,42.266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.56725,60.87025],[-6.155,60.667]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.295,36.354],[21.777297,36.300844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.316562,55.509375],[6.205,55.203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.956125,57.266875],[19.086,57.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.181,59.129],[-0.331,59.298]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.175375,52.33825],[2.271,52.303]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.442625,37.017625],[23.274688,36.661625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.447,58.239],[-2.517,58.516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.723492,36.675875],[26.72025,36.530187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.639,43.86],[-3.91,43.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.91125,38.024687],[-71.649,38.239]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.74625,52.283687],[2.715625,52.0255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-113.663,16.489],[-117.107,17.249]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.292922,36.264656],[27.123125,36.415875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.906,63.252],[20.493625,63.190883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.139,-39.753],[166.669,-38.794]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.316031,42.835],[10.439473,42.905105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.86375,27.126],[-73.869,28.462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.8,44.1],[-5.751,44.5445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.1425,49.1885],[-4.13275,49.067375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.592,70.861],[-180,70]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.3245,56.4755],[-6.349,56.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.551,70.164],[-165.746,70.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.99825,50.64475],[-5.98425,50.81275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.633,55.613],[6.4465,55.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.332,57.855],[19.498,58.0105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.664,57.00225],[-1.881813,56.794063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,12.755],[-149.999,9.999]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.711,44.914],[-2.894,45.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113,-23.5],[112.8035,-25.018]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.869531,50.101469],[-3.9985,50.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.752359,57.575352],[-1.746188,57.418188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.001,13.62],[-50.001,16.322]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.92475,39.760375],[13.977,39.937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.778,54.551],[-4.636,54.5125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.040375,36.44775],[15.213625,36.4225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.76225,35.96925],[26.682,35.712]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.10475,38.886125],[26.071984,38.668828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.2425,36.331],[-3.36875,36.371844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.338,-8.371],[-152.613,-7.439]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.028,52.978],[-5.909016,52.970562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.52775,42.2125],[41.1,41.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.275625,57.603875],[8.3755,57.552844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.106,28.371],[-14.155,28.718]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.001,33.408],[-18.195,33.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.780188,57.689125],[16.70725,57.53725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.352,42.5495],[5.1835,42.4935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.341,59.778],[5.3415,59.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.587875,54.278063],[7.454469,54.302594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.492,-52.704],[-80,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.001,27.706],[-40,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.214375,53.652],[1.549,53.694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.579297,36.488062],[26.616437,36.258125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.969,37.264],[5.084,37.185],[4.916,37.183]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.236,38.599],[13.352219,38.52725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.741,55.561],[17.9375,55.80975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-117.411,27.554],[-120,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.584,6.26],[114.373,6.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.965,-32.137],[0,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.3965,54.7765],[-5.280984,54.713938]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-104.946,74.319],[-105.437,74.62],[-105.248,75.212],[-104.805,75.75],[-107.584,77.878]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.647563,36.102063],[-3.264,36.18875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.5995,38.1295],[22.4925,38.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.041125,60.252875],[19.08175,60.105656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.510156,71.015938],[23.764,70.787],[23.625859,70.679859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.918,-37.307],[34.163,-36.158]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.572563,41.142031],[9.708391,41.070266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.689344,41.69],[8.542,41.8305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.252,-34.632],[163.504,-33.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.16275,38.45525],[0.2715,38.46075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.207539,37.923922],[24.187906,38.037906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.655,4.141],[124.666,4.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-1.577],[-140.717,-0.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.707937,57.976375],[11.645,57.7505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.182,55.3605],[-6.2935,55.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.94,54.027],[2.146,53.878]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-10],[-159.999,-15.929]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.76175,43.48225],[-3.06275,43.382937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.81,45.004],[-8.674,45.1445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.168,37.168875],[24.236023,37.288781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.111,-10.043],[-100,-10.344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.599719,36.778969],[26.472062,36.846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.043641,36.978828],[11.88475,37.031375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.749,31.44],[-74.645,30.264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.767,48.968],[-6.771,48.829]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.031,58.046],[5.185,58.0405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.27075,17.0405],[-62.60375,17.271]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.978891,48.984687],[-3.164125,48.943938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.522625,42.642375],[16.713023,42.646078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.682,7.318],[102.606,7.812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-18],[51,-15],[50.0055,-9.99425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.875125,37.101],[-6.772937,36.94575],[-6.641687,36.75725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.394,-28.425],[107.357,-30.662]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.48175,51.108812],[-5.359875,51.328875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.278,53.884],[-155.059,53.791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.189,19.819],[-66.934,19.531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.048672,55.312602],[10.971312,55.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,-35.386],[-130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.743063,56.151656],[20.59675,56.417125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.908625,42.902125],[15.935,42.771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.90425,52.560187],[2.066156,52.592937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.6925,56.117125],[7.8805,55.671875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.682,35.712],[26.94375,35.4515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.031062,59.847594],[4.889375,59.896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.048098,37.050152],[24.919254,37.184895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.463,-2.574],[-121.229,-1.247]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.990125,49.567187],[-5.179,49.6595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114,-29],[114.44,-28.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.675188,58.363],[-1.693,58.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.593125,57.25925],[17.5275,57.1665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.796547,37.32475],[24.908875,37.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.231625,54.403687],[0.542,53.823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.943531,50.01925],[-2.066,49.9695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.948,48.857],[-4.960125,48.668156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.186,14.27],[-68.537,14.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.774,52.7975],[4.1335,52.85625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.255,29.16],[-89.009,28.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.37,12.057],[110.262,11.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,4.431],[-30,2.733]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.0055,-34.501],[22,-35],[18,-35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.621,60.113],[3.79775,60.103125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.954625,50.379375],[-1.815812,50.458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.272,73.743],[76.227,73.718],[78.424,73.23],[78.863,72.585],[80.735,72.272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.094938,57.35625],[19.126031,57.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.089062,37.707969],[24.192812,37.770094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.898,17.485],[-167.458,17.593]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.859375,48.492125],[-4.77375,48.609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.265625,37.78325],[12.375688,37.894719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.696,56.016],[15.819687,55.97925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.0345,38.1545],[25.08425,38.042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.46,54.334],[11.308344,54.149055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.395578,60.034437],[20.23325,59.96575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.4965,53.913],[-0.057,54.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9295,41.66625],[4.366,41.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-30],[-5,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.569039,45.08082],[13.528094,45.267156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.27,16.405],[-162.839,16.706]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.01775,54.861375],[6.995,55.156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.087625,42.570625],[10.173445,42.647398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85,-35.386],[-80,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.68259,40.563051],[14.7645,40.375],[14.9145,39.9265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.82225,35.752],[34.682,35.671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105,-35.386],[-100.1,-39.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.797687,40.844813],[12.948,40.688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.662,57.993],[5.641375,58.169719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.212156,57.092328],[12.136375,56.98425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.879,13.884],[145.527,15.282],[145.719,15.208]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.488188,42.670313],[15.40325,42.551813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.531,43.771375],[8.41625,43.609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.531,-5.587],[-10,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.7485,69.081125],[16.648562,68.89125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-40],[-95,-40.107],[-99.98125,-39.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.236,34.092],[-27.091,33.163]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.745375,41.288875],[12.844188,41.195719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.66275,57.729375],[9.012906,57.797512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.535,-40.074],[-90,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.192445,36.411152],[22.33625,36.397937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.523,28.417],[48.718,28.606]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.0775,19.386],[-66.802,19.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.121,47.296],[-41.659,48.508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.304,2.175],[-107.018,1.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.049043,37.331059],[25.056,37.212477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.279,58.6285],[-5.392,58.488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.319,38.6405],[-10.162313,38.649938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.957,41.072],[17.80275,41.1905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.731,46.053],[30.9,46.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.98375,-15.20575],[-159.999,-15.929]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.455406,57.531531],[9.045,57.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.455625,54.064375],[8.236625,54.069906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.780344,55.927063],[14.931625,56.01225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.7815,53.88925],[6.846,54.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.70525,39.06875],[14.817625,38.910875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.315,58.938],[19.37,58.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.821,19.834],[-67.189,19.819]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.981125,40.983875],[18.974,40.644],[18.996125,40.46475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.272,-43.056],[55.111,-45.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.304063,56.600563],[20.243063,56.447688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.68925,59.339125],[4.676625,59.22]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.892188,41.504453],[9.882437,41.374219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[112.625,-21.598],[113.469,-21.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.49,56.634],[1.744,56.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.001,23.197],[-50.001,27.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.5275,12.482],[43.645,11.8085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.167,54.643],[-165.066,54.468]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.029234,52.6275],[-6.248781,52.253125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.0135,40.427],[3.248,40.4505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.79875,40.49625],[22.9075,40.6105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.328,39.293],[19.4285,39.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.705,50.864],[-8.448,50.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.808375,38.9915],[1.097,38.988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.01,38.6185],[9.9015,38.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.773,9.018],[-90.893,9.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.257,48.736],[-6.501125,48.771313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.466039,55.658266],[-1.196,55.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.776875,49.154],[-2.985313,49.198062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.472578,40.184711],[24.706,40.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.372,4.683],[-149.999,9.999]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.736,31.911],[-71.495,32.083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.895,54.797],[18.992875,54.742188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.274,65.464],[-23.383,65.374]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.9895,64.50825],[21.801,64.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.9295,38.6725],[15.078305,38.55825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.755,62.988],[7.642281,63.1215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.47375,48.13525],[-4.607,48.133],[-4.740406,48.163031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.173125,55.031188],[-5.116875,55.138109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.238844,36.939406],[26.43,36.95325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.649736,57.447521],[11.77825,57.569]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.3755,55.04625],[8.26275,55.171875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.352219,38.52725],[13.544812,38.512313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.750969,43.460469],[9.80225,43.353813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.881906,56.361031],[6.905,56.534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.250344,58.687391],[5.048969,58.610875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.346578,37.582609],[15.255,37.490625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.488766,37.681125],[25.352914,37.560074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.97125,40.524],[23.702,40.666],[24.091,40.569]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.4,-14.5],[127,-13.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.6795,43.3735],[9.620625,43.477562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.445383,43.100578],[9.551836,43.171375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.3,35.9],[144.493,39.791],[145.309,40.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.831875,37.66025],[15.52625,37.5765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.431375,18.567875],[-75.068625,18.51125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,30],[145.073,32.487]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.2985,41.165],[13.179719,41.137687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.2005,42.718],[6.077,42.825125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.823125,51.924625],[-6.6915,51.6215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.715625,52.0255],[2.628,51.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.276,42.237],[5.436687,42.380688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.821,38.76],[-70.667,38.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.83625,53.406227],[4.626891,53.269203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.311,28.404],[-32.827,30.053]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.16825,68.38025],[16.6265,68.4315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.3525,38.518],[10.548,38.391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.817594,37.051125],[25.611,36.924]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-40],[-147.493,-40.053]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.416,27.701],[-92.094,26.292]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.395,36.748],[-12.494,36.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.893,54.418],[10.7055,54.5395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.422781,38.184656],[13.301738,38.272168]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.191125,42.334812],[15.935125,42.460375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.644,-40.035],[40,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.43925,59.948],[5.343,60.0215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.00425,49.214875],[-4.022187,49.350313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.724,35.946],[-3.4665,35.9315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.3335,38.78825],[26.10475,38.886125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.001,-48.29],[70,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-121.888,18.212],[-125,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.363,22.00975],[-86.056187,21.765438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.272176,36.528695],[23.367672,36.441352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.460875,55.291625],[19.636,55.509],[19.727406,55.614375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.7015,35.80725],[23.21,35.3955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.914687,43.390719],[9.80225,43.353813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.554,57.3935],[19.49625,57.26325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.268,44.189],[-7.911,44.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.6535,55.6385],[18.573,55.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.756,8.781],[68.896,8.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.925,36.483375],[22.064375,36.371125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-7.934],[-28.772,-8.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.241,-43.629],[-86.535,-40.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.782141,58.092062],[10.709203,58.213766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.87025,39.95175],[-10.087,39.063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9795,38.02],[10.3385,37.811]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.2995,66.482],[-15.273,66.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.291688,39.819742],[8.356,39.668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.448,18.563],[-158.211,21.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.4395,19.8495],[-66.6445,19.8355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.4135,37.912625],[26.181758,38.338969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.248,54.623],[12.156445,54.451172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.856094,39.632188],[14.8635,39.52825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.66,51.35],[-7.54375,51.34625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.725687,42.979563],[7.8415,42.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.035234,49.205703],[-5.847875,48.8505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.122,54.4145],[8.125719,54.198719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.045574,42.939012],[5.193,42.817]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.338,37.6145],[21.166,37.689]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,25.277],[-30,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.320172,56.856264],[12.239437,56.945688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.470625,57.233125],[7.345375,56.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.155563,58.563688],[20.960563,58.475219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.216188,54.630812],[7.282,54.397]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.978,30.226],[-74.176,30.073]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.763,55.352],[19.634,55.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.319562,45.058781],[13.219891,45.249109]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[106.888,73.245],[108.617,73.609],[110.785,74.398],[111.695,74.534],[113.894,75.247]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.835719,53.408313],[-3.831844,53.561281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.898,70.65],[18.742,70.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.24875,51.86125],[-6.391,51.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.771531,37.319719],[25.798031,37.177859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.485,41.662],[5.062375,41.7515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[148.342,41.327],[148.972,40.823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.785,52.293],[-31.404,50.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.818,28.43],[-78.932,28.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.9535,61.099],[20.778625,61.193875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,0],[-10,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.505,13.767],[-30,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.300375,39.66625],[19.57175,39.43075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.567266,35.916988],[14.820594,36.086266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.018,57.11475],[7.260312,57.130813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.29,42.797],[-10.469,42.281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.376,-34.639],[155.201,-36.699]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.6,12],[-87.996,10.0415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.581,34.165],[-71.023,32.419]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.9375,55.80975],[18.058125,55.827438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.638,57.826],[17.608,57.6625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.673,-7.85],[116.694,-7.292]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.66125,38.470312],[24.699875,38.2665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.585,59.668],[26.5465,59.56225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.3035,28.42],[-91.5485,28.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.935,42.771],[15.99325,42.63725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.808,55.81475],[16.71,55.754],[16.613,55.70225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.150078,38.904078],[8.007188,38.90075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.059,27.349],[-95.439,27.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.819,24.432],[-159.256,21.827]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.133,-34.533],[118.001,-35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.215,36.603],[11.379,35.923]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.60775,43.364375],[7.74975,43.37025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43,-26],[48.1,-26.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,10],[-137.76,10.016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.998,-36.324],[-92.898,-33.151]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.676,23.431],[-60.001,22.772]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.263,63.766],[-14.025,63.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.887352,43.367371],[14.992188,43.27725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.204,38.783],[6.717,38.243125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.293,34.333],[-8.397,34.267]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.6055,69.3495],[16.32375,69.22475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.057,27.015],[-74.034,26.408]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.804,34.036],[-70.587,34.269]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.893,9.04],[-93.209,10.754]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.439473,42.905105],[10.444109,42.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.2455,-12.331],[-4.26,-10.031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.020375,36.906375],[24.074703,37.012719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.613,34.743],[-67.957,34.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.388687,59.108156],[5.292625,59.019719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.60825,53.644062],[5.385392,53.617587]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.793,14.963],[-71.738,14.512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.2925,38.478],[26.181758,38.338969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.31343,36.005234],[27.15275,36.100203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.796,43.087],[32.46,42.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.0135,46.035],[-2.284,46.108]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.0925,61.4205],[20.253,61.409]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.608062,57.901125],[19.550375,57.671125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,20],[-117.107,17.249]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.4305,69.715],[-55.17,70.507],[-54.73,70.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.793625,54.122],[6.0065,54.07925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.144164,50.056672],[-3.8155,49.99325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.2945,54.8725],[-5.283672,55.005711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.479375,54.991062],[10.601219,54.874613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.602,20.157],[-158.211,21.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.12175,41.51675],[2.863,41.456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.72682,48.568773],[-5.825219,48.522094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.3835,43.6835],[9.382031,43.517719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.6665,65.2155],[22.428,65.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.231,36.563],[-4.103,36.46825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.279,51.287],[-17.133,51.803]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.922625,56.101437],[11.824,56.1365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.212156,57.092328],[12.022781,57.076859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.956,25.792],[-79.815,25.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.6,-5.2],[152.05,-3.8],[147,-4.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.5485,43.6635],[-8.848,43.58175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.553,32.7965],[-30.65,30.707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.329,34.065],[-13.903,32.416]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.505516,61.508156],[17.965125,61.15425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.415,48.906],[-6.627625,48.955375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.723,34.4925],[27.095,34.502]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.17025,39.9145],[0.069344,39.92525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.31,40.6845],[18.448,40.6315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.3,-1.5],[104.378,0.553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.3515,53.68225],[-10.2975,53.4695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.490258,53.60458],[5.385392,53.617587]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.605,48.556],[-130.001,48.559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.02025,49.165],[-5.21725,48.96675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.342,54.284625],[11.341328,54.389234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.267576,37.466994],[24.367508,37.438992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.089813,36.655375],[21.004,36.43175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.000625,55.193375],[17.181625,55.249875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.745,65.765],[-24.034969,65.871219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.839023,53.641422],[-5.977055,53.391461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.3155,38.0295],[10.3385,37.811]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,8.88],[137.388,7.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.812,8.98],[-90.893,9.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.144164,50.056672],[-4.317813,50.068906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.339875,40.481375],[18.522156,40.175484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.255,27.971],[49.051,28.2135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.972328,50.363828],[-0.750258,50.333555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.984023,57.868031],[7.0845,57.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.878,55.441],[3.898,55.525],[3.925,55.622]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.083047,39.066297],[8.007188,38.90075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.514125,39.374625],[24.4065,39.4365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.686,27.185],[-69.416,27.233]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.8755,-41.8965],[-63.9,-43.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.227,29.083],[-89.9,28.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.930719,57.919812],[7.651,57.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.4,18.6],[-93.538,20.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.843,1.504],[109.8,3.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.25,7.251],[82.20275,7.06625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.012875,54.0385],[0.486,54.257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.01225,38.7795],[8.18575,38.70825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.281,48.041],[158.071,47.013]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137,-9],[142.558,-9.883],[142.67,-10.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.561,10.012],[-165.435,10.034]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.019,-10.022],[-22.806,-12.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.859875,55.520125],[-5.019813,55.372281]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-92.686,74.342],[-92.3,74.153]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.131,62.7305],[6.9735,62.7375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.6555,64.874125],[21.73975,64.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.809,40.765],[5.97475,40.308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.828187,58.286062],[20.109875,58.472375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.138,56.045625],[15.413297,56.01575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.436234,50.586422],[-2.368625,50.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.361,40.1335],[7.587375,39.788063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.895,40.807],[28.805,40.872]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.901,49.39275],[-6.0245,49.4815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.708125,53.435375],[4.058,53.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.5725,43.9135],[13.548625,44.043125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.915,57.875],[23.174,58.228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.453,-37.736],[50.001,-37.736]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.38975,58.9105],[23.181,58.8705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.652,42.17],[41.223,42.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.9,34.3],[-124.342,35.594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.401,-26.857],[-45.73,-26.4355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.8875,38.58575],[24.921062,38.454375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,50],[-46.592,52.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.4195,37.4735],[6.85,37.42575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.325,66.852],[12.92525,66.2895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.904,54.006],[150.638,58.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.462,25.708],[-90.558,25.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.211383,58.103047],[11.37275,58.05125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40,-30],[48.1,-26.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.109,45.405],[-31.783,48.397]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.875063,54.010312],[-4.7125,53.945937]]}},{"type":"Feature","properties":{"pass":"dover"},"geometry":{"type":"LineString","coordinates":[[1.633094,51.153219],[1.584432,50.986559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.6385,46.0665],[-4.839,46.673]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.182,57.626],[5.227,57.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.2655,-17.0765],[168.32125,-17.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.231,44.084],[13.341,44.029]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.7785,39.40925],[-74.078,39.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.702,3.805],[119.641,2.983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.848898,38.534312],[15.045064,38.408082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.949,53.373],[0.79375,53.396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.744125,54.05025],[4.573,53.893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.086,30.175],[-73.861,30.269]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.36875,36.371844],[-3.264,36.18875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.933,41.615],[16.2725,41.525875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,30],[150,38.763]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.374234,54.029688],[11.4555,54.1435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.846,52.94],[3.20625,53.0425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.703,-18.3575],[178.541,-18.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.947375,43.03275],[4.33075,42.59075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.712,28.524],[-73.869,28.462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.155938,58.25475],[9.32207,58.511648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.555,-42.861],[-140,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.9655,38.84575],[9.22775,38.90675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.185484,36.698141],[14.27325,36.578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.565,37.376],[11.298938,37.419125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,0],[-163.85,3.898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.676,58.903],[21.64625,58.70025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,40.531],[-30.001,41.791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.4,23.5],[-111.5,27.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.675625,49.74425],[-4.5225,49.75725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.249,37.229],[27.098125,37.256125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.997,26.028],[51.6,26.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.113609,51.407172],[-2.868531,51.478]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.047,47.415],[-7.907,47.484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.002,43.636],[-150.001,42.412]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.411875,57.094813],[19.49625,57.26325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.307,59.735],[25.80725,59.87575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.16175,36.8465],[14.2815,36.78625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.54825,44.178188],[14.571469,44.039531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.9585,51.6985],[-5.835453,51.697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.106406,48.123625],[-5.010438,48.2005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-10],[90,-12.163]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.818,30.915],[131.543,30.214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.557,16.147],[-71.138,16.439]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.651,47.251],[154.356,47.132]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.74775,60.29725],[28.767,60.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.369687,36.318625],[14.456187,36.115125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[84.777,11.17],[85.695,10.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.793,58.155],[20.895,58.016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.875133,58.064367],[18.96175,58.00575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.548,57.70425],[-6.16625,57.983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.503812,57.258313],[16.663625,57.26975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.910328,42.985254],[9.869148,42.83407]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,-50],[-51.887,-52.201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.6775,63.976],[9.61,63.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.892477,50.135],[-5.881875,50.019656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.435,8.466],[-137.308,7.359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.50575,41.53925],[9.623188,41.456219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,19.799],[120,22.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.648,41.749],[5.011625,42.028437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.441813,52.015906],[3.19,51.91775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.683,36.538],[-69.692,36.352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.474,41.073],[-71.689,40.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.002,-35.616],[160.002,-35.757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.056,36.4805],[-9.188,36.4725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.870285,40.901733],[17.895,40.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.4945,37.2965],[15.436781,37.155094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.006891,58.895237],[17.9465,58.795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.17725,39.645],[14.298547,39.434359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.74975,53.0515],[1.334594,53.020719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.122,69.702],[-99.5,70.131],[-99.186,70.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.282,38.70625],[25.40775,38.70975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.158,20.0185],[-132.075,22.199]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.7595,58.875],[17.775813,58.775969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.756689,38.228457],[12.878,38.032],[12.892,38.214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.020625,53.732812],[-5.839023,53.641422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.576,47.505],[-5.556,47.816]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.562156,44.333625],[14.675031,44.151812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.669,-12.7935],[104.601,-15.066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,62.1],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.033859,37.086859],[27.151,37.00375],[27.219625,36.92575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.846,52.546],[-9.624,52.588]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.092906,37.788031],[16.419,37.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.4365,55.290625],[17.5305,55.3685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.788625,59.436875],[22.581359,59.451078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.646,50.062],[155.324,49.721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.292844,41.374625],[12.106,41.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-118.051,-22.066],[-114.39,-20.061]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.355,36.747],[20.5235,36.442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.5315,38.021],[135.456,42.238]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.128,42.647],[5.193,42.817]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.618437,39.248312],[24.514125,39.374625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.304,-32.485],[-46.313,-33.952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.229,8.49],[-13.817,7.846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.23225,55.829],[11.0755,55.905937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.136047,49.512703],[-0.125375,49.736375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.470641,59.506891],[23.276992,59.333898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.417075,18.877696],[-77.311273,18.861045],[-77.167051,18.838651],[-77.038323,18.81855],[-76.929971,18.801602]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.509438,43.597],[9.661094,43.761875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.634,34.448],[33.7345,34.424]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.038,56.485],[-15.775,57.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.007125,58.895625],[18.007269,58.895432]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.314,37.521],[-35.96,36.271]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.005828,52.502695],[2.079,52.425],[2.175375,52.33825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.919,46.2],[-1.630656,46.091781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.001,13.894],[-120,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.708,60.047],[5.700063,59.883688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.242,35.1425],[33,35.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.188937,38.332734],[15.374844,38.326188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.7415,55.4375],[3.567,55.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.70325,55.688766],[10.858875,55.359875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.943,61.875],[-81.368,62.219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.164,53.38],[-36.736,53.808]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.443,-37.633],[152.376,-34.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.567,66.232],[-20.639,66.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.223375,52.521],[4.218,52.697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.463375,50.21625],[-4.593281,50.174094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.691,42.4565],[10.509,42.565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.021656,36.719547],[-7.301,36.759]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.016,39.588],[17.969,39.35225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.003969,54.116563],[4.911219,54.004937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.7555,57.38175],[6.89275,57.126625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.956,25.792],[-80.326,25.039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.11225,65.661],[-24.229,65.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85,-25.277],[90,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.802,29.691],[-17.713,29.434]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.516,42.782],[-147.981,42.261]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.867,59.754],[19.930844,59.65625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.8225,46.443],[-3.25975,46.68625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.3,-2.907],[5.578,-3.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.692164,42.73807],[9.580625,42.8435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.155,50.236],[-2.924734,50.048328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.019813,55.372281],[-5.021375,55.5605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.46,54.334],[11.620437,54.27225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.397609,57.386562],[20.148688,57.831875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.422875,56.409813],[20.5935,56.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.731156,43.03925],[5.7585,42.87625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.05,44.9095],[12.993453,45.124258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.130125,37.831125],[8.397625,37.981]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.195594,37.575281],[12.1185,37.391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.182156,58.209859],[6.083617,58.280844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.701,50.461875],[0.5575,50.519937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.003969,54.116563],[5.1775,54.1035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.98375,-15.20575],[-165.085,-15.086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.067,59.416],[3.48175,59.2585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-10],[159.429,-10.1435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.201,37.417],[-140.002,35.697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.423719,50.409594],[-1.583625,50.356625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.093,38.9],[6.487,38.892]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.1755,55.115625],[14.9075,55.2505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.918109,36.127172],[24.803,36.111],[24.794937,36.143187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.322,29.443],[-15.53325,29.310313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.522234,43.606953],[15.555875,43.504]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.4035,29.139],[-93.7655,29.5235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.266563,60.510062],[4.93,60.539312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.05525,37.15075],[3.7635,37.2585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.978375,38.415469],[9.122,38.384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,62.1],[-180,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.662937,35.789938],[25.513063,35.925687]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[97.396,76.225],[97.047,76.626],[96.927,77.4865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.654125,54.696687],[15.4765,54.7095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.959641,36.079094],[22.4465,36.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85,-5.057],[80,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.302,43.91275],[9.193812,43.917844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.2445,58.5955],[-1.24675,58.373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.8,60.245],[-3.787,59.781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.283,37.299],[6.259,37.344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.0165,55.547187],[7.01575,55.429375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.266375,44.164],[14.179625,44.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.630594,38.774281],[0.9125,38.4885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.318,36.386],[34.0385,36.08175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-50],[-110,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.61,-35.006],[-80,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.336,40.155],[10.2125,39.9575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.925,36.483375],[21.765,36.649953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.291312,50.692563],[-0.432156,50.575094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.069,8.107],[-106.117,3.931]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.416,28.907],[-93.136,27.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.9,31.3],[122.18,33.043]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.846688,38.314312],[24.990063,38.303562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.96,23.137],[135.644,21.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.062,57.1075],[-0.82925,57.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.4385,40.012],[-137.901,41.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.184,63.31175],[19.34,63.243]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.211375,54.429625],[-4.875063,54.010312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.9945,40.0215],[23.041375,39.890875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,19.557],[-130.407,19.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.019,38.552],[16.685,38.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.860348,49.971363],[-3.10875,49.89325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.28925,42.629625],[14.334,43.036]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.585977,55.589227],[14.429375,55.577687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.113,35.912],[-2.905781,35.438344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.1395,38.17925],[26.043,38.1465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.64,12.842],[-69.98425,12.99075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.26475,37.347],[19.92,37.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.83,33.92],[-15.859,33.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.774375,58.54125],[-2.493,58.7145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.445383,43.100578],[9.556641,43.06575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.341563,37.663094],[12.420078,37.448047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.758258,41.651336],[9.892188,41.504453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.2685,-53.923],[-63.185,-53.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.326,27.136],[-79.333,26.737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.7815,53.88925],[6.49425,53.83175]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[119.013,75.631],[124.357,74.579],[130.8495,74.0635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.5,-46.5],[-75.564,-51.944]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.885313,69.991437],[17,70]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.133,-5.922],[-105,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.193,42.817],[5.352,42.5495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9295,41.66625],[5.011625,42.028437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.775,64.007],[-15,64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.845,50.469813],[0.701,50.461875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.8545,56.655],[12.022469,56.730469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.731,-0.058],[119.5,1.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.114,23.301],[-64.647,24.926]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.592562,39.30025],[19.699125,39.180375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.608,18.903],[119.637,19.166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.406,8.438],[-29.829,4.861]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.11,14.333],[-51.665,15.516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.518,35.064],[-9.822,33.488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94.681,8.81],[95.246,10.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.394,41.263],[19.0095,41.9535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.344,50.786],[0.069625,50.753687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.208,-55.16],[-73.14,-55.241]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.471625,59.77],[26.473,59.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.891133,18.951694],[-77.731721,18.92657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.290563,55.696742],[16.536,55.581031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.951,40.934],[-9.783,41.703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.67,50.346],[-12.478,50.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.9785,39.00525],[-30,38.862]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.409562,43.420125],[-8.520125,43.51675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.814,4.858],[74.823,4.468]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.586125,38.55925],[15.451637,38.456365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-10],[-132.678,-10.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.4,9.1],[167.48325,19.464875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.0245,49.4815],[-5.986687,49.76425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.626563,48.837094],[-2.021,48.888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.796375,58.65925],[9.762609,58.781531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.908,54.456],[-165.167,54.643]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.356938,55.977063],[16.434,56.0695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.950375,37.42875],[12.1185,37.391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.165,22.294],[114.109,22.286],[114.253,21.772]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.862,38.97],[19.984,38.853],[20.355625,38.634625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.781031,42.435031],[17.5925,42.138]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.161,52.046],[1.185,52.012],[1.314727,51.915547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.264,27.064],[-91.9205,26.21525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.089813,36.655375],[20.899,36.704]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.355,43.299],[28.056,43.193],[27.962,42.954]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.84,44.289],[-7.268,44.189]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[175.2,-36.647],[176.9,-36.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.451,-3.435],[126.552,-2.604]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.32207,58.511648],[9.429016,58.589813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.981,34.786],[34.681,34.719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.757562,37.463438],[25.643836,37.532453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.627,66.291],[-18.91425,66.23075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.9805,40.07925],[-124.4215,38.86525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.969711,36.537469],[25.041844,36.399219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.014375,39.588313],[25.214,39.6155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.073,57.289],[5.227,57.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.853,-26.052],[-41.251,-26.294]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.74,-9.72],[0,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.403438,65.552219],[24.5115,65.64325],[24.575,65.531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.075,60.371],[-4.9545,60.271125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.51843,54.966344],[18.830938,54.952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.68975,57.8705],[23.571,57.683]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.68725,35.7515],[-7.73725,35.47775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.783,60.342],[18.909,60.441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.707706,40.727291],[13.767969,40.617031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.33457,36.37425],[-2.174,36.45325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.623812,48.989594],[-5.681625,49.108625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.085391,49.915937],[-0.336625,49.931]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.597,32.059],[-72.666,31.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.03025,59.858],[20.2055,59.76425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.387625,41.58325],[11.228125,41.423687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.184,28.543],[-89.244,28.459]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.761906,54.963],[12.642477,55.288227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,30],[144.232,26.002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.966,55.058],[4.339625,55.3235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.323,12.47],[-61.13,11.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.825812,39.271125],[25.9265,39.5015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.178,-33.068],[10.002,-33.572]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-70.7115,-53.442],[-70.875,-53.761]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.028,62.431],[-6.833,62.303],[-6.76375,62.23075],[-6.617,62.196]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.766,54.988],[17.55075,54.91325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.99725,36.06675],[-74.683,37.611]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.1985,41.6105],[10.336469,41.665875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.013125,42.132625],[15.32525,42.0665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.029234,52.6275],[-6.075,52.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.37575,43.98975],[-7.268,44.189]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.6195,60.1495],[19.505,60.091]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.581,14.883],[-61.6,15.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.963,-9.423],[159.576,-9.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.525875,38.461062],[24.57475,38.23775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.664,16.009],[-79.254,16.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.7395,12.9925],[-59.1285,12.6205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.211,36.466],[-43.434,36.831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.545,36.025],[-8.838,36.033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.235,25.469],[-74.11,23.954]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.4,19],[69.166,21.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.948,40.149],[3.195,40.031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.782125,58.455625],[5.962125,58.405687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.3855,63.6495],[21.510375,63.660875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.072453,43.194516],[8.910094,43.212531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.74575,39.901875],[23.75625,39.75375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.23,54.857],[2.985,54.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.7465,53.6755],[-5.186,53.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.543,32.438],[31.603,32.717]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.994469,42.64625],[16.823156,42.681648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,21.49],[-50.001,23.197]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.371,54.0085],[-6.2455,53.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.30225,49.300625],[-5.426,49.442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.939,54.666],[10.043996,54.757462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.091375,36.280375],[26.082,36.146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.083,38.6375],[12.9485,38.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.31625,59.8845],[21.737,59.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,30],[164.415,24.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.746,35.132],[28.20975,35.32325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.221,32.244],[-78.326,31.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.068,47.123],[-5.17,46.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.16325,59.3515],[13.567,58.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.02375,57.04825],[3.62,56.504]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146,-16.7],[145.86,-16.1785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.883625,42.72525],[7.599,42.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.633094,51.153219],[1.781094,51.149254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.023,56.034],[3.8975,55.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.81,54.729],[10.854008,54.863625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.236531,41.044938],[1.511,40.82075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.961563,42.430875],[-8.926687,42.302437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.365992,57.405602],[11.397281,57.249102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.157656,56.805281],[8.082187,56.717187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.165969,43.406406],[8.972,43.33125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.385392,53.617587],[5.374,53.619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.595,-45.728],[-63.9,-43.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.4295,56.916],[19.5855,57.081938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.058156,34.557719],[32.788,34.522]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.503625,54.865125],[13.320094,54.841844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.709437,52.145875],[-5.6175,52.0285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.7155,39.0235],[24.122578,38.783789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.474,25.784],[55.197,25.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.002,34.009],[-51.7,32.839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.492,65.671],[-21.3435,65.663]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.069,39.935],[19.206,39.90675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.972,56.678],[-151.933,56.963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.514,54.908],[16.624781,55.029219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.724812,36.342438],[23.881875,36.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.15575,46.252],[-19.9655,47.29275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.977313,40.664906],[13.881344,40.604789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.001,-32.435],[0.001,-31.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.322,38.748],[8.518625,38.61025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.725,-9.459],[115.6045,-9.0895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.37075,66.083375],[-21.473,66.329]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.462375,40.718906],[13.593242,40.802172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.7155,36.6275],[-2.989375,36.541062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.378,56.16],[5.554,56.1665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.828,40.028],[-9.82025,39.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.012078,56.967609],[7.868266,56.714313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.778,57.666],[21.617041,57.656064]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.05,53.315],[4.8515,53.2035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.175125,52.7395],[2.861125,52.4445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.559766,49.923234],[-3.414,49.965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.587,25.851],[-69.133,22.009]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.641,40.081],[5.0745,39.97075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.73993,37.28957],[23.869908,37.367563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.094,54.332],[-156.278,53.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.272703,60.148813],[5.4085,60.121]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.937,51.544],[-6.697,50.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.627625,47.370625],[-2.867719,47.237125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.2695,53.2485],[1.0795,53.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,12.755],[-148.132,11.961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.7825,37.5575],[24.613969,37.726234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.108875,51.252875],[-3.0275,51.173],[-3.015,51.219],[-3.108875,51.252875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45,25.277],[-44.645,25.612]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.336675,36.397749],[22.49,36.3835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.97,37.309],[-70.3745,37.14625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.822,24.446],[-82.04,24.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.137,42.553],[11.062148,42.430477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.181,58.8705],[23.0855,58.9995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.011625,42.028437],[5.322,42.111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.877,-8.772],[153.941,-6.625],[153.635,-5.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.4665,35.9315],[-3.113,35.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.919254,37.184895],[24.732742,37.148824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.004437,42.9335],[6.899,42.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.206,36.022],[15.708,36.1845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.56,42.726],[-9.78925,42.880656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.383313,55.997875],[7.387391,55.698687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.93225,56.97925],[9.006375,56.871688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.587,-26.974],[-46.50075,-26.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.309,-16.09],[137,-15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.471,35.46425],[26.5605,35.543],[26.682,35.712]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.454,39.903],[13.6995,39.754]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.920203,44.198094],[14.822813,44.277563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.90225,50.6475],[155.324,49.721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.255648,38.795563],[15.146242,38.676023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.122,-5.686],[116.8605,-5.729]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.40775,38.70975],[25.242875,38.81175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.977625,55.325375],[15.036,55.217]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.874,58.453],[1.6655,58.396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.694102,42.070801],[11.583004,42.024083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.211062,40.02175],[23.332625,39.917344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.747133,41.83657],[9.758258,41.651336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.0675,42.089],[18.5735,42.233]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.639,50.8105],[-5.773,50.579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.0715,58.8095],[18.20425,58.680586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.928,62.229],[5.115,62.461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.77,4.079],[-42.878,2.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.120984,51.713039],[1.330375,51.707375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.972,42.577],[133.063,42.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.113,38.915],[20.355625,38.634625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.245156,41.879453],[11.3435,41.774687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.474,41.073],[-71.2955,40.441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.667,54.1465],[1.94,54.027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.52225,65.444],[22.616,65.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.847,42.2555],[3.526,41.952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.4275,56.721],[7.38725,56.57775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.646,41.87],[10.631438,41.748188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.4545,51.7085],[1.565,51.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.536625,38.329625],[12.63275,38.44775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.529406,40.493094],[13.4915,40.277438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.733969,38.664156],[8.90025,38.70575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.818531,55.748875],[15.044125,55.693125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.767484,35.322164],[26.6655,35.197]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.295,41.805],[-64.2,42.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.148,35.97375],[26.31625,35.927125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.00425,49.214875],[-3.991312,49.086812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.162449,47.89148],[-5.136656,48.026813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.395375,36.69575],[-5.010063,36.171625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.06075,46.19725],[-129.455,44.103]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.817,-30.889],[-10,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.986,55.284],[18.8465,55.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.401,30.049],[-68.558,30.027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.534,55.306],[-6.294,55.355],[-6.182,55.3605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.87,40.6065],[6.968375,40.64525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.006,39.173],[0.2535,38.9945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.213156,54.943031],[8.1295,54.8555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.568594,57.987469],[10.4255,58.022125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.001,24.693],[-153.14,23.327]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.655781,36.495344],[24.486187,36.420883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.101,25.5],[63.3,24.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.882,46.741],[164.183,44.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.459,-20.406],[156.042,-19.177]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.875656,56.348],[11.905875,56.514875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.158,42.035],[17.312594,41.849781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.789,58.03],[4.66975,57.805625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.3445,50.6435],[-8.23875,51.02725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.8,44.1],[-5.935922,43.688109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,0],[-165.309,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.02,41.297],[8.00325,41.54275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.21175,37.191875],[17.629,37.352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.536,59.001],[19.4485,59.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.958,50.15],[-11.78,50.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.91,57.546],[-5.895,57.348],[-5.642,57.259]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.2795,44.89],[-4.404875,45.23625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.975797,53.878438],[6.846,54.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.36825,65.797],[-20.569625,65.921875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.82775,59.78625],[4.666625,59.755875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.695,58.01],[-2.914094,58.455031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.3095,31.347],[-14.766,29.874]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.9945,37.4105],[2.852,37.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.18575,38.70825],[8.049,38.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.833,30.041],[-130,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.587,60.694],[19.744563,60.670875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.62875,54.51575],[15.766562,54.737938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.61232,54.719742],[10.447998,54.726195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.618,20.8825],[-73.7265,20.92325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.693219,38.449734],[25.623,38.347375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.178119,50.895267],[1.10725,50.839062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.640875,43.356125],[-9.761,43.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.958,44.252],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.396,36.939],[2.651,37.131]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3385,38.962],[4.1855,38.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.754,19.714],[-66.934,19.531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.7845,52.05225],[1.8545,52.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.4465,58.40925],[4.046,58.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.6465,37.06575],[-11.315,37.2935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,-35.386],[-141.995,-32.169]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.437,38.983],[3.947,38.824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.906,46.232],[-7.98,46.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.8,-32.2],[-49.5,-30.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.163937,36.269188],[-9.4495,36.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.3,38],[-25.089,37.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.2085,37.511],[21.265,37.409],[21.371875,37.2265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.106,45.719],[-2.365,45.324]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-30],[-92.898,-33.151]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.634,27.559],[-87.365,26.618]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.825875,55.820125],[-1.597109,55.773531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.1185,37.391],[12.106922,37.287437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.669344,37.348992],[26.497473,37.191895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.125719,54.198719],[8.096453,54.026688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.836,54.2565],[8.713625,54.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.001,41.432],[-141.545,41.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.694438,37.352875],[12.87075,37.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.813,42.188],[4.487,42.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.08,58.634],[-5.647,58.206]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.514,36.672],[-10.6655,36.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.382,17.704],[-69.75,17.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-50],[-14.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.921047,55.630969],[10.971312,55.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.667,33.189],[-120.9,34.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.657375,41.421375],[12.745375,41.288875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.493125,55.54575],[12.59025,55.510937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.45,57.674],[20.473,57.536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[87.411,-17.548],[87.695078,-17.388891],[87.840969,-17.307094],[87.994707,-17.221148],[88.187,-17.113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.526,37.298],[-9.542,37.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.454,47.785],[-5.506,48.0165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.260344,57.327438],[11.119125,57.372625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.5555,65.454],[40.388,66.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.1,34.4],[-6.346,35.571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.5555,65.454],[39.949,65.879],[40.388,66.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.84723,57.855687],[9.869266,58.091203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-30],[-36.79,-26.968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.729,10.891],[-75.27475,11.658]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.214,61.16],[2.622,61.109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.415781,54.933609],[-5.552312,54.863062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.443,55.98],[-6.57075,55.83475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.134,49.872],[-18.16,49.831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.913875,58.669],[21.419094,59.038344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.36775,37.50575],[16.27325,37.58575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.44,56.2185],[7.383313,55.997875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.01425,54.88775],[7.919,54.957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,40],[-30.544,40.582]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.666,7.936],[-137.308,7.359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-20],[80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.187,53.5535],[5.069,53.58]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.9895,37.884125],[25.141,37.91325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94,6.7],[91.173,9.696]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.298547,39.434359],[14.14625,39.548]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.3965,42.89325],[17.299922,42.778953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.697344,36.851469],[23.888502,36.95017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.020375,50.358375],[1.22425,50.18675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.744,39.33],[-72.485,39.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.12575,54.61325],[15.766562,54.737938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.656375,37.4955],[26.511437,37.485563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.103,-53.008],[-64.699,-54.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.543859,37.880766],[15.840234,37.870719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.143625,36.10675],[25.243562,36.1335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.454773,45.46168],[13.528094,45.267156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.782625,38.671406],[24.779438,38.804688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.4015,58.179],[11.211383,58.103047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.4,23.5],[-107.252,20.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.5,-47],[165.6,-46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.317922,39.711375],[25.513,39.988],[25.639578,40.049898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.916,36.998],[12.7285,37.01075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.210094,56.756406],[11.4215,56.8835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.75225,43.4335],[14.853875,43.485687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.58,49.738],[-19.743,49.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.021,28.942],[-83.002,27.586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.344,28.516],[-76.304,28.389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.18525,42.3465],[5.436687,42.380688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.96625,52.007125],[3.19525,52.051812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.02875,39.39625],[25.1865,39.36075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.753,42.293],[-127.67,42.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.0955,45.4525],[13.233531,45.409594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.507219,56.241031],[6.6725,56.3195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.34,-34.71],[165.74,-34.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.834281,36.283469],[-3.976,36.3615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.875,32.511],[-79.221,32.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.708187,35.97225],[14.813,35.959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.739,32.765],[32.543,32.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.125125,7.176125],[157.241,7.29]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.608875,43.185562],[7.595469,42.98625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.57625,67.44925],[13.358,67.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.756,13.495],[-65.625,12.488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.125,29.4],[-164.245,25.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.825,-10.051],[43.371,-11.979]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.423,-11.089],[162.557,-16.494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.028,58.55],[-135.042,58.152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.0055,5.052],[157.125125,7.176125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.52,-40.571],[160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.866312,54.66775],[16.979188,54.837812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.3955,55.550125],[17.316,55.3625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.1,12.7],[-87.6,12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.092,56.731],[-165.253,56.508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.965,53.273],[-33.174,53.307]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.06625,42.97975],[14.077,42.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.437883,36.621586],[27.43725,36.450203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.218656,57.653188],[18.094875,57.59975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.071562,61.531188],[20.96575,61.44125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.141,-14.985],[128.4,-14.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.067,36.696],[23.313875,36.956375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.593,40.893],[28.1765,40.811]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.1475,40.1945],[19.53075,40.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.944,38.941],[0.743875,38.873375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.763141,39.488523],[25.825812,39.271125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.618,53.392],[2.900187,53.406937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.409156,42.964031],[5.5585,42.6005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.6655,40.587],[-10.805,40.534],[-10.88425,40.489875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.535,56.284],[18.702,56.451]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.769625,53.588031],[6.601182,53.622092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.135,50.5575],[-7.7945,50.366]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.570625,45.229859],[14.436188,45.1285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.92125,47.863],[-3.937,47.7505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.812328,55.619172],[15.74675,55.739875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.5805,55.0505],[-8.246,55.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.138,37.632],[0.344,37.628]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.35,61.838],[19.498,61.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.41925,34.62725],[32.308344,34.708]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.397,58.362],[-160.891,58.626]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.555,54.3115],[3.470094,53.916625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.92,43.675],[-1.892,43.921]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,0],[160,8.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.566,23.533],[-73.478,23.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.74625,55.16375],[-5.566375,55.043687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.3485,59.4035],[18.758125,59.309562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.011,41.602594],[12.00475,41.5005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.3105,39.1235],[15.60375,38.728375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.65,57.1585],[19.735969,57.3235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.668,45.7575],[-4.82975,46.003875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.052,53.487],[-4.970297,53.366312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.979,58.1875],[5.780375,58.159937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.085125,39.75025],[25.88575,39.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.024,36.632],[26.12975,36.701797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.128,62.0715],[-7.55,62.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.244375,36.64075],[24.201375,36.731938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.247,46.126],[-4.085375,46.287625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.325188,44.284687],[14.43557,44.48393]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.57375,48.27575],[-6.7675,48.253]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.593625,64.693375],[22.505,64.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.7305,61.341],[18.894,61.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.147781,56.264937],[16.243,56.234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.565151,55.007522],[14.5405,54.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.361312,41.888563],[3.252187,41.795797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.528,57.954],[23.571,57.683]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.331304,54.805154],[10.447998,54.726195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.414,67.127],[32.491,67.07],[32.988,66.807]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-30],[-124.756,-25.508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.284078,36.52936],[25.147418,36.515793]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.581,36.439],[-72.835,36.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.043,41.272],[3.335,41.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.511,41.217],[6.391812,41.269125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,20],[-170,20.694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.415,37.827],[-69.6645,37.411]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.115,26.751],[-69.297,23.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.038,55.518],[20.083375,55.649687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.536,55.581031],[16.613,55.70225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.118875,52.629625],[4.218,52.697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.95125,47.30675],[-2.867719,47.237125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.3925,58.337625],[20.109875,58.472375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.278,38.353],[6.56425,38.18125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.261312,38.501312],[15.188937,38.332734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.055578,55.648859],[10.377,55.629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.3595,36.848344],[26.43825,36.750375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.381727,57.740961],[11.278492,57.636105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.525625,41.204813],[17.643062,41.204937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,0],[-141.439,1.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.395,36.748],[-12.27,36.733]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.592,52.801],[-44.328,54.513]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.97,21.144],[-157.639563,21.207063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.297,66.326],[-21.473,66.329]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.249,55.431],[-36.583,53.987]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,40],[-50.001,36.534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.132859,35.702266],[24.231469,35.660031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.373,37.589],[3.169,37.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.997,55.60775],[19.01575,55.424]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.846,44.139],[-7.911,44.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.273,42.9375],[5.409156,42.964031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.584625,53.929375],[8.455625,54.064375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.8635,39.52825],[15.008719,39.350563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-10],[-85.267,-4.789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.193,46.139],[-1.207,46.024]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.695,21.942],[-85.97675,21.97175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.121,39.701],[-69.376,38.882]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.913266,37.335828],[26.802625,37.517875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.182,27.4675],[-78.877,27.077],[-79.38,26.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.63,7.677],[-26.333,10.32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.718,34.692],[-72.374,34.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.283672,55.005711],[-5.415781,54.933609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.511969,42.932844],[16.677316,43.012395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.567266,35.916988],[14.616,36.111],[14.655,36.21975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.492,29.805],[-71.253,29.502]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.56,34.144],[31.77025,34.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.4895,40.8185],[28.664,40.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.938,37.1905],[-10.776,37.146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.001219,58.291938],[10.824063,58.20675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.23925,49.463688],[-4.36025,49.4095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.672,59.498438],[23.470641,59.506891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.445391,55.916641],[14.626,55.839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.924969,62.803875],[18.017312,62.650937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.151,-35.957],[160.4,-35.679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.444109,42.7225],[10.412,42.593625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.546,51.262],[-172.878,47.609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.125,44.551],[-6.973,44.937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.330375,51.707375],[1.441516,51.824656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.392562,66.210797],[-18.3925,66.38375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.51,37.339],[11.298938,37.419125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.333937,38.828812],[0.406781,38.693469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.770184,56.628477],[6.915062,56.724437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.045574,42.939012],[4.91785,42.940591]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.3985,57.97875],[20.454,57.7895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.049625,43.51475],[14.887352,43.367371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.099937,43.349375],[10.11375,43.244625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.568,15.07],[-70.793,14.963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.649736,57.447521],[11.564063,57.590063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.431594,54.11825],[5.417,54.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.431,47.279],[-59.071,47.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.824063,58.20675],[10.923344,58.151258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.992875,54.742188],[19.101703,54.818453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.402,-32.612],[-45.304,-32.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.564,54.726],[5.641,54.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.673,9.202],[160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.276,42.237],[5.322,42.111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.292625,59.019719],[5.417,58.801],[5.44325,58.742625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.87875,39.71975],[0.753,39.594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.125063,56.87325],[-7.4775,56.94625],[-7.1965,56.750875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.8015,59.343],[4.71975,59.117234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.12,37.024],[22.117,37.012],[22.088,36.904],[22.05075,36.79025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-50],[40,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.217,49.290875],[-4.1425,49.1885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.38,69.334],[16.1715,69.3165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.71975,59.117234],[4.591,58.836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.966,36.425],[30.942,36.237]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.5715,57.399563],[8.587523,57.231133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.395,43.2535],[36.397,44.039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.763312,39.652125],[25.673664,39.548664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.881344,57.460531],[11.01575,57.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.001,24.914],[-60.001,26.158]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.1415,40.8395],[1.122,40.752],[1.085,40.568],[1.074,40.511]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.456,42.238],[133.814,42.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.087812,42.21875],[15.88975,42.1645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.697312,38.561875],[-9.607875,38.47475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.9,35.95],[23.817125,36.06025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.2,35.2],[34.839,35.4985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-30],[70,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.517,57.947],[-17.703,57.824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.61625,35.66425],[25.513063,35.925687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.161,67.069],[43.174,66.917]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.528,9.438],[-80,9.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.209063,66.200938],[-23.537,66.235375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.429813,37.774375],[15.543859,37.880766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.7765,55.8565],[17.9375,55.80975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.001,41.927],[-129.344,41.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.37275,58.05125],[11.373734,57.904672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.184375,62.250125],[21.219,62.36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.679172,42.509359],[6.40425,42.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.012906,57.797512],[8.7505,57.8335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.097625,40.112875],[4.66,40.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.609375,38.91375],[25.593719,39.019594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.799844,54.771531],[12.96175,54.817],[13.05875,54.8595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.376688,21.308563],[-157.45675,21.062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.955953,41.245672],[10.01625,41.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,12.449],[-110.166,12.479]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.44725,39.45875],[-55,35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.003,15.497],[-154.685,15.481]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.578,66.4795],[-21.297,66.326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.356,-32.822],[-47.055,-32.408]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.234,59.734],[10.344,59.698],[10.409,59.627],[10.408,59.554],[10.38075,59.521],[10.471586,59.474203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.874273,50.62893],[1.107,50.757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.343,5.152],[170.957,6.078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.352422,55.020484],[-1.3945,55.3345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.0755,55.905937],[10.985047,56.042883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.766,49.223],[-6.767,48.968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.147,50.444],[0.011582,50.526684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.799,51.302],[-10.773,50.963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.583,35.928],[13.682,35.978]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.463461,37.560992],[23.41125,37.695766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.789,67.3915],[14.1485,67.357]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.534,1.487],[-107.018,1.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.617115,16.115727],[-85.84125,16.129625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.973375,56.86475],[18.093875,56.872062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-40],[65,-40.107],[60,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.25,-39.301],[-62.8755,-41.8965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.5,64.1],[-24.083,64.699]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.8085,38.3535],[-9.68325,38.161]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.5,-28.125],[12.059,-28.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.497859,54.259535],[8.360563,54.301414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.858375,43.04875],[7.004437,42.9335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.48,38.101],[119.392,37.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.333,-30.961],[12.059,-28.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.161453,39.414422],[20.04875,39.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.626,38.516],[-71.455,38.392]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.21975,54.20425],[14.25325,54.094375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.695375,38.0285],[13.56625,38.18525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.346,29.023],[-87.184,28.136]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.983578,35.662859],[26.103,35.57525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.142,38.915],[-73.913,38.983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.038885,45.242312],[12.885,45.149]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.930844,59.65625],[20.058375,59.618047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.674,19.8],[-67.181,19.429]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.3085,38.6065],[0.16275,38.45525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-30],[-138.86,-31.239]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.001,13],[52.924,12.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.493422,36.511016],[25.284078,36.52936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.311891,59.01743],[10.496875,58.794438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.271,20.0525],[-40.0485,20.103]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.08,21.84],[91.828,22.27],[91.82,22.314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.655,59.304],[13.567,58.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.91,43.89],[-3.9895,44.1085],[-4.2795,44.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.17725,39.645],[14.248,39.749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.277719,36.044219],[23.416,35.98]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.51875,51.3205],[-9.749,51.278]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.0965,5.3055],[-11.229907,5.372682]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.371,48.489],[-8.976,48.337]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.691469,38.299062],[20.644,38.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.042078,49.697828],[-2.089062,49.832188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.451,7.458],[70.819,8.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.4955,55.4355],[-6.9265,55.481]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.112,42.426],[-10.0825,42.6135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54,52.5],[-57,54.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.674,36.079],[-7.777094,35.966875]]}},{"type":"Feature","properties":{"pass":"suez"},"geometry":{"type":"LineString","coordinates":[[32.576,29.682],[32.5515,29.944],[32.56,30.209],[32.303,30.566],[32.315,31.125],[32.38375,31.33875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.134,36.717],[-11.879,36.896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.903,-4.64],[113.291,-5.762]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.25,-15.942],[9.089,-19.203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.404063,53.723],[6.297398,53.7685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.669,29.266],[-150.922,29.287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.713,52.9865],[4.5295,52.681]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.808,55.81475],[16.988703,55.967375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2155,39.3115],[14.298547,39.434359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.374,53.619],[5.069,53.58]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.632,42.601],[29.303,41.747]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83,57],[-87.383,58.611]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,50],[-151.59,48.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.194,30.015],[-149.605,29.627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.050688,35.612562],[24.231469,35.660031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[175.2,-36.647],[175.2,-35.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.344,34.118],[29.48,33.946]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.20975,35.32325],[28.023,35.50875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.0245,1.169],[172.864,1.391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[102.606,7.812],[104.9,8.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.432,40.712],[1.48725,40.60825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,20],[-130.407,19.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.13525,54.2525],[0.406,54.066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.67725,35.84575],[29.781,35.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.398,5.125],[-12.697,4.351]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.240687,41.79975],[16.213461,41.962656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.807625,54.413125],[14.6365,54.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.563125,46.766312],[-2.512,46.634]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.412,-24.677],[0.001,-27.124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.199,37.102],[123.976,35.423]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.835,35.055],[-74.1655,34.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.165,43.278],[4.3095,43.2515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.996312,50.798438],[1.107,50.757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.22975,53.878],[8.109,53.893562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.982,27.633],[33.503,28.117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.6745,43.91925],[13.632375,43.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.342,54.525],[-30.004,55.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.001,-38.7],[138.627,-41.619],[135.102,-45.393]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.968562,55.866688],[16.120004,55.848078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.056,8.69],[65.054,8.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20,-40],[25,-40.107],[30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.893,58.392375],[-10,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.38,41.95],[5.062375,41.7515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.967,26.552],[-94.568,26.163]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.506,70.466],[22.215,70.443]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.82975,57.68425],[18.92975,57.38025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,15.17],[-125.642,14.519]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.3995,36.435],[15.625,36.883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.919828,36.942359],[26.041,37.040719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.116375,59.861187],[25.002813,59.812562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.763562,43.988937],[14.675031,44.151812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.046,58.39],[4.509,58.616]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,60],[-6.56725,60.87025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.096688,54.63125],[18.925219,54.655281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.437941,40.877031],[24.446875,40.761688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.535312,36.193156],[24.486187,36.420883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.984,59.426],[-2.0995,59.7035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.48725,53.17825],[1.74975,53.0515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.322,29.248],[-87.406,29.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.32,40.878],[139.4,41.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.235875,40.468812],[14.043023,40.375594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.353,-52.757],[-42.838,-53.311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,10],[-134.072,5.983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.31625,59.8845],[22.279688,59.704375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.897875,70.72],[21.028,70.724]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.525,-11.601],[95.782,-10.031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.862,28.766],[-70.007,28.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.833406,55.412844],[14.977625,55.325375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.058125,55.827438],[18.23175,56.1155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.59125,17.2995],[-67.928,18.4805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.278492,57.636105],[11.516864,57.31915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.411,63.3925],[-19.724,63.4365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.722859,41.281063],[16.892,41.170313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.896,8.918],[70,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.48725,57.58975],[19.168438,57.759125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.336625,49.931],[-0.578875,49.9645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.608562,41.1935],[13.523,41.013],[13.464594,40.920094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.1945,41.991875],[8.00625,42.07075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.793297,57.53475],[17.956422,57.596609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.149406,58.661406],[17.031,58.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.61925,-16.745],[-10,-12.896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.129,-56.014],[-66.58,-56.479]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.034,5.513],[-54.008,5.562],[-53.948,5.812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.622875,53.805125],[-3.8135,53.7255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.212,33.116],[28.9205,32.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.112,-45.403],[120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.727,35.195],[-73.835,35.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.912,35.933],[28.348,35.7705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.109,54.643],[-4.989438,54.608937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.153625,53.091875],[0.946148,53.088938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.868,-42.084],[155.464,-45.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.84475,54.137187],[6.735,53.895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.12475,36.388],[21.004,36.43175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,40],[165,40.107],[160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.533,41.884],[4.448,41.732]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.4855,60.1135],[20.395578,60.034437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.5,45.066],[30.335,44.364]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.406,8.438],[-27.63,7.677]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65,-35.386],[60,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.07275,41.63825],[-10.033,42.2205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.4,-35.679],[160.002,-35.616]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.239,3.852],[-85.74,5.229]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.663,-15.802],[162.314,-12.852],[160.423,-11.089]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.915,28.17],[-142.527,27.613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.85825,54.026781],[7.891109,53.926875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.354469,35.785625],[24.4885,35.7575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.968,7.312],[120.46,8.077]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.069344,39.92525],[0.103,39.80675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.631047,44.227828],[8.763789,44.097516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.683625,37.49325],[10.995875,37.481313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.78,58.949],[17.819,58.895],[17.7595,58.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.638,58.289],[150.9,58.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.605,74.632],[17.865,74.691],[18.761,74.347],[19.575,72.272],[19.376,72.217],[19.388,71.985],[19.734,71.891],[19.722,71.541]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.368,60.204],[27.882125,60.26575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.7,61.235],[7.669,61.225],[7.416,61.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.36,0.939],[79.545,2.607]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.997,36.487],[-69.692,36.352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.622,24.685],[-91.176,25.627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.223406,64.253375],[-22.330125,64.11925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.388,54.981],[16.514,54.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.482,45.205],[-16.51,44.848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-3.107],[-127.463,-2.574]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.545969,57.573281],[8.645,57.60275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.089,-36.227],[-159.998,-35.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.025,-23.154],[-10,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.746625,53.780875],[0.9255,53.926]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.329,11.897],[110.262,11.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.321,43.058125],[9.14325,43.036]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.825125,40.679375],[1.575,40.65925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.141,37.91325],[24.967219,38.05525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.868,59.090656],[5.641188,59.016695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.578,-3.059],[11,-6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.9835,22.9925],[118.344,24.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.9835,22.9925],[117.778,23.495],[118.344,24.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-50],[70,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.616,40.261],[13.529406,40.493094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.28675,5.76875],[133.636,6.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.5235,41.6615],[8.71175,41.5865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.574,30.624],[-40,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.0345,38.95],[15.10675,39.0245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.628766,44.141828],[12.684,44.30575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.203,14.202],[-60.879,13.621],[-59.946,13.088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.436813,57.398375],[8.420781,57.265594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.5605,57.566],[23.417,57.543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.349,2.027],[45.759,1.647]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.957,61.345],[18.047,61.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.692875,37.29175],[15.611,37.170625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.109,43.026],[-10.055594,43.343344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.086,-18.176],[168.073,-18.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.503,58.565],[18.457,58.47375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.584,36.214],[-16.027,35.449]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.632219,43.586016],[-5.642375,43.70525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-40],[50.001,-37.736]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.1475,22.9585],[-86.891,22.713]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.0575,57.0075],[-1.985812,57.13725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.95925,56.04425],[-6.9265,55.481]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,0],[-99.672,-0.333]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.166906,56.684656],[7.216203,56.968812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.148,33.297],[26.303,33.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.080625,50.631875],[0.069625,50.753687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,30.272],[-150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.017688,58.729125],[19.227,58.8255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.764,42.595],[8.674312,42.70125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.196094,59.917375],[24.031281,59.749813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.948125,39.674809],[24.859875,39.55475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.162313,38.649938],[-9.929938,38.868688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.156,61.2965],[21.250352,61.193086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.76875,54.178875],[7.940734,54.140664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.814344,53.521469],[4.69025,53.571062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.125,25.395],[-47.966,28.079]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.188,-23.802],[110.674,-23.033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.906,36.454],[15.3855,36.581]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.1,34.395],[135.0695,33.191]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[112.687,-21.911],[113,-23.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.4625,64.7145],[23.847875,64.741625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.531,37.119],[-8.6695,36.949]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.589,26.212],[-76.3525,26.02325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.126,57.96],[0.111,58.083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.6235,54.3405],[15.883,54.556]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.378,46.48],[-13.537,45.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.998,-36.681],[-170,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146,-16.7],[146.5865,-16.4795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.59675,56.417125],[20.503602,56.56732]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.1515,35.856],[26.31625,35.927125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.587375,39.788063],[7.6955,39.5865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-20],[-170,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.922,9.364375],[-79.83,9.409],[-79.814,9.393]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.101703,54.818453],[19.210625,54.798625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.131,51.5385],[-6.121,51.413]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.002,-35.004],[10.002,-34.691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.766562,54.737938],[15.654125,54.696687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.407,43.12975],[7.004437,42.9335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.712938,38.337313],[12.564703,38.197852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.253,56.508],[-165.099,55.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.11825,38.9955],[0.2535,38.9945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.8515,26.3215],[-86.643,25.167]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,-19],[8.51,-12.361]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.6995,39.754],[13.70075,39.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.835875,51.379],[-3.684,51.343]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.87,37.324],[20.78275,37.4845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.38375,31.33875],[33.741,31.439]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.377,40.948],[1.511,40.82075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.088,5.124],[157.125125,7.176125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.84425,38.17075],[11.74975,38.2715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.6455,57.4555],[19.48725,57.58975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.554063,38.455859],[25.336008,38.551061]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.60125,43.80125],[28.647,43.524]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.137,58.464],[-10.5,54.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.694,10.201],[-26.333,10.32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.047,59.771],[2.162,59.794]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.869531,50.101469],[-3.74175,50.073625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.806,69.111],[14.548,69.567]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.714641,54.660719],[10.81,54.729]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95,-25.277],[-94.169,-24.419]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.939312,39.475],[0.829688,39.325937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.4275,56.9035],[2.163,56.494],[1.552,56.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.2605,62.47875],[-168.472,62.044],[-168.578,61.7795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.51,54.866],[5.373,55.1015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.33,48.439],[-5.3065,48.2945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.155,38.477],[-10.813,38.502]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.342,35.34],[-8.46725,35.31525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.078,56.053],[6.395,56.181]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.8645,36.1305],[21.777297,36.300844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[86.761,-13.377],[90,-12.163]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.3005,41.716375],[16.45125,41.823125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.11,23.954],[-73.912,23.8015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.664,57.00225],[-1.514,56.567]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.358,54.479],[1.667,54.1465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.459,39.45],[-20,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.531,33.247],[-67.811,33.344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.336875,55.2255],[16.336,55.514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.774,55.109],[19.924,55.192]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.72775,57.23575],[-1.67475,57.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.452625,39.15675],[3.437,38.983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.476,28.043],[34.455,27.714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.516864,57.31915],[11.365992,57.405602]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.992,46.22925],[-129.8,46.231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.747,59.344625],[19.604,59.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.9735,34.3275],[-8.166,34.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.197,58.831],[12.902,58.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.769813,40.779313],[10.842,40.697125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.224312,36.567625],[-9.358,36.619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.600039,40.952727],[9.572563,41.142031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17,70],[16.798,69.919]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105,-25.277],[-110,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.425875,38.3485],[22.37,38.242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,20],[-140.73,20.774]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.61325,41.319875],[16.537,41.41475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.95,59.279125],[21.878,59.151],[21.822125,59.054375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.34,28.538],[-60,28.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.591,58.836],[4.71025,58.8615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.454,53.06],[-152.843,51.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.613,-54.612],[-63.426,-54.622]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.687,55.5895],[15.775625,55.49725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.05425,43.7815],[-8.1985,43.68475],[-8.402055,43.614492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.1,12.2],[109,16.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.324727,42.953508],[15.292125,42.721125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.163219,58.972406],[10.028375,58.819312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.746152,55.300796],[14.977625,55.325375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.508516,36.843312],[25.611,36.924]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.456,66.101],[36.457,65.933]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.144687,39.117297],[15.345625,38.912625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.291062,39.408125],[1.119,39.256]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.913266,37.335828],[26.945125,37.52475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.449,61.129562],[18.55,61.066],[18.633555,61.056664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.391,21.312],[-82.756,18.338],[-80.5,14.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.332,21.337],[89.727,18.849]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.981,-43.182],[87.729,-42.544]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.487219,57.727984],[-2.940484,57.706078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.548625,44.043125],[13.66225,44.06325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.082891,38.777516],[15.0345,38.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.264,63.161],[19.402,63.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.3555,37.10975],[12.581445,37.077711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.791,65.202],[23.627875,65.098062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.842,62.228],[21.089152,62.212629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.696297,37.756797],[25.488766,37.681125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.001,-24.964],[163.3435,-23.608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.747,-20.37],[7.894,-22.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.311,54.465],[-133.32,54.791],[-133.554,55.227],[-133.228,55.522],[-133.332,55.577],[-133.604,55.635],[-134.253,55.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.946,12.102],[-69.213,12.344],[-69.234,12.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.726773,53.505562],[-4.7465,53.6755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.623,43.1415],[5.350734,43.1385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.976,58.642],[18.20425,58.680586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.862258,53.790398],[7.891109,53.926875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.817406,64.030812],[22.705625,63.993281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.588,53.178],[5.412,53.18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.879,29.385],[-77.23125,27.989]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.455937,38.751469],[20.227,38.8435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.64,46.202],[-3.937,46.061]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.739125,-14.418875],[-171.668,-14.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.975875,36.46325],[13.001,36.6805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.656,54.597],[14.832,54.732]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.857516,44.946891],[12.75075,45.03025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.822,35.812],[26.963,35.957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.011,55.475437],[15.934625,55.349438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.072969,36.014047],[26.76225,35.96925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.821148,36.500563],[26.841437,36.615871]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.353,43.915],[8.497633,43.934609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.777,27.713],[-85.766,27.976]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.25,-33],[153.619,-32.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.27225,55.127469],[19.332,55.25825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.001625,37.213],[26.901875,37.10975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.09,27.418],[-73.178,26.561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.653,26.549],[-175.061,25.219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.656,13.9785],[-79.681,14.207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.835754,51.295676],[2.014828,51.457344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.9,52.6],[165.249,50.873],[159.108,48.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.396453,37.483766],[26.511437,37.485563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.54,-28.545],[-135.016,-25.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.931,-31.162],[-1.98,-32.153]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.82746,36.416233],[20.438,36.382]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.305813,40.422359],[2.44575,40.680125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.15025,57.45975],[7.260312,57.130813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.013,60.155],[29.412,60.0335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.507219,56.241031],[6.19,55.7165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.86775,41.4815],[18.8725,41.3725],[18.8765,41.2435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.821906,56.774562],[6.770184,56.628477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.002,52.691],[-41.898,51.979]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.6845,43.186],[3.6495,43.041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.96625,40.99175],[11.067937,41.153672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.885,56.545],[11.042334,56.518523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.93,35.915],[15.206,36.022]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.088625,54.5905],[12.248,54.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.327875,56.923625],[19.411875,57.094813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.28,5.941],[-44.441,4.494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.022,47.224],[-5.124001,47.708755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.440866,11.49069],[-61.57778,11.642532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.645,41.235],[18.8765,41.2435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.64,40.625],[-64.2,42.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.362625,54.821125],[12.594953,54.939547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.331714,42.155052],[28.474,41.991]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.5435,36.8875],[21.456018,36.948008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.5855,59.996],[26.615,60.1165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.728156,51.331844],[2.97075,51.525688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.8,46.231],[-125.06075,46.19725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.10975,64.69225],[24.2125,64.65175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.938492,55.439906],[7.767188,55.361438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.567,70.821],[22.215,70.443]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.331,37.875],[8.130125,37.831125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.361969,52.951855],[0.5585,53.124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.23575,48.702375],[-2.648875,48.813688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14,65.9755],[-13.617687,65.598187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.178,60.77325],[4.1825,60.43825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.788423,35.822991],[27.702,35.7385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.186,56.805],[19.327875,56.923625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.999,-32.717],[-40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.352219,38.52725],[13.5455,38.8035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.918719,56.112078],[14.931625,56.01225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.336,55.584],[18.14,55.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.22525,57.38825],[-0.826,57.239]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.483469,55.693687],[15.366125,55.6635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.00825,37.67925],[26.872,37.634],[26.622188,37.603781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.817,-26.511],[-39.72,-23.828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.171,41.806],[10.103,41.692]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.999,-33.147],[-32.79,-33.033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.576812,56.035563],[15.531,55.897359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.114562,53.977125],[-5.9745,53.991375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.088094,41.582906],[9.892188,41.504453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.767,38.272],[-137.863,39.128]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.526,57.806],[4.216,57.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.336,55.514],[16.290563,55.696742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.029,54.344],[4.911219,54.004937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.55325,60.13225],[27.368,60.204]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.8295,40.818625],[1.90825,40.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.242,60.3765],[21.098156,60.383297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.414,41.304],[2.53875,41.25775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.050719,44.805062],[13.99175,44.65725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.618,25.946],[-76.4875,25.9845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.8135,44.31925],[8.631047,44.227828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22,33.3],[19.488,34.2305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.875875,36.610687],[23.96525,36.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.5735,42.233],[18.56775,41.8995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.015,33.246],[155,35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1,62],[4.178,62.961],[6.865,65.313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.373,55.1015],[5.294,55.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.37125,46.746781],[-2.563125,46.766312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.915625,38.16525],[23.052,38.192],[22.976,38.194],[22.915625,38.16525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.001,24],[58.887,24.089]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.45175,58.21875],[20.559313,58.235813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.825,18.513],[-66.534,18.646],[-66.215812,18.676063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.5345,45.538],[-3.7185,45.7765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.928,18.4805],[-69.382,17.704]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.699,51.623],[-5.56875,51.8795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.053875,58.408],[-2.914094,58.455031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.345375,56.9675],[7.275,56.82575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-40],[-5,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.639953,49.750961],[-3.507422,49.735531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.229387,56.567371],[11.042334,56.518523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.36,25.697],[-76.4875,25.9845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.092625,38.133375],[-0.18,38.019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.259,52.467],[2.33525,52.56475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.002,-36.286],[160.002,-36.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.5185,37.229094],[13.837875,37.0335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.45725,42.572],[5.436687,42.380688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.825219,48.522094],[-5.819,48.314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.696,-49.374],[70.474,-48.68],[70.108,-48.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,10],[-130,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.296,-9.31],[-95.001,-5.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.494,-10.629],[130,-10.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-10],[-10,-12.896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.10975,64.69225],[24.015,64.642]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.878,-50],[-80,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.50075,-26.92],[-46.401,-26.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.666,54.445],[5.6055,54.544]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.862,38.97],[20.007,38.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.772,-8.796],[-25,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.64,64.601],[-23.316,64.483]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.78,-30.267],[-45.304,-32.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.441516,51.824656],[1.565,51.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.3005,62.2955],[5.1265,62.207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.534,38.121],[8.978375,38.415469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.506,48.0165],[-5.744688,48.002531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.773,42.119],[132.141,42.333]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.479484,43.3675],[15.675179,43.535677]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-5],[-31.063,-7.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.122297,35.373719],[25.172969,35.561266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95,-35.386],[-90,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.183,30.238],[-74.645,30.264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.303,39.843],[14.01125,40.086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.87025,39.95175],[-10.6655,40.587]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.498344,44.260625],[8.692079,44.314373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.613,51.9355],[-6.24875,51.86125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.393,15.631],[-69.848,15.413]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.84,34.1815],[-72.898,32.578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.581,42.418],[10.478188,42.446594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.2,-13],[-33.212,-11.577]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.31,49.93],[0.294469,50.076906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.222,60.9305],[19.16,60.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.2785,41.4425],[6.5765,41.6345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.642,32.872],[-124.684,35.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.916,42.35475],[16.887,42.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.656,-3.173],[54.578,-3.971]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.053812,57.174594],[19.735969,57.3235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.148,35.936],[-68.031,35.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.944,38.66575],[8.049,38.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.71,0.766],[168.43125,-2.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.375,40.312],[25.229,40.2445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.4365,55.566],[-5.339812,55.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.852625,48.384375],[-4.9995,48.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.39675,58.696375],[9.32207,58.511648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.1755,55.115625],[15.153191,55.347656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,60],[-44.201,58.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.933,34.704],[27.106,34.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.511625,37.280813],[12.94975,37.154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.46725,35.31525],[-8.533,35.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.239625,54.994609],[-1.42525,55.514031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.7675,34.5505],[-13.568,34.586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.883,25.173],[-73.877,26.436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.1,55.5],[-5.974,55.629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.59025,49.12975],[-10.559,48.187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.176,36.185375],[23.277719,36.044219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.917,35.4],[-74.374,34.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.125125,7.176125],[157.324,7.374],[157.408,7.458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.862,39.634],[13.92475,39.760375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.968,37.1435],[23.087656,37.298563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.838,36.033],[-8.9385,36.22]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.464344,37.906844],[25.504125,38.08125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.181625,55.249875],[17.4365,55.290625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.154875,57.74375],[21.341812,57.576]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.732,17.753],[-64.181,17.157]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.159,34.99],[-20.665,34.941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.432875,41.806375],[8.5235,41.6615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.433,28.814],[-89.37,28.716]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.741,-31.368],[9.998,-29.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.372,39.20225],[23.114313,39.813688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.57778,11.642532],[-61.8895,12.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.70525,39.06875],[14.797406,39.02825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.157,62.3075],[20.254,62.208]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.090375,44.612375],[13.390062,44.217687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-50],[-154.889,-45.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.905781,35.438344],[-2.524,35.949]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.873219,52.440906],[2.175375,52.33825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.986,44.428],[-8.248,44.301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.144344,55.565469],[15.153191,55.347656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.823156,42.681648],[16.713023,42.646078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.512,-8.11],[-33.212,-11.577]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.3395,38.3515],[0.066,38.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[99.9,-1.4],[99.947,-5.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.437,39.357],[14.501,39.259],[14.611937,39.130188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.481,60.736],[18.4745,60.63475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.179,65.513],[-23.274,65.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.94925,52.9315],[4.065,53.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.852,43.283],[7.608875,43.185562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.760094,54.309625],[11.620437,54.27225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.965719,38.400688],[20.9025,38.5245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.93825,30.012],[50.078,28.917]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.098,56.324],[-1.954,56.342]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.34025,43.32625],[15.265703,43.090328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.2935,38.1955],[-9.339,37.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.293,31.228],[19.535,30.54],[17,32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.913,9.798],[110.807,11.264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.240875,36.694375],[-0.366,36.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.622062,37.143313],[24.488828,37.066336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.70975,38.57625],[11.463,38.8435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.7615,44.01],[-135.113,45.402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.02225,10.00675],[-52.368,12.706],[-54.11,14.333]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.838,36.033],[-9.024,36.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.4015,58.179],[11.37275,58.05125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.794,46.465625],[-2.063656,46.314531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.168,35.6615],[28.022,35.7675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.267576,37.466994],[24.236023,37.288781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.987,45.914],[-7.071,46.90425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.146242,38.676023],[15.082891,38.777516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.795,49.367],[-1.986,49.3995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.850375,44.7345],[13.99175,44.65725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.325188,44.284687],[14.39825,44.21375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.108844,36.03],[24.0035,35.914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.356,61.017],[3.014,60.878]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.326,31.418],[-77.667,30.809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.326141,56.815695],[18.603562,56.827281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.035234,49.205703],[-5.837125,49.055563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.1265,62.207],[5.016,62.166],[4.793625,62.00675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.244,1.262],[-30.877,0.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.9265,55.481],[-7.27425,56.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.261,64.537],[-14.29475,64.38125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.708,41.12],[39.449,41.424]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.814344,53.521469],[4.965219,53.57975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.058156,34.557719],[32.924,34.489]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,4.193],[-40,2.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-148.819,21.252],[-150,21.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1335,52.053062],[4.589,51.897]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.21,35.3955],[23.3865,35.2565],[23.492125,35.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.70325,55.688766],[10.819488,55.736742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.685,26.28],[-85.8335,26.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.092906,37.788031],[16.158,37.8895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.901625,57.337312],[11.119125,57.372625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.354328,51.25282],[-4.275859,51.113109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.445,41.88],[-68.833031,40.499813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.522375,59.71075],[23.643375,59.616844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.253312,54.956063],[17.991219,54.888781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.112875,43.403375],[8.21725,43.41375],[8.320789,43.409773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.81175,59.435125],[23.70575,59.367]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.463,38.8435],[11.1785,39.52075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[81.759,12.632],[83.979,11.557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.892,8.262],[104.9,8.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.703,-39.613],[149.446,-40.852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.638,21.629],[137.82,22.608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.832812,60.783469],[20.4725,60.666]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.889375,59.896],[4.894938,60.026063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.02875,39.39625],[25.301125,39.56325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.5835,55.13],[11.5035,55.045875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.707875,37.04275],[23.73993,37.28957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.742,53.132],[141.5325,52.837]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,-25.277],[-164.255,-24.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.76,54.841313],[-5.645406,54.935109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-29.503],[-20,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.731125,62.23775],[17.773,62.36775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.783,64.997],[22.69025,64.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.879,13.884],[145.016,13.776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.852,50],[-140.167,49.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.384,56.611031],[-2.249,56.770875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,60],[-39.017,62.947]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.202781,55.981562],[16.356938,55.977063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.559,34.452],[30.092,34.232]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.262,17.292],[116.638,18.166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.003,44.692],[-130.002,46.123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.934,34.3615],[34.31,33.482]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.684,44.30575],[12.69525,44.439875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.181063,40.69975],[18.034406,40.711969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.852121,51.573113],[-3.674,51.392]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.0975,69.6785],[46.654,69.842]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.97075,51.525688],[3.193,51.666]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.99,-44.925],[-55.149,-45.637]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-40],[5,-40.107],[10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.075,4.407],[160,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.134,49.872],[-16.01,49.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.021,29.222],[-154.459,24.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.089152,62.212629],[21.184375,62.250125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.2145,26.3495],[52.997,26.028]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.4305,36.4035],[15.906,36.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.67,42.205],[-124.329,38.656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.034687,60.73825],[21.151,60.705688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.02625,-9.99825],[94.9765,-15.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96,19.5],[-97,22.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.8185,67.727],[12.722125,67.638625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.331,19.129],[-67.038,19.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.822,19.546],[126.916,20.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.2005,64.2395],[-15.517,64.156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.002,41.072],[2.843063,41.006312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.493625,63.190883],[20.38225,63.0945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.532,40.1475],[5.97475,40.308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.87,40.6065],[7.587375,39.788063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.7045,38.94],[5.675,38.824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.594953,54.939547],[12.5305,54.831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.587,4.819],[124.666,4.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.458,42.625],[-25.109,45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.789,58.03],[5.031,58.046]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.795063,43.735625],[13.632375,43.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.825,18.513],[-67.386,18.79],[-66.215812,18.676063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.578,22.223],[-86.363,22.00975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.049,58.044125],[20.966,58.115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.758258,41.651336],[9.718375,41.537062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.092,17.216],[62.607,16.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.2,-13],[137.6,-12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.98,27.996],[-75.891,27.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.121,51.413],[-5.999016,51.063203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.853,53.85],[4.911219,54.004937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.907,57.73575],[17.056625,57.749625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.429375,55.577687],[14.575281,55.729094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94.871,15.084],[96.381,16.392],[96.248,16.653],[96.178,16.76]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.13275,49.067375],[-4.009375,48.941063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.64375,59.22475],[-3.222,58.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.838,43.396],[4.265,43.366]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.774,29.838],[-85.7515,28.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.8995,55.495625],[15.969508,55.613234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.853125,57.20875],[20.61725,57.082688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.368063,42.244563],[-9.458,42.148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.210703,36.538219],[27.145875,36.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.590281,42.749016],[16.713023,42.646078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.931188,57.114],[19.035625,56.98875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.214,45.383],[-8.3475,45.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,20],[173.477,14.999]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.083938,37.123469],[12.106922,37.287437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.9555,49.314],[-2.921625,49.43825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.942,69.577],[15.1885,69.164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.789,56.91],[4.02375,57.04825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.90025,37.57616],[24.98918,37.466242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.277,57.208],[5.20525,56.54725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.81,40.247],[147.882,40.164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.761,-12.463],[148.412,-13.866]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.60375,38.728375],[15.420437,38.801219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-3.091],[2.295,-7.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.436344,38.320094],[21.565,38.25625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.158,20.0185],[-133.669,20.051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.2185,40.756],[29.324,40.742],[29.479,40.75],[29.548,40.748],[29.88225,40.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.831,16.38],[110.447,12.282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.638,32.641],[29.591,33.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.236,38.599],[13.218281,38.426297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.017,62.947],[-36.851,65.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.109,-45.405],[70,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.429,-10.1435],[156.571,-11.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.096453,54.026688],[8.22975,53.878]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.513,36.624],[14.635687,36.517281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.684,35.093],[-125.084,35.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.255,51.683],[-162.794,50.373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.891,59.636],[20.398,59.557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.526,37.715],[-69.97,37.309]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.333,65.166],[-23.26175,64.9965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-8.648],[159.576,-9.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.989,-10.015],[-5.531,-5.587]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.436781,37.155094],[15.314602,37.31057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.2415,37.6335],[7.478,37.60525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.25225,49.061125],[-3.4845,48.993625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.876,-12.079],[-130,-13.081]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.974938,43.106578],[10.09875,43.135898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.699125,39.180375],[19.79725,39.287688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.893,44.7455],[-5.574,44.586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.41925,34.62725],[32.788,34.522]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.051,50.198],[-0.254125,50.21425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.994,60],[-10,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.733,37.3455],[17.341,37.352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.859422,56.530578],[20.914,56.745],[20.976,56.941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,28.238],[-154.235,24.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.423,38.83525],[25.242875,38.81175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.091375,36.280375],[25.95325,36.1585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.0095,58.5025],[19.129,58.642]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.646,41.43525],[17.80275,41.1905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.389375,58.667938],[-2.254,58.4715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.401,30.049],[-67.347,29.613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.944375,55.63025],[12.674594,55.428625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.766,28.286],[-88.472,28.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.577,69.897],[33.402,69.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,40],[-130.001,41.297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.4385,39.8315],[8.291688,39.819742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.807,51.665],[-3.833,51.63],[-3.852121,51.573113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.478,23.834],[-82.2,23.25],[-79,23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.95825,41.044],[1.67475,40.81775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.86375,50.08725],[0.792,50.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.1565,62.379125],[6.3,62.383],[6.389,62.401],[6.46,62.416],[6.836,62.441],[6.857,62.437],[6.938,62.321]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.468247,55.665064],[10.239295,55.738719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.404,-5.46],[168.43125,-2.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.554813,36.5405],[23.585266,36.680078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.232,13.606],[148.248,14.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.083,15.253],[65.081,14.588]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-37.314,37.521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.14,56.61875],[17.026969,56.404344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.627,67.14],[13.44,67.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.512,54.365],[5.417,54.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57,54.6],[-60,53.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.209,-49.357],[70.47,-49.577]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,20],[-114.795,25.084],[-117.411,27.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[112.175,-6.279],[109.279,-6.129],[107.329,-5.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.397,34.267],[-8.20725,34.602375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.0595,36.9845],[27.046266,36.97412]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.290437,50.252063],[-4.317813,50.068906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.7345,34.424],[33.63275,34.32225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.461,70.995],[26.1485,70.976375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.361391,36.752797],[24.273031,36.518203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.9645,38.946],[2.4465,38.7015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.059,45.818],[-8.425,45.0695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.5355,35.9135],[-8.524,35.762]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.7075,34.736],[-12.142,35.517]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.531,-5.587],[-6.449,-6.502]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.262,37.129],[-11.963,37.096]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.001,27.706],[-38.311,28.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.953281,41.528719],[-8.89175,41.38325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,39.176],[-60.001,33.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.75,-39],[174,-37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.474,42.701],[30.796,43.087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.292625,59.019719],[5.2735,58.9055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.03975,51.93075],[-7.014188,51.662188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.61625,35.66425],[25.3785,35.882]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.749,-19.908],[159.976,-15.496],[159.506,-11.18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.063,58.755],[10.890566,58.507941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.552312,61.616937],[19.450031,61.446969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.097313,56.817188],[9.006375,56.871688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.5175,-12.6405],[-163.003294,-13.145794]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.508,66.051],[-23.546,66.046],[-23.709437,66.141781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.001625,37.213],[26.861813,37.206406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.989,-10.015],[0,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.407,20.35],[-68.048,20.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.371,48.489],[-7.159,48.819]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.458,-8.771],[132.313,-6.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.145,58.324],[18.039,58.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.7325,60.902],[18.868203,60.951344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.5765,52.78375],[-5.494,52.868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.809,40.765],[5.29,40.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.352,27.696],[34.223,27.333]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.647938,43.5355],[8.54625,43.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.32575,38.696],[-28.313125,38.79725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.002375,59.752625],[19.930844,59.65625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.535656,52.177781],[-5.624,52.142],[-5.709437,52.145875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.944375,36.861875],[11.88475,37.031375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.99325,42.63725],[16.0925,42.6675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.716555,36.840898],[26.78075,36.93875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.39675,58.696375],[9.513219,58.767844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.10875,49.89325],[-3.022,49.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.4,13],[102.09,9.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.727,60.828],[1.17,60.943]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.235687,36.193938],[14.062,36.259]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.9,-5.9],[110.698,-3.598]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.841,34.87775],[24.17725,34.951813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.537562,43.803438],[14.6575,43.849969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.3005,54.952],[7.216188,54.630812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.05,8.4],[120.46,8.077]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.0965,-9.3795],[105.545,-9.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60.001,-37.597],[57.523,-37.714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,12.135],[-108.98,10.008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.65425,20.05575],[-60.01975,19.973625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.901535,59.690625],[23.810187,59.548]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.588062,39.093312],[0.542,38.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.78925,42.880656],[-9.698,42.733],[-9.668,42.695],[-9.609,42.539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.1675,37.705],[-9.241,37.2355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.477,67.725],[9.69625,67.809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.079594,41.96375],[16.0415,42.124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.822836,58.459117],[18.164813,58.435437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.0055,5.052],[150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-20],[-30,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.725,70.31],[19.543,70.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.127938,54.944875],[15.985289,54.818844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.259,37.344],[5.969,37.264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.454,37.345],[15.314602,37.31057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.116328,40.562297],[14.235875,40.468812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.43,32.3025],[28.9205,32.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.920203,44.198094],[15.010719,44.154125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.3135,33.346],[-76.97,32.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.823,35.719],[13.888,35.9465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.601,41.943],[163.016,42.291],[166.697,42.774]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-174,-3.833],[-171.652,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.5375,27.85875],[-93.136,27.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.944,40.166],[13.752,40.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.809,36.103],[25.638969,36.126844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.961781,38.918188],[25.828234,39.089973]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.8195,49.908],[-6.5465,50.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2275,37.059],[14.2815,36.78625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.539,-54.669],[-56.698,-57.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.715625,52.0255],[2.96625,52.007125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.2465,36.04875],[-6.41675,36.40525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-40],[-39.998,-35.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.701,54.57],[12.8565,54.547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.771,65.009],[23.93175,65.16575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.946,-7.65],[119.551,-7.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.623188,38.008844],[24.429336,37.93318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.444109,42.7225],[10.173445,42.647398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.6905,58.6615],[9.754,58.5605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.589,70.412],[39.101,69.5915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,-6],[11.891,-5.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.287602,40.316414],[13.4915,40.277438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.5,-21],[-170,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.779,59.557],[150.491,59.519],[150.256,58.972],[150.314,58.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.597,52.706],[-30.965,53.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.757711,55.171898],[18.830938,54.952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.878,54.961],[-0.765,54.8335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.780062,59.664125],[23.695156,59.727656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.001,-25.478],[154.257,-27.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.4165,54.092],[1.012875,54.0385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.055,39.596],[-68.792,39.181]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.586,2.888],[128.15,2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.4245,58.776875],[-1.229,58.726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.78125,49.274687],[-2.9555,49.314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.896625,40.681125],[9.882875,40.3875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.149953,53.494234],[-3.022344,53.425938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.575063,56.531188],[11.638437,56.337063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.29,44.7445],[13.2635,44.880875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.3095,31.347],[-12.333,31.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.028,39.246],[-72.868,39.294]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.373,37.529],[-69.70175,37.131]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95,-15.17],[-92.787,-12.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.148,37.509],[0.057,37.5065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.57025,39.951344],[24.6765,39.785812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.5895,38.60175],[11.70975,38.57625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115.441,0],[-120,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.991375,38.028625],[25.8535,37.8855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109,16.1],[107.996,18.294]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.293,34.333],[-8.392,34.002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.372,54.856],[18.253312,54.956063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.461437,42.272],[10.298,42.3805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.569039,45.08082],[13.663,45.004],[13.674945,44.780828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.63,16.959],[-87.466,17.619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.326141,56.815695],[18.205312,56.75725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.3335,38.78825],[26.224,38.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.001,53.8],[-167.472,51.486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.752455,43.003715],[9.643016,42.992141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,-35.386],[-34.666,-35.073]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.397,44.039],[36.399,44.722]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.575281,55.729094],[14.585977,55.589227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.35,20.4],[111.152,19.349],[110.383,18.361],[109.219,18.017],[108.461,18.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.001,-26.396],[101.752,-27.492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.773984,61.835141],[4.556031,61.746641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.848,43.057],[33,43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.048,20.787],[-67.636,21.288]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.321,20.154],[-66.473,19.9995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.466,-7.872],[125.7,-8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.766,44.668],[13.653516,44.614742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.852,38.87],[-70.459,39.182]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.904,29.648],[-160.364,29.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.708922,54.714859],[-5.63925,54.808375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.012875,54.0385],[1.17,54.124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.87125,40.131875],[9.81725,39.933875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.108,-48.335],[70.002,-43.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.33,34.987],[-13.131,35.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.494,42.734],[7.095,42.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.16,60.814],[19.152625,60.6845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.038,47.179],[-176.726,43.643],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.195875,54.295687],[15.0855,54.278],[14.974,54.254],[14.772875,54.1965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.599,-3.445],[-170,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94.9765,-15.147],[90.038,-19.9015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.46375,55.110625],[16.516,55.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.065,55.644],[5.075,55.507]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[87.411,-17.548],[86.99,-17.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.90075,57.728063],[9.712203,57.602812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.860656,38.392594],[13.039625,38.267437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.875133,58.064367],[18.83525,58.345438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.137375,68.139],[14.242,67.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.979,40.886],[-9.074,40.596]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.451637,38.456365],[15.52175,38.380344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.25,-33],[153.5,-31],[153.8,-27.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.61725,52.0575],[1.719156,52.181344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.012078,56.967609],[8.023375,56.841187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.51,54.866],[5.345,54.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.5995,59.4905],[26.779,59.749],[26.726,59.907]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.01,34.751],[140.312,34.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.9445,56.879],[20.224305,56.801758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.199,43.806],[148.342,41.327]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.083,70.934],[27.393,71.116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.746,35.132],[27.655,35.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.693188,48.387812],[-5.55525,48.37175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.52,64.738],[177.64,64.588]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.68259,40.563051],[14.631,40.43525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18,21.001],[-14.409,26.516],[-11.959,29.521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.775813,58.775969],[17.836891,58.662578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.64625,58.70025],[21.46975,58.725672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.0745,39.97075],[5.246187,40.040219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-174.456,-24.723],[-170.525,-26.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171,-46],[175.538,-42.975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.49625,66.1105],[-20.263,66.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.359,37.154125],[26.167406,37.277938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.711844,45.123281],[12.446938,45.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.4595,58.1035],[17.593469,58.146406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.145,25.595],[-77.709,25.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.416,58.307625],[11.309773,58.28552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.852,52.832],[2.86,52.696]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.858,36.624],[27.848625,36.501473]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.373,6.54],[119.9,14.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-148.819,21.252],[-145,25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.058625,53.893563],[0.746625,53.780875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.727,45.163],[29.982,45.18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.8,-10.5],[130,-10.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.95875,43.159688],[6.813,43.15775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.5945,40.452],[-71.2955,40.441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.25,44.501],[-63.5,44.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.375688,37.894719],[12.391813,37.783563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,3.288],[-100,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.668,56.964],[4.921,57.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.188063,43.259031],[6.95875,43.159688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.874,27.047],[-157.5085,21.3435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.120004,55.848078],[16.290563,55.696742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.2755,36.9965],[3.06775,36.97475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.165625,43.846063],[10.269317,43.531904]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.134,11.607],[43.117,11.614],[43.425,11.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.7,24.3],[-85.186,23.564]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.241875,61.227438],[17.36,61.113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.853,-14.861],[84.281,-15.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.81725,39.933875],[9.968,39.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.469781,37.784891],[24.613969,37.726234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.95793,64.142781],[-22.114688,64.15675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.624656,57.279063],[7.619,57.11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.267156,36.273813],[26.213,36.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.394156,37.070969],[26.238844,36.939406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.171,73.974],[75.137,74.346],[70.463,74.284],[60.742,71.746],[58.328,70.879],[57.965,70.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.615,42.559125],[9.759906,42.419344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.343438,50.175062],[-1.56425,50.085125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.343812,56.340094],[16.147781,56.264937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.6855,34.6605],[28.9875,34.5585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.779,48.546],[-6.976,48.527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.384,-35.018],[-16.631,-33.663]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.68975,57.8705],[23.793375,57.497812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.796031,48.2765],[-4.852625,48.384375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.225,59.805],[-165.813,59.545],[-167.82,59.179]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.9955,56.304],[12.155812,56.310563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.378145,18.715595],[-76.56,18.744]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.02175,60.7085],[19.069625,60.563875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.4565,47.093312],[-2.3445,47.160375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.46925,60.756625],[19.40525,60.632625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.696,53.385],[-150.844,53.472]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,29.577],[-60,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.22825,58.537625],[17.498,58.46775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.18325,57.69425],[-0.4905,57.77225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79,23],[-82.066,24.077]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.01,33.272],[139.698,34.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.574,40.098],[-50,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.082,36.146],[25.95325,36.1585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.573,40.704],[27.268,40.596]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.51375,63.171],[19.402,63.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.8,26.4],[-79.89,26.793]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.0195,40.792],[25.082,40.947],[25.2005,40.8345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.211,48.93775],[-4.13275,49.067375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.96,43.55375],[-1.92,43.675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.001,-15.945],[80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.272,40.213625],[23.211062,40.02175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.423625,45.31575],[13.33,45.266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.092,34.232],[29.6255,34.0145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.3135,37.865],[-23.371,36.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.79,21.603],[-83.036,16.376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.19525,52.051812],[2.93675,52.1415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.274688,36.661625],[23.272176,36.528695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.221,30.478],[130.9,31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.419,62.3635],[18.999,62.3385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.625234,-7.089904],[72.593,-7.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.895,69.158],[14.69175,69.6205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.054,-10.036],[64.0745,-13.939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.786531,58.940641],[9.886453,58.776234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.471,57.76875],[-2.97825,57.921625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.963688,43.633125],[8.811312,43.297313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.534906,59.770281],[5.52375,59.881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.5145,5.516],[-11.232,5.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.757711,55.171898],[18.803187,55.4435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.949,37.77275],[26.76,37.8285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.524,41.346],[-170.534,41.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.052,48.628],[-6.976,48.527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.99325,42.63725],[15.838797,42.578672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-30],[-124.573,-25.426]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.823,27.118],[-78.182,27.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.527,-18.019],[169.176,-17.558],[169.2655,-17.0765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-10],[80,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.022781,57.076859],[12.026375,56.91575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.166,34.184],[-8.392,34.002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.3945,55.3345],[-1.42525,55.514031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.080562,55.967969],[16.202781,55.981562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.168438,57.759125],[19.332,57.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.682125,-17.353625],[-150,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.881,-56.356],[-66.58,-56.479]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.498,58.46775],[17.822836,58.459117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.988,54.545],[6.927,54.366]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.675625,49.74425],[-4.391438,49.57325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.672875,56.284438],[-5.7985,56.2805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.057125,56.24225],[19.277,55.919]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.890781,50.790844],[0.768,50.744]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.533844,56.391094],[-5.672875,56.284438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.276992,59.333898],[23.064625,59.397875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.385,-55.361],[-72.858,-54.847],[-74.034,-54.076],[-75,-53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,-35.386],[-120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,16.669],[149.999,15.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.36323,37.119352],[24.397195,37.265648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.996,60.532],[3.849,60.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.244,56.177],[5.378,56.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.880937,55.903312],[6.997,55.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.965,28.037],[123.096,28.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.18575,38.70825],[8.4085,38.6375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.13275,57.338],[23.382875,57.420875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.109875,58.472375],[19.782,58.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.631438,41.748188],[10.472,41.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.751,38.33],[15.188937,38.332734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.193,46.139],[-1.33975,46.118]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.06075,52.44525],[3.33,52.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.267,-4.789],[-90,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.9605,29.97825],[-30,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.77025,34.485],[30.838,34.448]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.2315,28.4795],[-15.992,28.395],[-15.9515,28.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.949,41.754],[-9.951,40.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.938492,55.439906],[7.86725,55.2665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.328,45.723],[141.3995,51.282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.024344,55.9795],[6.997,55.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.377,35.085],[-76.3135,33.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.002,53.5],[2.900187,53.406937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.092,44.474],[15.276,44.342]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.138437,39.238812],[8.0245,39.307]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.921125,44.238812],[9.031625,44.250141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.49425,60.75125],[4.487125,60.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.383008,44.545586],[12.3275,44.682875],[12.551375,44.844875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.002,46.559],[-50.001,47.579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.941,47.454],[-7.071,46.90425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.094,26.292],[-91.9205,26.21525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.308,7.359],[-135,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.734,27.908],[-87.055,27.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.113,16.507],[112.965,15.728],[111.478,12.524]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.491,38.968],[-72.510625,38.706875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.83,42.684],[-9.949,41.754]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.545,41.648],[-145.112,45.402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,2.698],[-170,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.001,41.791],[-31.941,42.073]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.95025,34.77925],[32.097,35.017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[83.39,17.622],[83.657,17.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.956125,57.266875],[18.931188,57.114]]}},{"type":"Feature","properties":{"pass":"dover"},"geometry":{"type":"LineString","coordinates":[[1.423472,51.172862],[1.584432,50.986559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.390062,44.217687],[13.477141,44.123984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[84.194,-14.352],[86.761,-13.377]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.6445,66.2155],[12.364,66.27925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.39775,57.53725],[19.346,57.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.329,15.214],[130,13.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.1,12.7],[-87.665,13.093],[-87.832,13.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.723727,37.156914],[26.747031,37.257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.549,25.289],[51.887,25.374]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.78675,38.803],[14.817625,38.910875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.5185,37.229094],[13.531,37.286]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.17725,55.0245],[11.022891,55.124469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.27,36.733],[-12.134,36.717]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.691469,38.299062],[20.8165,38.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.7675,34.5505],[-13.5605,34.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.999719,43.225391],[16.630957,43.241266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.512,40.972],[27.543,40.838]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.998,-34.051],[-150,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.003,56.534],[-19.63,56.624]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.482844,49.987563],[-1.252438,50.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.695688,37.982687],[11.6695,38.146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.1295,54.8555],[8.01425,54.88775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.5665,54.5805],[8.478031,54.635594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.439,1.46],[-140,4.836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.024,36.038],[-8.983,35.909]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.155,60.667],[-6.1,60.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.692,59.99],[22.5655,59.91625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.102,-45.393],[133.173,-47.282],[130,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,60],[-45.247,55.432]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.58,55.503],[1.147,55.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.585375,35.853125],[27.31343,36.005234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.654125,54.696687],[15.658469,54.879063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.355875,43.0495],[17.182969,43.11575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.709,59.012],[4.802,58.7745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.663,34.903125],[33.819,34.539375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.563,39.075875],[7.52225,38.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.05875,54.8595],[13.172453,54.831187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.9465,51.4375],[1.112977,51.465672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.903,37.617],[16.52325,37.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.726344,50.178594],[-0.616695,50.238164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.117568,50.834391],[1.305336,50.890065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.994,34.653],[28.20975,35.32325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.64975,39.15775],[9.547625,39.066125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.724,39.5465],[23.75625,39.75375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.65375,57.411687],[20.5295,57.278125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.187687,42.506812],[17.215,42.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.54525,59.088219],[21.710375,59.180125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.051451,37.548637],[23.901129,37.534844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.485094,37.327984],[26.292,37.2765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.312,32.568],[-125.794,33.382]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.4,60],[21.321125,60.134563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.51975,57.5545],[-1.369,57.70275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.420078,37.448047],[12.347,37.333]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.78,37.4195],[-11.741,37.578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.011582,50.526684],[-0.216875,50.345875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[148.972,40.823],[150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.848,49.255],[-1.949625,49.013875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.584,43.611],[37.017,44.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.683,3.951],[125.5,1.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.577047,49.711531],[-1.8185,49.741]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.719,56.387],[4.498375,56.226125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.391,29.631],[-15.159,30.206]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.782812,39.842437],[26.196727,40.064031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.668,37.848],[150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.1715,62.37],[18.2595,62.2645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.6665,65.2155],[22.577,65.306]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.625,40.051125],[0.963375,40.08925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.417,57.543],[23.27125,57.48325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.90675,57.777],[21.154875,57.74375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.659,11.087],[-99.578125,15.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.004,54.756],[6.988,54.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,50],[-162.106,48.106]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.699,-16.845],[-123.865,-20.053]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.175438,48.301625],[-6.565062,47.619125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.012125,43.311875],[16.071875,43.207687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.371938,61.606813],[21.172125,61.551312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.294469,50.076906],[0.2265,50.350313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.113,16.507],[118.162,16.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.548,53.17875],[-4.970297,53.366312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.17425,38.0435],[0.09625,37.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.34,63.74125],[21.798,63.666]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.82375,38.788313],[9.06375,39.069203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.064375,36.371125],[21.9385,36.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.8,34.426],[13.549,34.763]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.458,-4.62],[55.3,-4.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.372,45.281],[-1.412,44.988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.691,47.88125],[-7.22275,48.4845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.755,38.065],[-9.6485,37.702]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.46,-11.935],[130,-10.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.491375,49.795438],[-5.652,49.887]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.174,53.307],[-34.342,54.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.229,34.885],[21.069,35.196]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.197437,44.300875],[13.192,44.439],[13.179,44.461],[13.144,44.525],[13.090375,44.612375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.490312,57.152625],[11.516864,57.31915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-50],[-134.888,-45.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.324687,38.865562],[9.181641,39.024703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,20],[-135.307,15.473]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.306,31.505],[-72.129,31.169]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.63,-30.366],[-47.657,-30.436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.692,-10.002],[67.598,-10.018]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.29175,54.825688],[15.171109,54.987867]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.7,5.932],[-83.034,6.602]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.156,60.483],[-1.046,60.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.565992,43.739602],[15.522234,43.606953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.392,34.002],[-8.692,33.729]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.812,41.074],[17.643062,41.204937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.571437,54.234938],[15.6235,54.3405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.349,32.17],[30.43,32.3025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.77,21.879],[-65.478,19.888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.336,55.584],[18.300562,55.791313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.142359,36.045219],[23.277719,36.044219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.684,35.093],[-124.342,35.594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.568037,37.037578],[26.43,36.95325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.375625,54.6225],[14.276641,54.508656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.186,23.564],[-85.949,23.337]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.308477,38.011313],[12.140031,38.108703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.7415,55.4375],[3.3,54.975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.567266,35.916988],[14.748,35.8695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.096,47.632],[-6.9525,47.60375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.828,34.002],[-17.284,33.179]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.631,11.438],[-130,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.055813,54.9415],[14.9195,54.919875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-40],[52.143,-42.287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.5705,52.5285],[-5.5685,52.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.107,50.757],[1.225828,50.785375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,50],[-158.305,51.776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.983172,37.421102],[23.966328,37.293547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.399141,55.309422],[7.404,55.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.322,29.248],[-87.346,29.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.186,23.564],[-85.887,22.079]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.4555,54.1435],[11.581,54.15825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.083,35.493],[17.84575,35.60475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.513219,58.767844],[9.6,58.71075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.802,54.52],[-167,55.427]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.5915,37.8655],[121.9535,38.697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.7885,44.149],[28.799625,44.006]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[101.914,76.405],[100.936,76.542],[100.5415,77.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.801,34.142],[-64.37,33.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.146242,38.676023],[15.078305,38.55825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.697,13.947],[-142.368,12.706],[-140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.44,33.877],[17.668,33.938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.6455,53.095],[2.5255,52.8755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.09875,43.135898],[10.052805,43.031813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-50],[-30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30,-40],[30,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-174.279,34.652],[-170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.4785,44.03925],[-5.397,44.157],[-4.893,44.7455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.313,-33.952],[-47.249,-35.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,20.694],[-170.001,25.433]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,49.813],[-139.74,49.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.565992,43.739602],[15.347188,43.719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.925,55.994],[18.963,55.778125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.028,-29.048],[168.064,-29.074],[168.477,-28.561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.27725,49.801125],[-5.088035,49.877716]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.658359,36.855695],[24.59,36.708375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.564703,38.197852],[12.452187,38.042813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.839,16.706],[-164.774,14.953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.083375,55.649687],[20.184,55.886],[20.225,56.070875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.898,50.123],[-29.218,50.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-50],[90,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.72475,62.21775],[20.378,62.176]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[155,25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-50],[-124.888,-45.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.028,-35.201],[-155.268,-35.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.120941,37.270809],[24.121855,37.413418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.945,-24.182],[77.601,-22.543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.781688,36.602187],[-4.103,36.46825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.891,1.805],[57.544,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,39.341],[-60,39.176]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.98675,54.238094],[14.10525,54.3485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.405,15.26],[-140.001,15.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.09175,56.89825],[6.951375,56.953625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.458,30.8],[-71.538,30.4665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.544219,51.431562],[1.807,51.453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.432875,41.806375],[8.289531,41.935969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.479,55.499781],[19.608,55.547125],[19.727406,55.614375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.9975,62.7195],[19.327,62.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.076,10.029],[-40,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.7,53.1665],[4.626891,53.269203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.864,5.523],[163.075,4.407]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.989375,36.541062],[-2.55,36.49975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.546,-40.032],[171.139,-39.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.336,43.8555],[13.483062,43.656437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.911125,35.455625],[26.103,35.57525]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-111.296,74.145],[-115.432,74.196],[-120.547,74.72],[-126.042,74.62],[-126.6705,74.5495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.754891,56.695094],[11.753,56.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.75225,58.339875],[20.644,58.291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.10375,40.953],[8.250234,41.150875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.155,41.796],[11.245156,41.879453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.501,48.568],[-125.502,48.267]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.053812,57.174594],[19.780969,57.144813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.902,58.743],[12.3455,58.391],[12.124,58.197],[11.991,57.725],[11.849875,57.6765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.434375,55.64575],[6.880937,55.903312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.187313,59.176812],[19.4485,59.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.755,31.203],[29.455,31.788]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.43,40.173437],[0.957,39.986]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.53875,41.25775],[2.843063,41.006312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.6,-19.6],[118.157,-18.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.8,-27.15],[154.246,-27.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.3,27.8],[121.965,28.037]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.786938,51.699687],[1.872,51.56175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.097,20.352],[-92.325,21.041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.436063,57.685312],[7.457375,57.510875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.245,25.99],[-157.762,21.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.72682,48.568773],[-5.706176,48.730629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9815,59.394],[-2.0995,59.7035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.9205,26.21525],[-91.691,26.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.866594,58.323113],[5.632688,58.402563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.244,-34.614],[106.215,-32.111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.73725,35.47775],[-8.168,35.381]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.246,55.347],[-7.4955,55.4355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.605,49.32],[-12.0645,49.9135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.9145,13.847],[120.05,8.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.423,38.83525],[25.40775,38.70975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.396,26.7005],[-72.587,25.851]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.458,26.34],[-79.38,26.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.938,55.334],[147.904,54.006]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.02875,39.39625],[25.116,39.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.258,-27.962],[-40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.633469,50.502023],[-1.502,50.492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.082187,56.717187],[7.963188,56.625062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.732742,37.148824],[24.678086,37.380227]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-70.29,-53.61],[-69.509,-53.444]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,28.486],[-140,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.03875,38.08375],[11.286125,38.122125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.967219,38.05525],[24.854656,38.153594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.5,37.4],[125.6,34.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.498344,44.260625],[8.631047,44.227828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.434617,39.246836],[25.341961,39.129945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.763,46.686],[35.392,46.211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.94525,37.9905],[-12.152625,37.529375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.86425,36.047],[13.75,36.096],[13.40325,36.26075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.657375,41.421375],[12.754,41.327]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.985289,54.818844],[15.855031,54.955906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.7675,48.253],[-6.94,48.167]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.737,-2.968],[122.002,-2.036]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.66075,38.5265],[8.516,38.253]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.858,46.715],[-54,46.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.15475,38.5675],[25.014125,38.51025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.682,7.318],[102.09,9.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.845844,57.967062],[7.0845,57.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.822063,55.28275],[13.816,55.077],[13.781,54.9735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.21525,56.34525],[-2.158,56.169]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.899,20.346],[-73.837688,19.982813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.166329,55.353328],[-5.173125,55.031188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.269625,51.369531],[-3.113609,51.407172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.001,36.448],[-30.002,34.309]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.6715,60.750375],[4.49425,60.75125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.519,27.66],[49.091,27.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.291688,39.819742],[8.17475,40.54075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.1515,35.856],[26.148,35.97375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-60],[-30,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.332,-24.658],[-155.46,-24.812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.223,27.333],[33.982,27.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.089,40.331],[-9.198,40.243]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.766,57.352937],[10.881344,57.460531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.352219,38.52725],[13.572,38.646]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[102.893,1.498],[102.594,1.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.713,35.992],[33.618,35.824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.697,35.8635],[34.82225,35.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.518703,45.136062],[12.446938,45.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.081813,36.791625],[24.923813,36.666719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.268,37.992],[11.572047,37.841047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.457,65.933],[37.6685,65.542]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.291688,39.819742],[8.0755,40.187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.51843,54.966344],[18.757711,55.171898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.004625,44.778375],[-9.1755,44.5615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85,-25.277],[-90,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.722125,65.969375],[-20.5945,66.034]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.71775,39],[24.82725,38.9685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.834,34.914],[35.399,34.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.624,52.588],[-9.48375,52.600938],[-9.341,52.589],[-9.1815,52.61225],[-9.0755,52.63525],[-8.965375,52.6645],[-8.806,52.674],[-8.693,52.654],[-8.625,52.668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.0625,60.309375],[21.948094,60.237562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.3085,38.6065],[0.2715,38.46075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.445375,60.297312],[26.413812,60.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.818,55.0945],[3.23,54.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.74625,52.283687],[2.61125,52.291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.75,-39],[173.9,-40.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.332875,49.78975],[0.18675,49.8325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.4265,64.6595],[21.631219,64.601719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[175.2,-35.3],[176.9,-36.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.752359,57.575352],[-1.586781,57.449531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.00075,54.44225],[5.029,54.344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.67475,40.81775],[1.511,40.82075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,-35.386],[-170,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.085875,42.980563],[3.182,42.726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.999,-14.46],[-90,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.966,67.103],[13.325,66.852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,35.386],[-170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.01075,17.68825],[136.61,16.758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.215,39.644],[6.555,39.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.85,17.123],[-62.026,17.298]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.890125,52.232375],[2.93675,52.1415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.39,41.727],[-169.524,41.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.489,13.752],[100.499,13.74],[100.602,13.521],[100.4,13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.696,41.9715],[10.5335,42.158]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.7805,48.216],[-5.744688,48.002531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,0],[3.395,1.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.579297,36.488062],[26.72025,36.530187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.9755,38.4465],[3.786,38.64],[3.394,38.753]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[108.021,77.731],[112.954,77.096],[114.241,76.783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.6035,37.025],[-9.689,37.364]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18,21.001],[-23,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.198,-28.298],[-19.546,-29.571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.341164,45.222477],[14.226801,45.103111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.1525,-5.892],[117.188,-5.453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.825,32.765],[23.432,33.734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.889,-45.404],[-40,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.304,-39.286],[150.055,-37.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.984,38.23],[-10.026,38.384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.584375,36.044],[24.479688,36.063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.008375,41.3605],[9.0925,41.300125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.542,37.14],[-9.4085,36.9005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.348,-5.404],[90,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.644,57.605],[19.6455,57.4555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.854656,38.153594],[24.846688,38.314312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.304,40.266],[14.488938,40.038406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.111,43.466],[14.4365,43.29025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.027,35.3785],[-8.7705,35.4235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23,65],[22.794375,64.834375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.32,40.878],[138.342,40.917],[138.616,41.406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.845,41.2535],[4.9295,41.66625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.014,61.7535],[18.799,61.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.557,55.704],[9.723,55.681],[9.81225,55.653813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.053,56.575],[9.06,56.582],[9.188,56.702],[9.1875,56.70775],[9.097313,56.817188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.33575,60.18075],[26.346,60.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.2,-7.25],[116.349,-7.263]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.793,37.282],[20.6925,36.747]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.379,50.127],[-0.336625,49.931]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.628,51.853],[2.50275,51.828812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.224312,36.567625],[-9.188875,36.739812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.5625,36.3595],[21.777297,36.300844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.527938,41.293125],[9.526563,41.411]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.077887,58.984262],[11.092,58.861]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.608,47.655],[-140.002,46.614]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.2105,31.921625],[32.889,32.336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.95,36.054],[16.085,36.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.722437,60.304438],[20.75525,60.08475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.111,58.083],[0.483,58.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,0],[-104.3,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.5225,66.0455],[-21.37075,66.083375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.695156,59.727656],[23.901535,59.690625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.144164,50.056672],[-4.1355,49.899156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.6,20.933],[-85.874,21.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.026,-43.835],[-56.927,-43.896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.245125,60.090375],[19.513,60.358]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.766063,51.692312],[-8.253219,51.73225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.937,27.583],[-96.934,27.693],[-96.859,27.734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.347,29.613],[-67.126,27.642]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.318828,37.996062],[24.429336,37.93318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.306,52.773],[3.574,52.851]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.3285,-12.5965],[141.2,-13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.069187,41.938125],[10.0165,41.837688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.743,49.727],[-20,49.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.235687,36.193938],[14.050775,36.267631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.305,63.475],[21.01275,63.1935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.0905,40.2595],[2.305813,40.422359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.592,42.665],[17.232875,42.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.001,15.001],[-134.966,15.2035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.106,69.821],[30.162,69.89],[30.2135,69.915],[30.281,69.942],[30.342,69.9865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[92.507,-2.543],[96.716,-4.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.110094,53.333734],[-6.224,53.348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.951,41.016],[-42.618,42.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.73,35.396],[13.823,35.719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.006125,36.64475],[23.988875,36.801625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.23075,55.37825],[5.8995,54.911]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.626563,48.837094],[-1.795,49.367]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.84,34.933],[-72.718,34.692]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.91075,60.07075],[3.79775,60.103125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.633813,54.423781],[11.760094,54.309625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.891,59.636],[21.065,59.621],[21.2675,59.591437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-5.001],[70,-7.344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.884,14.558],[-18,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-117.107,17.249],[-120,17.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.514,27.394],[-67.998,27.486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.358,62.687],[-16.224,63.021]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.265375,38.280375],[22.37,38.242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.8,44.1],[-5.798937,43.722375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.60725,54.06425],[8.455625,54.064375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.002813,59.812562],[24.843312,59.674188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.192445,36.411152],[22.098,36.4535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.5,64.3],[-166.257,64.589]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.120941,37.270809],[24.040229,37.114312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.556,-9.023],[176.352,-9.268]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.895,68.985],[16.443,68.88],[16.648562,68.89125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.6745,37.884],[15.840234,37.870719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.64,56.828],[4.5905,56.392625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.699,51.623],[-5.356766,51.684719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.97475,40.308],[6.87,40.6065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.547,28.246],[-77.23125,27.989]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6945,59.2625],[5.93,59.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.39825,44.21375],[14.3695,44.104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.826,35.5],[-7.335,34.942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.001,53.8],[-164.256,54.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.001,-38.7],[144.27,-39.301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.889,58.701],[-3.69,58.702]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.297875,51.794812],[3.312875,51.918125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.3,-34.4],[166.075,-35.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.191,55.453],[4.339625,55.3235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.202,21.697],[-71.917,22.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.26625,38.835375],[8.322,38.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.085,53.797],[1.6645,53.90625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.732074,35.143287],[23.841,34.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.949,64.701],[-168.04,64.274]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.055375,31.709125],[32.889,32.336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.677,21.5465],[-73.7265,20.92325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.706937,58.325312],[18.5845,58.22875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.436188,45.1285],[14.432875,45.286875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.8355,59.968],[5.700063,59.883688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.661,19.224],[-66.802,19.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.373,37.589],[3.295,37.477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.601281,48.656219],[-5.72682,48.568773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1,62],[4.1055,61.7375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.554,59.948],[4.3505,59.89425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.51,56.043],[17.636,55.946188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.782,-10.031],[98.87,-8.892]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.7885,44.149],[28.707656,44.083062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.08,34.4945],[-13.7675,34.5505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.0195,40.792],[25.049,40.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.102625,48.304969],[-5.010438,48.2005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.59,56.784],[-165.253,56.508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.8,29],[-16.12325,28.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.802,14.679],[69.999,16.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.9805,53.5575],[-3.831844,53.561281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.164125,48.943938],[-3.4845,48.993625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.433,54.173625],[6.399,53.978]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.801,-19.342],[178.256,-19.043]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.524188,55.865313],[7.387391,55.698687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.78675,43.0515],[16.462125,43.14575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.1185,61.632],[17.3,61.615875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.283,37.299],[4.916,37.183]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.9,52.6],[163.1,54.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.694,-7.292],[119.505,-7.529]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.967812,50.461156],[1.125125,50.642031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.61925,-16.745],[-10,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.320789,43.409773],[8.41625,43.609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.9,51.718],[1.786938,51.699687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.175812,54.2445],[11.043125,54.133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.964437,36.909937],[26.87125,37.004375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.7305,64.671],[23.4625,64.7145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.257906,44.431859],[14.237156,44.597531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.179,34.52],[33.634,34.448]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.711,55.003],[-25.249,55.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.29,40.215],[5.408,40.741]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.997,60.296],[20.722437,60.304438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.57625,67.44925],[13.789,67.3915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.22775,38.90675],[9.324687,38.865562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.74275,38.1785],[22.7035,38.082375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.613,-54.612],[-63.965,-55.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.139,-39.753],[169.311,-38.168]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.794875,44.761],[-5.841,45.159]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-40],[75.435,-35.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.3045,66.399],[-16.61625,66.533812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.312141,42.964672],[16.375125,42.85225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-30],[80,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.889,32.336],[33.142,32.541]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.029,36.125],[21.8645,36.1305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.399094,65.462063],[22.259,65.443]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.551312,54.743437],[19.627875,54.857813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.314,58.584],[150.9,58.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.093688,37.843187],[25.813418,37.781859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.258,8.292],[158.3535,8.38625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.88625,40.770875],[-8.98075,41.019875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.334,43.036],[14.50525,42.98875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.366,39.853],[2.364,39.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.495,36.948],[2.054,36.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.986,55.284],[18.98075,55.10025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,-50],[155.464,-45.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.881906,56.361031],[7.076625,56.4355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.617041,57.656064],[21.616,57.656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.3895,34.2655],[-13.952,35.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.699125,39.180375],[19.8385,38.7775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.4695,39.878],[23.75625,39.75375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.33775,36.96975],[12.203,36.956]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.114062,43.681008],[14.999375,43.83025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.406,29.34],[-87.346,29.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.2745,38.6365],[0.16275,38.45525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.153844,50.273531],[-3.9985,50.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,-35.386],[-110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.015,34.517],[25.609,34.523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-101.995,68.089],[-101.61,68.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.356414,43.345578],[10.344367,43.149219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.61125,53.64325],[0.5225,53.7095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.72325,58.458625],[9.571,58.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.822,24.446],[-81.825,24.219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.645,25.612],[-40.001,27.706]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[83.619,-33.935],[87.384,-32.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.043812,54.524969],[10.178896,54.620967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.083938,37.123469],[12.1615,37.0485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.089062,49.832188],[-2.28575,49.881172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.061625,57.933375],[9.214187,57.974]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.544,40.311],[-9.82025,39.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.39,65.021],[-23.489,65.058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.531,55.897359],[15.608156,55.73575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.531,43.771375],[8.6315,43.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.781938,41.724312],[11.8425,41.6065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.108,60.032],[28.0355,60.15975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.2815,18.7005],[-76.378145,18.715595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.8285,35.994],[-73.4325,36.1165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.028,66.331],[7.402,66.383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.304,59.925],[25.4085,59.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.514,27.394],[-67.038,22.017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.598063,41.213188],[16.61325,41.319875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.028,10.173],[108.702,8.319],[104.708,1.7735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.055,-32.408],[-47.768,-32.377]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.055578,55.648859],[10.239295,55.738719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.979375,53.474625],[4.83625,53.406227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,0],[88.904,-1.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.844,53.472],[-151.58,56.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.22,9.942],[-83.045,10.642]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.472125,39.507562],[25.598969,39.381262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.442,15.907],[41.377,16.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.676,23.431],[-57.747,22.389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.848625,51.372312],[3.605855,51.41868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-10],[-175.816,-11.634],[-173.659,-12.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.294,55.175],[5.33125,55.374875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.774,11.614],[-61.7985,10.6865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.509242,57.924437],[11.470937,57.634844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.003281,58.918906],[9.886453,58.776234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.213125,39.891875],[12.0155,39.81875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.36,59.4475],[21.601,59.246375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.23075,58.204],[21.181469,58.107875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.171109,54.987867],[15.055813,54.9415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.851,56.53925],[18.959125,56.402125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.71725,57.714875],[-1.643625,57.86225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.082875,49.795625],[-4.241,49.851]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.04,64.274],[-168.26,64.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.282125,53.973125],[1.169,53.9455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.358,36.789],[11.719938,37.163031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.1485,56.8475],[17.175875,57.011625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.147,63.971],[-15,64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.123682,37.488928],[25.16417,37.260051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.21575,58.4375],[9.155938,58.25475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.861,62.06975],[20.920625,61.952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.916,52.562],[6.08625,52.512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.616695,50.238164],[-0.434,50.0555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.64225,42.827],[8.750953,42.840031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,0],[-160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.535,65.253],[37.6685,65.542]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.266,-31.175],[115.133,-34.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.763875,64.873109],[-13.916555,64.593055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.984,40.314],[24.2265,40.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.373,56.645],[19.76325,56.776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.715,64.5025],[23.871,64.59275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.616,65.405],[22.577,65.306]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.372,60.225],[21.530812,60.227469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.972016,52.231766],[-5.825875,52.152125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.459,-20.406],[159.734,-20.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-177.578,27.621],[-178.61,27.897]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.78725,40.66125],[-8.73,40.649]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.397781,53.62625],[-3.534063,53.675375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.192445,36.411152],[21.926,36.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.554,-31.408],[156.548882,-31.410533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.508,35.498],[-15.638,35.281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.886,-16.567],[56.545,-18.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.442,55.811844],[16.246688,55.863188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.7275,55.938],[10.655414,56.058281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.671016,50.264617],[-4.593281,50.174094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.374,34.005],[-72.516,32.769]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.65925,63.786],[21.3855,63.6495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.633,57.47],[-7.125063,56.87325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.54,49.401],[-5.426,49.442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.125203,44.1815],[13.991812,44.193875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75.111,-45.404],[70.696,-49.374]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.7,43.486],[-134.594,43.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.5915,37.8655],[124.1,38.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.474,25.784],[55.103,25.538]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.9,14.4],[122.1,13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.834,55.801004],[15.936,55.9195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.944187,63.182125],[19.064016,63.151594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.949,23.337],[-86.308,23.23]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[96.927,77.4865],[98.581,77.528]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.880937,55.903312],[6.956,56.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.396313,52.1615],[-5.277,52.417]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.28,60.15775],[20.271,60.251],[20.256,60.327],[20.165,60.359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.218,50.912],[-27.341,53.102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.92125,47.863],[-4.086688,47.818812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.773984,61.835141],[4.890875,61.60175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.793297,57.53475],[17.827719,57.417594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.225,57.764],[8.059094,57.563531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.5765,41.6345],[6.977,42.074],[7.32025,42.198]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.513625,36.689094],[-3.49425,36.581375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.304,39.399],[5.775,39.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.64425,40.12075],[18.812375,40.032813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.038,47.179],[-170.667,41.576]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[79.545,2.607],[80.694,2.156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.86875,60.96175],[19.777687,60.865812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.84,34.933],[-73.727,35.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.1795,42.94],[15.205,42.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.769,1.418],[4.265,0.016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.93675,59.990781],[24.898484,60.112219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.51,56.043],[17.44175,55.905875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.1755,55.115625],[15.036,55.217]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.358,62.687],[-8.128,62.0715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.4705,36.295],[25.396195,36.376578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.556,47.816],[-5.506,48.0165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.386,38.576],[10.492,38.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.06625,56.1615],[16.963375,56.103875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18,-35],[20,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.253,36.829],[-7.085,36.922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.869148,42.83407],[9.752455,43.003715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.008719,39.350563],[15.203,39.3115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.586,38.761],[18.932,38.898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.356008,59.773688],[24.193,59.714188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.25425,65.1305],[23.93175,65.16575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.645,57.60275],[8.5715,57.399563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.675625,49.74425],[-4.78325,49.835938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-98.103,10.326],[-99.99,10.663]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.867625,43.353875],[15.876,43.222]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.238969,55.420187],[8.046344,55.201281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.78275,37.4845],[20.793,37.282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-179,28],[-180,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.958,44.088],[-5.937,44.501]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.888502,36.95017],[23.7485,36.95025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.428672,44.054469],[8.326625,43.986062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.706,40.057],[24.57025,39.951344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.166,21.054],[66.6,24.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.568,36.2085],[21.777297,36.300844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.905,39.207],[12.790188,39.014688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.781,54.478],[4.744125,54.05025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.7825,43.889375],[14.9055,43.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.324,53.584],[-152.454,53.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,0],[4.877,-2.675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.401,-26.857],[-46.221,-26.744]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.7815,58.714],[19.7595,58.514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.284,63.632],[21.116,63.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.294531,43.294875],[5.166344,43.134563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.983969,57.777156],[-1.9585,57.96775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.382188,57.299813],[-1.521,57.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.413,37.18],[-10.495,37.442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.898,17.485],[-164.448,18.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.775875,45.926],[-8.059,45.818]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.014,61.249],[19.012375,60.984875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.601219,54.874613],[10.721563,55.021375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.659,48.508],[-40,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.479125,62.294875],[19.35,61.838]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.66925,35.99725],[-3.724,35.946]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.297,23.6],[-69.571,26.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.1,-3.7],[125.451,-3.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.1235,36.56425],[-8.623,36.61075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.61625,35.66425],[25.85875,35.7305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.3165,-10.549],[174.076,-13.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.77025,34.485],[31.95025,34.77925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.32125,-17.78],[168.203,-18.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.075,37.5635],[9.532,37.462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,-5.057],[-150,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.382,27.601],[-83.999,26.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.741,37.578],[-12.059,37.67175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.195668,41.28693],[9.008375,41.3605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.541906,42.961406],[9.580625,42.8435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.289055,59.876461],[23.392,59.829]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.181641,39.024703],[9.06375,39.069203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171,-46],[173.8,-43.7],[175,-42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.0755,55.905937],[10.945,55.789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.362,45.074],[12.518703,45.136062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.413,5.195],[-78,3.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.06075,36.046],[-69.725,35.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.09,43.692],[-2.9925,43.809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.43,51.715],[4.226,51.767]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.537,-21.629],[-3.598,-20.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.1435,63.04],[-20.769,63.212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.99,10.663],[-100.69,10.788]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.701,54.57],[12.5155,54.5465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.288,55.837],[7.387391,55.698687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.433,39.4515],[19.193188,39.587438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.256,56.011],[5.282,55.731]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.882875,43.808],[-8.05425,43.7815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.714336,57.812898],[9.383016,57.757641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.342,31.039],[121.205,30.507],[121.897,30.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.334,51.334],[-8.173,51.354]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.781438,49.663469],[-4.691625,49.615813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.239295,55.738719],[10.313875,55.911109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.682125,-17.353625],[-154.106,-14.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.15,63.2],[-23.5,64.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.1,-3.7],[123.737,-2.968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.339375,41.356375],[10.621,41.361]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.973,41.755],[6.2785,41.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.519008,54.151023],[7.587875,54.278063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.216,55.198],[12.4465,55.1275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.445391,55.916641],[14.67825,55.933375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-50],[90,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.1,-26.4],[50,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-50],[-150,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.04,43.8005],[30.592,43.651]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.548,-22.664],[168.558,-22.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.194,54.8315],[-5.2945,54.8725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.463,-2.574],[-130,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.15,37.464],[3.05525,37.15075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.934,56.01675],[8.035,55.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.96525,36.4775],[23.827125,36.454781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.134,35.715875],[25.983578,35.662859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-40],[52.453,-37.736]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.614,-12.263],[8.51,-12.361]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.269,35.79],[-72.84,34.933]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-6.982],[-146.26,-6.313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,-5.057],[-121.229,-1.247]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.026,35.41],[-47.102,33.151]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.511,33.635],[28.2425,34.1605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.729,39.327],[-22.3135,37.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.624781,55.029219],[16.619922,55.17168]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.45825,46.474875],[-2.063656,46.314531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.434,36.831],[-40.001,37.288]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-10],[69.842,-9.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.569781,59.857125],[24.0325,59.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.06975,58.33125],[21.17,58.304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.494,52.868],[-5.032,53.1915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.37925,55.527],[19.332,55.6595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.619,37.895],[11.006,37.769]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.0445,59.38],[19.854938,59.180188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.822063,55.28275],[13.934062,55.021375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.6,1.1],[103.946,0.058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.942,69.577],[15.082,69.233]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.235,37.881],[-71.43,38.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.378031,36.212187],[-7.674,36.079]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.175438,48.301625],[-6.0805,48.083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.17025,39.9145],[0.103,39.80675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.137,51.415],[-5.280875,51.475687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.169,37.563],[2.9675,37.51475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.882,41.349],[-130.001,41.297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.2175,36.945],[-12.3215,36.9595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.392,58.488],[-5.08,58.634]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.401125,38.806063],[1.152,38.6095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.881875,36.299],[23.827125,36.454781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.91975,53.831],[3.687,53.717],[3.674,53.695],[3.63,53.616],[3.564,53.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.9805,52.55825],[-10.197,52.4485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.27325,37.58575],[15.957219,37.721516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.992188,43.27725],[15.151125,43.399875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.678453,50.005109],[-2.860348,49.971363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.153437,49.54475],[-4.990125,49.567187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.181,59.565],[5.175891,59.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.544281,54.556969],[10.815275,54.580532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.494,36.464],[-12.314,36.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.903,27.051],[-77.823,27.118]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.701,41.083],[1.95825,41.044]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.866844,55.739516],[12.765437,55.888125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.51,42.212],[41.088,42.211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.142,35.517],[-12.675,35.481]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.76175,39.108],[2.862,38.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.022,40.926],[-128.687,41.243]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.102,52.457],[-56.957,51.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.707,20.059],[160,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.364,-17.761],[160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.436813,57.398375],[8.5715,57.399563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.89075,39.952],[17.962875,39.856]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.564,39.173969],[25.434617,39.246836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.513125,39.796],[19.576,39.716],[19.577375,39.563375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.137125,53.032375],[1.295,52.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.059,69.73],[30.101,69.805],[30.106,69.821]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.88,37.096],[-70.217,37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.16875,35.7475],[-8.365375,35.48075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.137,42.553],[10.624219,42.749781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.015,34.517],[26.656,34.712]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.334,40.431],[-73.813,40.446]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.794875,44.761],[-5.727,45.214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.371,33.836],[31.56,34.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.9,52.7],[4.118875,52.629625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.24,28.825],[-77.547,28.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.781094,50.894406],[0.890781,50.790844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.754,68.963],[14.553,68.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.324,51.619],[6.80225,51.446937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.197437,44.300875],[13.390062,44.217687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.649,38.7205],[24.782625,38.671406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.585,44.657],[-63.455,44.503]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.371625,53.150438],[3.4655,53.029938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5,-5.057],[-10,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.193,42.817],[5.273,42.9375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.766,44.668],[13.717453,44.499187]]}},{"type":"Feature","properties":{"pass":"dover"},"geometry":{"type":"LineString","coordinates":[[1.589688,50.881062],[1.738955,51.010418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.915,25.197],[-55,25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.17,-38.311],[-90,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.79325,70.05525],[30.342,69.9865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.452187,38.042813],[12.308477,38.011313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.30625,37.841],[15.484375,37.986]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.627,66.291],[-18.716,66.941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.016,-25.262],[-140,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.947219,59.497953],[24.036563,59.35375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.90075,57.728063],[9.888,57.609801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.116,53.365],[-40,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.561,39.8225],[23.332625,39.917344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.447,50.4765],[-14.921,50.718]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.302,53.515],[-5.511687,53.391188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.391,48.358],[-6.57375,48.27575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.799,-54.378],[-89.996,-54.092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.56425,50.085125],[-1.482844,49.987563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.638875,42.48],[16.483844,42.372]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.782,44.24],[-7.846,44.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.967219,38.05525],[24.990063,38.303562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.215,42.302],[-11.236,42.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.352,-9.268],[172.218,-9.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-40],[-19.998,-35.024]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.3155,38.0295],[10.619,37.895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.60125,58.962],[-3.64375,59.22475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.937078,42.383441],[10.120438,42.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.4295,56.916],[19.76325,56.776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.1135,21.70575],[117.7605,21.986]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.193188,39.587438],[19.16025,39.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.901,36.55],[-9.869,36.362]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.236531,41.044938],[1.497,41.098]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.777,39.688125],[13.825625,39.800625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.649,60.713],[17.72975,60.6535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.785312,55.552937],[10.055578,55.648859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.809,36.242],[-12.731,36.441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.30375,36.56925],[13.16425,36.405188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.93675,59.990781],[24.7785,59.9485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.330156,58.098406],[8.16025,58.0615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.058156,34.557719],[32.41925,34.62725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.985812,57.13725],[-1.746188,57.418188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.4915,40.277438],[13.575,40.157]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.814,38.062],[-74.327,37.81525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.17375,54.925406],[5.114,54.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.448,41.732],[3.828,41.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.416,43.145],[3.544,43.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.754,50.708],[-10.736,50.477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.8115,51.8115],[2.584281,51.740625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.40525,60.632625],[19.744563,60.670875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.663,26.451],[-82.098,25.622],[-82.04,24.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.727,13.615],[144.8,13.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.447998,54.726195],[10.601219,54.874613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.819,34.539375],[33.7345,34.424]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.761906,54.963],[12.594953,54.939547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.1325,44.136844],[9.099016,43.969094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.85375,39.1165],[24.006,38.944625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.191125,42.334812],[16.087812,42.21875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.391625,61.266875],[19.437656,61.069562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.227922,54.829687],[8.125375,54.6755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.001,12],[51.001,13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.873703,39.856859],[19.597,39.866]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.0705,48.8205],[-2.978891,48.984687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.745,35.06],[-14.08,34.4945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.612,28.689],[-127.833,30.041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.434,36.831],[-44.932,35.448]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.481,10.215],[-98.103,10.326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.7765,59.634],[5.6505,59.70675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.647563,36.102063],[-3.6365,36.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.897,30.346],[122.225,29.837]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.10275,37.405875],[-9.300937,36.831469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.2735,58.9055],[5.44325,58.742625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.217,44.707],[14.177156,44.91425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.684,44.30575],[12.383008,44.545586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145,25.277],[150,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.69575,61.374875],[20.55,61.238],[20.457,61.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,0],[72.625234,-7.089904]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.859562,44.733937],[14.7045,44.886844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.5329,42.734301],[9.620406,42.3635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.402055,43.614492],[-8.5485,43.6635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.027125,50.029375],[-0.051,50.198]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.236,40.079],[-11.67325,38.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.1525,-5.892],[121,-5.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-30],[-99.98125,-39.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.376,58.087],[18.21,58.0305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[151.854,17.789],[153.339,16.018]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1335,52.053062],[4.2605,52.213375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.01475,35.73975],[25.172969,35.561266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.338,37.6145],[21.41,37.364]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.389625,50.096125],[-3.08,50.049],[-2.924734,50.048328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.849,60.368],[3.277,60.642]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.757,50.329],[-4.671016,50.264617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.4485,59.0525],[19.31,59.168]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.54475,57.600625],[9.43,57.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.665,34.941],[-22.387,34.824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.391375,63.806125],[-21.417,63.816],[-21.265,63.827],[-21.02,63.739]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.183,46.934],[37.619,46.817]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.485219,37.115625],[13.127375,37.039187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.645,30.264],[-74.599,29.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.61,16.758],[134.123,16.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.675,6.409],[-81.646,5.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.972,44],[38.571,43.888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.3655,44.4945],[-2.711,44.914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.168,-10.028],[78.415,-11.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.101703,54.818453],[19.056625,55.026859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.184,32.906],[13.1,33.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.172969,35.561266],[25.36775,35.442875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.503,39.236],[-60.823,38.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.4905,49.7065],[-7.382,49.6135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.073063,50.13225],[-1.252438,50.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.41,37.364],[21.371875,37.2265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.2975,53.4695],[-10.118,53.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.968,37.789],[-32.34425,37.84675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.623188,41.456219],[9.722562,41.376844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.546,51.262],[-171.932,52.677]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.4695,37.584],[26.378828,37.683078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15,-25.277],[-18.198,-28.298]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.834,55.801004],[15.74675,55.739875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.178,51.645],[-6.131,51.5385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.857,-25.142],[-122.039,-22.0965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174,-34],[172.3,-34.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.127938,54.944875],[16.184,55.032],[16.2875,55.08225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.319141,50.777234],[-1.397,50.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.926,36.664],[35.604,36.4765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.697,33.58],[28.57,33.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.016,25.668],[-84.143,25.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.149953,53.494234],[-3.35025,53.537562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.3,61.615875],[17.241875,61.227438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.443,39.262],[17.372,39.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.045064,38.408082],[15.1505,38.4395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.749,51.278],[-9.901,51.3015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.282619,35.947516],[-4.978875,35.972875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.027,35.449],[-20.002,35.0065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.271555,41.142922],[2.514625,41.004563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.1145,59.968],[25.227781,60.117844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.498906,49.873219],[-2.603875,49.910625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.478,38.3245],[-0.3395,38.3515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.4,54.4],[14.276641,54.508656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.717,50.234],[-10.709,50.127]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.357,51.179],[2.359312,51.334812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.117,61.83175],[18.14875,61.68325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.794,30.09],[-130,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.505937,59.709625],[24.613297,59.490648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.74,49.756],[-140,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.997,-48.817],[-60.42225,-46.9955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.37,37.359],[-12.424,37.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.571,26.155],[-67.431,21.538]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.624656,57.279063],[7.727,57.158]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.084,35.464],[-125.796,36.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.131266,57.8945],[10.268039,57.791641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.92475,44.6545],[-3.225,45.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.672187,36.804],[-1.105,37.197],[-0.762875,37.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.5475,43.2935],[4.749,43.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.435,37.912],[-10.136,38.286]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.062375,41.7515],[5.038,41.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.287,34.77],[-72.701,34.893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.046344,55.201281],[8.0695,55.3905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.98075,52.02825],[-4.4035,52.808],[-4.806,52.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.0825,42.6135],[-10.156,42.8315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.816,-31.816],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.204,42.496],[-16.51,44.848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.574938,39.23257],[23.62875,39.09075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.262,35.925],[-7.475563,35.964687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.922,54.621],[19.77925,54.7095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.502,30.713],[-78.586,30.3695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.5125,65.51375],[-24.425,65.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.667,38],[4.056,37.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.709203,58.213766],[10.506812,58.233125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.96525,38.81575],[13.192,38.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.558,30.027],[-69.281,30.013]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10,-40],[10.002,-35.004]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.793,58.008],[5.923063,57.919531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.745,57.183],[18.864,57.21375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.045938,37.366875],[11.092,37.375],[11.25,37.332],[11.392781,37.305688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.984906,41.55782],[17.018578,41.432406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.787,35.6945],[-4.006,35.737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.827,39.393],[14.856094,39.632188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.3145,58.13725],[-2.08425,58.217]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.3245,58.663875],[20.6355,58.98025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.344,37.628],[0.057,37.5065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.1785,39.52075],[11.04975,39.51075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.626312,57.555813],[17.3765,57.602187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.527375,58.41625],[20.644,58.291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.538,20.105],[123.776,20.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-10],[0,-12.502]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.646,5.857],[-84.197,4.084]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.273,36.750625],[-7.94,36.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.856625,50.363937],[-6.007,50.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.969812,54.525078],[12.088625,54.5905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.188,36.4725],[-9.224312,36.567625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.531,55.897359],[15.483469,55.693687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.160375,44.033375],[-8.0585,44.106]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.625859,70.679859],[23.185,70.595],[23.025,70.537]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.998,-35.015],[-5.389,-35.013]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.81,56.804937],[10.724063,57.16375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.973,60.94],[20.9535,61.099]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.2,42.3],[-59.812,43.707],[-55,45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.1945,19.33525],[-107.176,19.194]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.001,-41.928],[50,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.723063,55.518375],[12.686719,55.634297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.496,34.623],[28.35425,35.3735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.431,38.79025],[-28.313125,38.79725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[46.654,69.842],[49.35,70.136],[51.446,70.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.652,44.483],[-3.692,44.543],[-3.812,44.754],[-3.884,44.882],[-3.90975,44.938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.52775,42.2125],[38.8115,42.1715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.1965,56.750875],[-7.067,56.654]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.615,60.1165],[26.876,60.272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.506,50.987],[-125.772,48.732]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.250344,58.687391],[5.075875,58.753875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.116,52.94475],[0.361969,52.951855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.228,38.913],[-10.899,39.7605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.31,40.282],[-25.335,40.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.381,35.908],[33,35.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.129,40.142],[25.039188,40.063938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.942,47.592],[-4.154875,47.526]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[99.89,76.001],[98.829,76.401],[98.581,77.528]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.950375,55.312438],[7.94991,55.082172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.1,38.05],[123.199,37.102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.769,63.212],[-22.12565,63.708815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.901,5.4],[-50.909,7.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.36025,49.4095],[-4.217,49.290875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.417,54.23],[5.290563,54.095875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.625422,36.369031],[25.493422,36.511016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.102,52.457],[-54,52.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.116,50.019],[157.208,49.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.521,46.247],[-7.437,46.358],[-7.329,46.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.9525,47.60375],[-6.816,47.612]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.802,30.547],[-71.538,30.4665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.861125,52.4445],[2.74625,52.283687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.672,-0.333],[-98.847,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.002,-46.134],[-2.805,-47.364]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.9335,58.9355],[21.822125,59.054375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.854875,46.0455],[-2.063656,46.314531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.5,64.3],[-165.429,64.402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.04525,42.33075],[15.292125,42.721125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.408,-5.454],[116.894,-5.6115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.796,36.12],[-126.521,36.357]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.3485,64.5915],[36.394,64.981]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.57,60.568],[0.326,60.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.83,29.953],[123.091,29.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.214,48.8],[161.882,46.741]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.3215,-7.153187],[-80.782,-6.598]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.753531,49.47975],[-3.591875,49.527438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.558,30.027],[-68.396,29.303]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.404813,57.840125],[8.353188,57.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.829,46.8045],[-2.811375,46.65775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.739062,39.191109],[25.706023,39.078133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.988,1.008],[105.398,0.739],[107.3,-1.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.590312,41.846594],[11.516,41.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.0605,68.7865],[14.553,68.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.0555,57.6415],[5.991,57.523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.4885,49.7935],[-63.355,48.928],[-64.459,47.238],[-64.351,46.656],[-62.978,45.985],[-62.344,46.026]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.715625,52.0255],[2.93675,52.1415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.261,64.537],[-14.252,64.6625],[-14.05075,64.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.852359,35.743156],[25.01475,35.73975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.153813,55.639187],[16.160484,55.483516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.229,40.2445],[25.129,40.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.59975,53.37525],[-4.762828,53.372312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.8145,35.9215],[-11.361,36.101]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.055594,43.343344],[-9.857,43.614],[-9.697,43.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.9885,36.1685],[24.108844,36.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.93,47.868],[-15.042,47.762]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.1,-37.7],[150.055,-37.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.488125,38.813875],[0.406781,38.693469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.056,51.4805],[-10.223,51.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.4085,40.9605],[10.137375,41.205781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.525625,41.204813],[17.437,41.133],[17.424,41.116],[17.293187,41.019125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.301375,37.367719],[25.227953,37.48968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.03,-14.185],[64.0745,-13.939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.01775,54.861375],[6.941,54.965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.11,48.208],[-125.0385,48.5115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.259,37.344],[6.397,37.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-121.888,18.212],[-129.449,19.478]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.674,45.1445],[-8.059,45.818]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.79,31.501],[31.707,31.671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.434,38.571],[-76.151,37.881],[-76.15,37.147],[-75.96,36.949]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.54575,60.14],[5.4085,60.121]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.663125,60.19175],[4.542,60.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.255437,39.833188],[25.1805,40.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.61125,52.291],[2.259,52.467]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.123682,37.488928],[25.021,37.6075],[24.937938,37.6835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.257094,44.096219],[9.193812,43.917844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.2,-7.25],[113.257,-6.326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.096,75.489],[17.297,75.356],[17.241,75.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.455937,38.751469],[20.4965,38.576813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.8635,34.787],[26.743,34.939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.941992,55.214016],[11.126734,55.214766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.893,46.811],[-14.674,47.052]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.65825,35.5395],[23.777125,35.745937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.984953,43.207],[9.830586,43.152195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.2355,51.338],[-8.23875,51.02725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.9545,60.271125],[-3.807,59.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.455625,54.064375],[8.45,53.9395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.36175,39.533281],[24.0285,39.4135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.823,68.058],[14.686125,68.023125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.813418,37.781859],[25.871895,37.599242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.085391,49.915937],[-0.125375,49.736375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.14875,61.68325],[18.047,61.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.017312,62.650937],[17.952,62.488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.092,62.60125],[20.15375,62.46775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.26,64.27],[-172.3,64.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.642,69.857],[16.885313,69.991437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.932937,43.948188],[13.1265,43.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[56.935,69.485],[57.37,69.994]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.235,47.649],[-14.893,46.811]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.867,58.992],[-1.3335,59.098]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.801,64.258],[21.92,64.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.071984,38.668828],[26.188469,38.487539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,28.486],[-140.915,28.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,20],[138.638,21.629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.0985,54.551],[6.0615,54.1775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.57,43.388],[14.522313,43.238125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.1,60.51],[-4.9545,60.271125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.665688,39.541438],[-9.7335,39.40575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.9975,46.991],[-5.043,46.638]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0245,39.307],[7.834,39.62075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.041,37.040719],[26.06975,36.939312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.334,29.99],[-93.321,29.626]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[93.3,14.4],[89.727,18.849]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.125,25.395],[-44.645,25.612]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.768,41.02],[17.895,40.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.985,54.655],[2.893,54.711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.636,21.288],[-66.821,19.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.126125,42.04025],[10.069187,41.938125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.511,42.528],[4.16525,42.1755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.6655,36.72],[-10.723,36.961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[148.412,-13.866],[150.194,-14.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.04875,59.5285],[23.064625,59.397875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.741,20.786],[-45,25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.224,29.756],[-60,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2545,38.467],[14.144,38.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.57,33.52],[28.511,33.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.984,-2.013],[-110,-3.168]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.182,54.386],[-4.636,54.5125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.956172,36.944266],[13.676605,36.988188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.38,38.256],[-9.2935,38.1955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.960563,58.475219],[21.06975,58.33125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.336312,37.837047],[24.469781,37.784891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.001,66.5],[-36.851,65.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.79625,49.7135],[-0.966375,49.761313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.55,36.49975],[-2.465,36.443]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.46725,35.31525],[-8.654,35.267]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.754,68.963],[15.0015,69.006625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.552,58.0025],[5.168,57.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[96.207,-24.021],[100.001,-26.396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.027812,36.308605],[26.875063,36.291312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.603,50.673],[-10.736,50.477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.451,40.732],[-137.901,41.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.816,47.612],[-6.703,47.604]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110,-50],[105.112,-45.402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.478,12.524],[115.045,13.361]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.274,29.688],[-78.849,29.333]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.968813,48.644281],[-6.189,48.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.80675,41.95375],[7.746,41.985],[7.62,42.044],[7.593,42.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.804,42.877],[7.004437,42.9335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.188469,38.487539],[25.883766,38.665375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.92125,42.846],[28.994187,42.495688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.622687,41.567281],[16.739,41.6675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,10],[-130,4.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.51,0.345],[-90,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.331,57.38],[21.082531,57.355969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.296,11.66],[-88.1,12.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.699,-54.555],[-63.613,-54.612]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.959641,36.079094],[23.176,36.185375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.511,39.481],[23.601,39.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.5,45.136],[36.738,45.458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.6655,58.396],[2.945,58.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.830586,43.152195],[9.656719,43.130891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.003375,54.852438],[13.94975,54.67425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.229387,56.567371],[11.076406,56.69125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.38925,54.913375],[18.51843,54.966344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.343438,50.175062],[-1.252438,50.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.236531,41.044938],[1.377,40.948]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.088,37.07],[-14.604,37.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.477,55.93175],[5.378,56.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.568336,53.698863],[7.624125,53.82775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.451,35.055],[35.399,34.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.084,35.464],[-124.792,35.763]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.387,61.0135],[17.433125,60.818125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.583,44.966],[13.447656,44.963156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.71825,35.184],[25.797187,35.270313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.271,-9.1],[116.68,-9.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.0305,36.377],[23.881875,36.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.732125,43.37075],[3.8595,43.1855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,30],[-160,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.008938,54.843375],[10.977379,55.011469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.21,58.0305],[18.144188,57.900375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.782,26.283],[128,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.91925,37.83375],[20.748455,37.943438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.8,-12.2],[130,-10.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.177,41.207],[-13.53,39.523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.022469,56.730469],[12.027188,56.479687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.31,59.168],[19.103,59.323]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.09725,40.44025],[8.21,40.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.934125,40.948875],[29.112813,41.234719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.17025,39.9145],[0.3565,39.8545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.54725,58.390125],[18.706937,58.325312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.756,57.225],[11.758984,57.331633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.301375,37.367719],[25.352914,37.560074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.366437,58.093],[20.211,58.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.963875,57.974125],[6.845844,57.967062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.355135,50.517465],[0.603437,50.662625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.85675,55.689875],[20.083375,55.649687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.8475,59.4995],[3.397,59.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.19,39.6205],[-0.28632,39.449203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.317813,50.068906],[-4.4535,50.0465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.362,54.4985],[-164.607,54.194]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.8835,33.199],[28.212,33.116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.001,66.5],[-24.481,68.626]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.43725,36.450203],[27.394,36.29525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.618313,57.603188],[-1.586781,57.449531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.35625,43.219],[8.320789,43.409773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.996,-54.774],[-83.866,-54.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.459,36.77175],[13.34925,36.871625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-10],[-125,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.528,62.976],[-167.36,63.148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.041,49.366],[-8.691,49.421]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.772,60.192],[28.0355,60.15975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.049043,37.331059],[24.98918,37.466242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.014828,51.457344],[1.9885,51.341125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.6365,58.829937],[9.762609,58.781531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.573,37.681],[-71.7925,37.587]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.721453,36.648922],[14.481,36.7355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.23125,27.989],[-77.397,27.928]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.690062,41.219469],[9.882437,41.374219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.666,31.463],[-72.693,31.223]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.945125,37.52475],[26.802625,37.517875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175,5.057],[-170,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.7785,58.614],[17.08025,58.53325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.12,64.759],[8.484,64.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.31,40.282],[-29.562,40.491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.470641,59.506891],[23.381172,59.662922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.945,-24.182],[70.001,-25.809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.746,-0.171],[103.946,0.058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.933,59.499],[17.002,59.529],[17.112,59.524]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.964,49.666],[-1.252,49.719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.488938,40.038406],[14.539281,40.203156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.959641,36.079094],[23.142359,36.045219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.671,52.849],[1.8375,52.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.588062,39.093312],[0.2715,39.203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.043,43.265],[7.188063,43.259031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.4705,61.47825],[4.268,61.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.568,61.81275],[-5.825,61.091]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.870285,40.901733],[17.768,41.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.438937,55.812125],[14.575281,55.729094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.9995,48.457],[-5.1955,48.6105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.892,40.07875],[1.382,39.691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.388687,59.108156],[5.543188,59.177234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.264,61.0215],[19.222,60.9305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.26125,48.4115],[-6.175438,48.301625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.85,-10.774],[177.594,-11.106]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.225375,41.650625],[17.075875,41.67475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.879,-16.231],[153.016,-18.491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,20],[-148.819,21.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,60],[-53.2,63.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.034688,44.483469],[13.126625,44.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.884,-18.205],[171.694,-18.247]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.999,31.086],[-134.794,30.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.0875,36.002125],[25.286062,36.011562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.56275,58.10175],[19.608062,57.901125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.344875,36.804312],[27.1875,36.73675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.37,37.359],[-14.458,37.228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88.654,-16.852],[88.497,-16.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.374234,54.029688],[11.581,54.15825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.0275,58.081],[-6.16625,57.983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.36025,49.4095],[-4.439375,49.223875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.209,10.754],[-94.048,11.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.6695,38.146],[11.84425,38.17075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.420781,57.265594],[8.34,57.1075],[8.247984,56.951031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.873,38.811],[1.152,38.6095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.658469,54.879063],[15.749422,54.994109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.572,22.98],[-18.805,24.763]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.4305,51.40675],[3.605855,51.41868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.762,43.171],[8.679906,43.340594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.635,43.4785],[38.779,43.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.767,54.4585],[-8.77625,54.59675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.894,20.212],[37.53,19.762]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.158,29.067],[-16.12325,28.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.21775,58.104625],[-6.0275,58.081]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.278492,57.636105],[11.24507,57.844516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.008,1.507],[172.902,1.421],[172.864,1.391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.821125,36.556516],[14.928875,36.426625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.5,64.566],[40.429,64.636],[40.231,64.838],[39.97,64.941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.83725,47.9095],[-4.847859,47.767328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.074063,36.502156],[26.091375,36.280375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.567,38.296],[16.04175,37.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.01225,38.7795],[7.944,38.66575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.591102,36.976594],[24.488828,37.066336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.2785,41.4425],[6.104,41.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.093,7.111],[166.4,9.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.559766,49.923234],[-3.888672,49.878625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.999375,43.83025],[14.7825,43.889375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.551,69.516],[16.315,69.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.1,38.05],[125.5,37.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.827,43.326],[37.584,43.611]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.032,60.854],[19.16,60.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.05975,58.5975],[21.155563,58.563688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.003,56.058],[-40.003,53.254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.093875,56.872062],[18.01975,56.725062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.805,22.311],[-86.363,22.00975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.057,40.21],[2.948,40.149]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.361391,36.752797],[24.439,36.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.708391,41.070266],[9.900125,41.061937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.463,25.743],[55.197,25.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.89,27.554],[-89.871,26.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-172.601951,-13.35449],[-171.748,-13.80325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.282,49.941],[-6.02425,49.933625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.572,41.056],[7.569,40.892]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-172.601951,-13.35449],[-172.235,-13.383],[-171.748,-13.80325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.394,59.679],[24.613297,59.490648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.9375,64.28125],[-21.95793,64.142781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.825812,39.271125],[25.703875,39.29275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.76282,43.569477],[-3.918,43.594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.997937,58.12425],[9.992,58.00925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.23675,56.376],[5.20525,56.54725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.330063,45.226062],[12.518703,45.136062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[61.653,21.501],[58.999,19.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-10],[-80,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[56.17,6.224],[56.353,5.899]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.001,-25.478],[160.001,-24.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.709031,36.578938],[23.554813,36.5405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.232,26.002],[143.754,26.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.764,42.595],[8.868109,42.674766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.5375,27.85875],[-92.264,27.064]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.9445,42.5675],[7.111,42.624]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.97,21.144],[-157.884,21.24775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.65025,56.86],[7.519938,56.819563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.859,-18.24],[118.1,-17.848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.382094,42.727938],[16.375125,42.85225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.836,56.164],[3.733,55.987]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.776,20.12],[123,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.262,-34.063],[-9.998,-33.919]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.574336,37.448672],[23.556875,37.612313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.594,43.44],[-132.388,42.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.191,43.781],[37.584,43.611]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.581,35.4315],[28.772,35.527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.692164,42.73807],[9.687,42.631],[9.759906,42.419344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.868,28.698],[-73.861,30.269]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.636,21.288],[-67.431,21.538]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.923344,58.151258],[11.045219,58.080312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.898563,40.980563],[11.73825,41.006188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.2215,56.872],[10.963531,56.821156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.959781,54.419438],[7.745688,54.37375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.556375,36.747],[-8.273,36.750625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-101.837,-11.929],[-100.111,-10.043]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.860348,49.971363],[-2.988812,49.803875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.460469,39.418156],[1.805,39.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.261,70.047],[16.986,69.5195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.001,33.635],[-20.001,33.408]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.701,36.318],[-12.731,36.441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.2,47.75],[-60,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.6535,47.638],[-3.8335,47.7205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.485867,57.924367],[7.7775,57.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.535,65.253],[36.468,65.624]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.974172,56.831703],[7.09175,56.89825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6705,56.73675],[6.821906,56.774562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.94375,12.77425],[-57.974,12.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.168,58.962],[18.009704,58.896689]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.387,34.824],[-25.774,34.595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.906,46.7075],[-3.004,46.73],[-3.153922,46.763398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.501125,51.638312],[-8.37425,51.62325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.656,36.934],[-1.672187,36.804]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.371,28.584],[136.644,30.428]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.294469,50.076906],[0.6595,50.30075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.5,-53.648],[-150,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.057,35.103],[-65.801,34.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.868203,60.951344],[19.02175,60.7085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.702219,52.418563],[-5.78125,52.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.001,-5.056],[-90,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.5,54.4],[-7.662,56.487]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.2865,53.74075],[-3.177,53.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.5545,56.932375],[11.555438,56.672406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.019367,57.973977],[11.045219,58.080312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.909,43.5615],[-4.926,43.638]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.512,64.078],[21.801,64.258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.001,22.772],[-60.001,24.914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.524,8.235],[-78.232,8.354]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.859422,56.530578],[20.59675,56.417125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.82975,57.68425],[19.126031,57.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.462125,43.14575],[16.370969,43.074438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.5835,53.9915],[-5.72975,53.804]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.341328,54.389234],[11.175812,54.2445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.834,13.305],[-61.498,13.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.984,50.0715],[-8.471,50.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.329,70.226],[8.46,68.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.84,44.289],[-6.22375,44.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.6015,40.8335],[2.7085,40.73375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.974,48.331],[-123.11,48.208]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.029625,54.566875],[13.958,54.373563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.411,47.278],[-129.992,46.22925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.046023,43.678289],[14.105531,43.834094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.833117,51.853805],[1.9255,52.01575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.502,22.844],[-87.8975,22.731]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.608062,57.901125],[19.68825,57.74475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.9885,51.341125],[2.153977,51.413375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.185484,36.698141],[14.383,36.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.998,-47.119],[-80,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.63,37.909],[18.393,37.939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.83725,47.9095],[-4.798641,48.058188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.577,-32.802],[6.861,-33.413]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.767484,35.322164],[26.606219,35.3665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.064,54.346],[-0.231625,54.403687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.456,39.356],[23.574938,39.23257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.316,-39.708],[42.953,-37.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.153,52.3015],[3.238,52.393]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.974172,56.831703],[7.166906,56.684656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.991219,54.888781],[18.181625,54.881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.087,31.744],[29.935,31.747]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.269,65.4005],[-22.723,65.125],[-22.752,65.097]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.959,53.753],[5.003969,54.116563]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-111.296,74.145],[-117.76,72.904],[-118.684,72.557],[-119.86,71.633],[-122.995,70.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.336,30.358],[-78.114,29.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.331,57.38],[20.976,56.941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.24675,58.373],[-0.937,58.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.54675,59.54925],[17.414,59.383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.44175,55.905875],[16.988703,55.967375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172,-40.5],[172.546,-40.032]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.673,63.768],[-16.367,63.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.165687,60.515812],[0.326,60.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.733,27.07],[-90.856,26.188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.0965,57.7325],[18.218656,57.653188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.138437,39.238812],[8.083047,39.066297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.005,28.711],[-79.094,28.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.843,38.332],[-27.112,37.928]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.278,38.353],[6.717,38.243125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.034,60.349],[26.93675,60.439312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.006,48.733],[-123.245,48.715],[-122.974,48.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.799844,54.771531],[12.594953,54.939547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.878,39.216],[24.78375,39.332875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.774,55.109],[19.7925,54.9255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.0815,40.171],[-10.87025,39.95175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.921062,38.454375],[24.990063,38.303562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.7895,40.6075],[10.842,40.697125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.2875,38.2405],[10.445,38.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.541,60.6],[-6.1,60.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.732125,43.37075],[3.838,43.396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.795,43.807],[7.865,43.7255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.074531,42.170063],[10.965,42.04625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.01275,63.1935],[20.615,62.873]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.32175,28.284375],[-15.106,28.371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.695,44.5645],[13.034688,44.483469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-10],[161.451,-10.011]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.97675,21.97175],[-85.949,23.337]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.138,40.557],[4.678,40.29425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.835892,50.461512],[0.845,50.469813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.7705,35.4235],[-8.533,35.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.138,9.341],[-86.783,8.614]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.461,18.414],[109,16.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.0195,40.792],[25.2005,40.8345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.953946,55.845714],[10.985047,56.042883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.587375,39.788063],[7.5495,39.8965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.341625,53.804625],[4.48,53.844],[4.573,53.893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.527125,35.095375],[26.6655,35.197]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-10],[84.194,-14.352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.064172,40.707727],[13.207812,40.832594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1855,38.765],[3.9755,38.4465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.6655,58.396],[1.501,58.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.6765,35.9635],[-12.498,35.892]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.5925,41.309125],[17.525625,41.204813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.01375,61.01725],[4.7815,60.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.260312,57.130813],[7.341,57.198],[7.470625,57.233125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.650688,56.718375],[11.042334,56.518523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.78075,36.93875],[26.65082,36.962602]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.828,48.193],[-123.11,48.208]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.470594,51.9315],[1.441516,51.824656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.82225,35.752],[34.843,35.642]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.13,58.767],[1.874,58.453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.674,61.688],[-4.344,61.467]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.601,27.708],[-90.483,26.724]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.761,34.928],[-69.517,33.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-10],[-114.025,-6.029]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.762,-4.289],[-133.851,-3.899]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.68,14.047],[-61.8895,12.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.465227,36.639328],[25.617289,36.726492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.735,53.895],[6.49425,53.83175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.573,37.69],[-32.968,37.789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.635,43.065],[35.506,42.738]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.001,-38.7],[135.551,-39.479],[130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.384,47.258],[-2.938438,47.132688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.974,37.27],[-14.458,37.228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.3425,41.069],[11.067937,41.153672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.8,-0.9],[-81.25,-3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.118,54.651],[6.018,54.687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.05475,4.873125],[1.652,5.924]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.995875,37.481313],[10.814,37.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1335,52.053062],[3.992625,52.17175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.137,56.2355],[20.285625,56.15325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.016,13.776],[145.232,13.606]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.995477,36.805496],[26.179063,36.795719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.0715,39.59325],[0.197,39.54275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.5115,44.431],[36.52275,44.891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.423,5.494],[169.837,5.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.135,65.096],[24.803,65.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.928,18.4805],[-68.899,19.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.408062,41.516797],[9.443031,41.6635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.644,30.428],[137.503,31.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.327,65.004],[23.429,64.9995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.8715,36.415],[-30.001,36.448]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.277719,36.044219],[22.959641,36.079094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.211,58.224],[20.109875,58.472375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.103,20.075],[65.095,18.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.557,60.7985],[3.2715,60.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.798,63.666],[21.941,63.722]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.281,48.041],[161.882,46.741]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.653,-19.568],[9.089,-19.203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.485,39.142],[-72.298,39.006]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.405,-5.999],[11.891,-5.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.645406,54.935109],[-5.804,54.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.671,52.849],[1.7605,52.721312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,20],[-107.1945,19.33525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.458004,58.565945],[23.174,58.228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.4295,37.47575],[-123.315,37.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.222453,41.285062],[10.088094,41.582906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,0],[92.507,-2.543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.2005,24.799],[-76.084,25.484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.407,19.615],[-134.966,15.2035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.459,52.943188],[1.566,52.8455],[1.6605,52.789],[1.7605,52.721312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.893,27.783],[-90.381,27.999]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.835,38.68175],[14.78675,38.803]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-20],[178.801,-19.342]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.028195,59.747914],[19.209125,59.737875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.813,42.188],[4.533,41.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.58975,58.35325],[10.709203,58.213766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.09,52.4045],[-10.197,52.4485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.3245,58.663875],[20.476,58.653]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.83625,53.406227],[4.814344,53.521469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.564,56.853],[20.489,56.953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.72575,60.94075],[3.557,60.7985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.404,64.3835],[-15.045,64.214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.15725,49.684],[-6.795844,49.741437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.093,38.9],[6.204,38.783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.0815,40.171],[-10.964,40.386],[-10.88425,40.489875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.318,30.302],[-74.724,29.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.68975,40.603],[2.790875,40.621656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.799375,40.86875],[2.7085,40.73375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.472,28.105],[-88.028,28.116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.4895,40.8185],[28.593,40.893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.638437,56.337063],[11.454937,56.3865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.604,61.583],[18.7305,61.341]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.795844,49.741437],[-6.821,49.522]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.522031,36.380711],[23.554813,36.5405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-8.621],[-160,-1.919]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.402,66.383],[6.467,66.461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.988875,36.801625],[24.020375,36.906375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.855,21.403],[38.641,21.138]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.455031,55.455313],[14.408758,55.256641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.905,38.489],[-11.67325,38.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.001,37.64],[-20.001,36.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.137,52.567],[-10.799,51.302]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.82025,39.847],[-9.83,39.656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.492,38.493],[10.3525,38.518]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.788,28.138],[124.785,28.027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.239625,54.994609],[-1.1235,54.886125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.4195,50.39],[-2.2605,50.41625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.164453,55.329266],[13.2825,55.17125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.246,41.615],[-11.681,41.272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.952,39.9885],[18.933187,40.113875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.697,44.82],[-136.329,44.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.5295,52.681],[4.50025,52.78525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.7225,55.4545],[6.4465,55.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.643461,43.293953],[15.5215,42.94825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.404,50.85],[-40,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.618,53.888],[-5.72975,53.804]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.657,-30.436],[-49.5,-30.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.3655,34.474],[33.63275,34.32225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.331,37.161],[3.2755,36.9965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.2,34.199],[35.116,33.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.475707,37.775152],[26.4135,37.912625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.231156,54.456891],[8.102375,54.561813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.9,34.3],[-120.884,34.436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.8735,68.8745],[16.7485,69.081125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.084,25.484],[-76.36,25.697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.358,54.479],[1.635,54.501]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.671,45.218],[-7.458,44.9],[-7.581,44.649]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.458,-8.771],[137,-9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.38325,49.633625],[-3.279844,49.687828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.893,33.144],[-78.875,32.511]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,34],[10.137,33.935],[11.25,34.3875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.939625,43.833375],[13.795063,43.735625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.74875,50.464],[-5.677,50.6645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.537562,43.803438],[14.370219,43.833156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.0025,60.1795],[25.765875,59.948375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.65825,35.5395],[23.55,35.606],[23.503,35.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.8085,57.46],[20.65375,57.411687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.551813,60.414812],[-0.728,60.862]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.412,53.18],[5.524,53.302]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2815,36.78625],[14.185484,36.698141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.56625,38.18525],[13.550187,38.285062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.537,45.88],[-13.986,45.724]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.87825,65.5025],[22.933875,65.3335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-179.403,-37.01],[-173.465,-36.802]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.858719,41.863641],[17,41.7495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.318,41.932],[-14.289,43.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.148,33.297],[25.161,33.562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.153977,51.413375],[2.359312,51.334812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.304328,37.265297],[25.2255,37.161]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.1205,34.6645],[-12.7075,34.736]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.2485,36.9335],[13.127375,37.039187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.942,40.278141],[0.815,40.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.624781,55.029219],[16.903813,55.244687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.34625,54.40375],[15.195875,54.295687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.045937,53.884125],[-5.8625,53.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.41,-9.488],[156.2,-6.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.411,47.278],[-130.9255,45.6835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.397281,57.249102],[11.516864,57.31915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.791,65.202],[24.13,65.412]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.614,-3.66],[-140.717,-0.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.6605,37.1105],[3.544,37.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.385406,39.761953],[17.89075,39.952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.828234,39.089973],[25.86525,38.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.5045,56.395],[-7.27425,56.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.617289,36.726492],[25.766711,36.886488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.98125,41.288],[9.0925,41.300125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,0],[147,-4.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.488,34.235],[25.781,34.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.988703,55.967375],[17.06625,56.1615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.623125,39.099625],[26.544531,38.937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.39675,39.8115],[24.066906,39.810875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.229875,51.3815],[-4.354328,51.25282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.991812,44.193875],[13.923,44.301094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.32,-10.714],[-170.572,-14.058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.879,36.896],[-12.2175,36.945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136,-35.5],[134.216,-35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.220344,43.037781],[7.725687,42.979563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.955,36.318],[26.091375,36.280375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.678891,50.605625],[-0.432156,50.575094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.231,52.07975],[-4.98075,52.02825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.0135,55.25525],[16.336875,55.2255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.22367,42.828633],[16.375125,42.85225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.0355,44.05925],[29.483,44.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.115,24.118],[-165.819,24.432]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.52,59.454],[4.711344,59.493687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.8975,55.784],[3.7415,55.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.037,51.874],[6.597,51.581],[6.637,51.573],[6.80225,51.446937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.438,33.873],[-40.001,33.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.299,54.865],[19.16675,54.982062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.138,37.632],[1.448,37.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.052,37.834],[5.667,38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.118,42.521],[3.27,42.483375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.109,35.903],[-9.3015,35.8935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97,22.3],[-92.7515,22.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.607,63.001],[6.803,63.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.605375,42.797031],[4.33075,42.59075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.847625,53.496813],[0.949,53.373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.673938,59.6475],[24.775,59.707],[24.859328,59.813906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.773,40.487],[-69.491938,40.297187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-50],[-24.89,-45.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.9805,52.55825],[-9.846,52.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.724,22.198],[117.7605,21.986]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88.497,-16.94],[90.002,-16.097]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.251,58.02],[20.148688,57.831875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.564125,36.8805],[12.438375,36.958625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.737563,50.055656],[-1.728145,49.875125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.078563,42.92925],[15.292125,42.721125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.59025,55.510937],[12.488875,55.328594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.501125,51.638312],[-8.253219,51.73225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.614,-35.249],[-49.731,-35.207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.5515,44.0775],[-9.411,44.236187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.08425,38.042],[24.967219,38.05525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.9545,39.044],[3.186125,39.03375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.083617,58.280844],[5.962125,58.405687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.997,20.042],[138.671,18.741]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.653516,44.614742],[13.717453,44.499187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.445,38.075],[10.752,38.098]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25,-15.17],[-30,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-10],[-100,-8.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.445227,37.265547],[25.532438,37.443875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.36875,36.371844],[-3.6365,36.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.885,-28.723],[106.726,-26.876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.993453,45.124258],[12.857516,44.946891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.6415,29.244],[-15.574,29.138]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.963,55.778125],[18.997,55.60775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.049578,45.593297],[-1.268,45.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.595,4.649],[-20,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.001,37.64],[-22.048,37.831],[-22.3135,37.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.822,30.041],[-142.772,30.052]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60.4,22.7],[61.653,21.501]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.888,70.922],[31.3885,70.676]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.269,65.4005],[-22.188,65.436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.38,44.6405],[-1.451,44.204]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.0985,55.051],[7.204,54.754]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.1365,2.1595],[151.81,3.751],[150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.72,36.05],[-160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.642477,55.288227],[12.674594,55.428625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.102625,48.304969],[-5.36025,48.551969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.091,27.78],[49.255,27.971]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.835875,51.379],[-3.852121,51.573113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.685,57.833],[-0.165,57.613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.383,20.997],[123.776,20.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.328,55.8425],[-5.345,55.714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.133,-34.533],[111.662,-33.677]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.346,55.1575],[18.205,55.113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.709031,36.578938],[23.757844,36.720125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.316031,42.835],[10.30725,42.94575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.205719,43.223625],[15.34025,43.32625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.357,51.803],[-7.03975,51.93075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.965,42.04625],[10.826625,41.830687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.76375,54.473375],[8.723,54.60825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.244,53.135],[1.334594,53.020719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.674,-23.033],[111.184,-24.477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.21975,54.20425],[14.092406,54.189844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.751,32.2],[26.148,33.297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.794937,36.143187],[24.82575,36.01725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.654,61.707],[4.773,61.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.547,-30.083],[91.44,-31.566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.578,61.65275],[17.505516,61.508156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.518,52.144],[2.715625,52.0255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,0],[-1.109,-1.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.984188,44.807578],[13.05,44.9095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.423,40.474],[11.295,40.616]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.363,41.548],[3.24,41.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.805,-47.364],[-4.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.97475,40.308],[6.215,39.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.014422,42.730695],[9.869148,42.83407]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.748,12.047],[-61.8895,12.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-20],[-110,-17.453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,-15.17],[-120,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.551375,44.844875],[12.655,44.909]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.539,37.714],[18.361,37.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.003,27.148],[-85.8335,26.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.957219,37.721516],[15.831875,37.66025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.3125,36.6435],[27.145875,36.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.8325,61.018],[18.082,61.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.5875,58.895],[18.5365,58.72875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.6795,51.90175],[-7.266,51.9815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.416,38.424],[-11.155,38.477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.961,29.4405],[-88.317,29.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.850938,37.541313],[10.6985,37.62825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.633,55.613],[6.434375,55.64575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.18525,42.3465],[5.022,42.282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.714641,54.660719],[10.544281,54.556969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.196375,60.391813],[5.174062,60.283125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.026969,56.404344],[17.111125,56.458375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.530828,53.493547],[-3.643422,53.590187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.005,56.609],[-6.146799,56.664843]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.3565,48.98475],[-2.307953,49.198984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.0795,53.285],[0.847625,53.496813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.51,37.339],[11.668,37.28875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.133,-10.55],[137,-9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.21175,37.191875],[20.585,36.569]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.6205,38.1095],[25.754,38.101328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.249,-8.7],[115.6045,-9.0895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.638,43.554],[170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-1.549],[90,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.684,50.159],[-7.362,49.929]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.676605,36.988188],[13.574313,37.03775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.766875,37.08575],[18.145375,36.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.910375,40.288187],[13.129969,40.136344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.339625,55.3235],[3.952,55.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.234,-11.697],[43.12,-11.678]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.97075,51.525688],[3.25225,51.48425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,20],[-133.158,20.0185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.155812,56.310563],[12.305188,56.185594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.32575,38.696],[-28.3005,38.593]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.530898,59.382117],[10.482,59.197]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-20],[-25,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.898,70.65],[17.743,70.599]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.17425,38.0435],[0.41,38.1855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.7155,39.005],[-11.67325,38.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,10],[-120,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.175375,52.33825],[2.375125,52.03625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.221,-26.744],[-45.73,-26.4355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.796,-20.844],[-15,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.991,11.489],[-89.107,10.578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.45,53.9395],[8.4935,53.823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.68925,59.339125],[4.54075,59.33725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.999023,36.667992],[26.841437,36.615871]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.118,61.178],[20.035875,60.996938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.888672,49.878625],[-4.013937,49.934313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.574313,37.03775],[13.418625,36.985625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.732531,42.291219],[10.581,42.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-20],[-114.39,-20.061]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.009,38.621],[9.2345,38.78125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.62625,58.077],[-1.643625,57.86225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.640875,43.356125],[-9.175,43.679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.343438,50.175062],[-1.258125,50.281281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.81225,55.653813],[10.055578,55.648859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.947,-20.501],[160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.908,44.0985],[12.9945,44.2065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.809,54.055],[-2.842,54.039],[-2.841,54.005],[-2.915531,54.003203],[-3.036375,53.953719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.747,20.045],[134.214,20.058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.007094,42.077813],[9.913125,42.126188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.298,36.383],[16.033,36.387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.7485,69.081125],[16.761,68.859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.283,36.3575],[-6.41675,36.40525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.72,36.05],[-155.948,34.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.9585,64.739437],[-13.916555,64.593055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.382031,43.517719],[9.427875,43.411812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.577047,49.711531],[-1.4795,49.7435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.3725,66.05775],[-17.085,66.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.1755,55.115625],[15.282656,55.106125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.428672,44.054469],[8.497633,43.934609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.063,-18.461],[167.886,-18.472]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.328,55.8425],[-5.422,55.994],[-5.355,55.883],[-5.328,55.8425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.082531,57.355969],[21.059781,57.520688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.4645,41.97425],[11.349,41.90625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.352,26.892],[-75.406,26.452]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.291437,57.324875],[8.247984,56.951031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.0065,-20.694],[64.013,-20.451],[70,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.745688,54.37375],[7.587875,54.278063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.459,39.182],[-70.821,38.76]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.532,40.1475],[5.4345,40.112],[5.246187,40.040219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.28632,39.449203],[-0.006,39.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.588156,58.875719],[-2.6285,59.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.299,54.865],[19.457,54.937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.834,35.227],[-74.401,35.394]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.71,-6.685],[-80.782,-6.598]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3255,52.5075],[4.267687,52.380437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.36025,48.551969],[-5.507973,48.596453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.801,57.324],[8.587523,57.231133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.438094,63.345781],[20.547375,63.343688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.78225,55.00575],[15.171109,54.987867]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.926813,38.3505],[14.214375,38.33675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.442,55.811844],[16.613,55.70225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.084,42.745],[132.972,42.577]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.1205,61.925],[21.409,61.8605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.197,58.78],[1.874,58.453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.574,21.858],[-74.304,21.766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.001625,37.213],[26.913266,37.335828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.771,55.325],[-7.792,55.318],[-8.019,55.241],[-8.436,55.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.001,33.34],[-60.001,32.278]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.284562,43.64225],[9.299312,43.419438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.001,33.951],[31.371,33.836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.312875,61.169125],[19.437656,61.069562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.75025,37.608086],[25.696297,37.756797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.0965,57.7325],[17.956422,57.596609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.133,28.992],[-74.109,28.366]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.935,51.527],[-5.1365,51.54375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.9545,4.022438],[73.045,1.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.6525,35.4995],[12.802,35.7655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.67225,46.22275],[-1.630656,46.091781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.773,-15.071],[54.886,-16.567]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.0825,42.6135],[-10.054,42.858]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.892477,50.135],[-5.866,50.23975],[-5.856625,50.363937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.534,41.262],[-175.112,40.758],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.860348,49.971363],[-2.851625,49.80375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.865,43.7255],[7.707,43.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14,65.9755],[-13,66.242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.001,48.559],[-125.501,48.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.822,36.894],[-73.744,36.738]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.24625,57.42375],[19.346,57.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.101,63.809],[22.487125,63.902125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.867,39.871],[0.767,39.728]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.98725,47.8615],[-5.7805,48.216]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.4815,68.8795],[17.226,68.788]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.656437,59.089937],[10.559875,59.018375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.371938,61.606813],[21.147,61.721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.197,45.616],[-3.261,45.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.244,1.262],[-31.738,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.83,48.816],[-4.819,48.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.1655,34.625],[-73.974,34.366],[-73.84,34.1815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.627,-35.147],[107.841,-37.507]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.686,61.095],[-2.344,60.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.1215,67.6325],[14.122,67.816]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.974172,56.831703],[6.915062,56.724437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.858719,41.863641],[16.722,41.8905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.301,49.236],[-4.439375,49.223875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.82375,38.36125],[-72.192,38.709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.83,42.117],[5.959,41.944],[6.104,41.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.2105,31.921625],[34.273,32.036]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.046,37.762],[24.937938,37.6835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.54,43.763],[13.336,43.8555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-47.27,37.481]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.493625,63.190883],[20.76475,63.2915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.3925,58.337625],[20.527375,58.41625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.377,55.629],[10.239295,55.738719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.4,68.886],[15.246,69.0305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.261,38.528],[-10.162313,38.649938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.0275,58.081],[-5.81925,58.022875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.025413,43.585063],[10.157164,43.454414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.655,63.476],[-14.584,63.667]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.45025,56.354375],[-2.3285,56.291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.66075,38.5265],[8.75175,38.451]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.882094,43.651031],[14.044937,43.551812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.883437,49.86675],[-4.781438,49.663469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.1955,48.6105],[-5.36025,48.551969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.759,39.19],[-14.273,38.442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.553,53.745],[-5.486836,53.93818]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.723,50.463],[-16.447,50.4765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.911125,35.455625],[25.983578,35.662859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.76575,59.85875],[19.617594,59.841656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.296,39.821],[-9.665688,39.541438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.144164,50.056672],[-4.013937,49.934313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8,0],[6.762,0.372],[6.741,0.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.986,51.63975],[1.120984,51.713039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.293187,41.019125],[17.643,40.928],[17.746,40.883],[17.9385,40.773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.428,35.997],[-74.457625,35.79275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17,33],[-16.869812,32.617063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.963375,40.08925],[0.867,39.871]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.5555,65.454],[38.38,65.702]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.007,50.4875],[-6.2165,50.608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.252,35.246],[-129.819,35.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.314,36.59],[-12.27,36.733]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.542,30.01],[-64.663,30.087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.385,48.321],[-5.3965,48.123375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.657187,41.106875],[11.516,41.082],[11.3425,41.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.894,-5.6115],[117.122,-5.686]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.1,-18],[168.203,-18.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.3985,38.24725],[-0.42275,38.1165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.11925,34.68775],[-7.73725,35.47775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.7655,55.59375],[6.633,55.613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.569,38.308],[1.674,38.232]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.344367,43.149219],[10.439473,42.905105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.461063,54.628125],[-0.310188,54.656656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.112,52.262],[-6.997,52.276]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.712,17.954],[-75.908,16.961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.2435,-27.0115],[160.001,-25.478]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.749359,60.966672],[4.614125,60.8495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.596625,38.007312],[25.780949,37.976156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.362,-11.439],[122.864,-15.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.462359,43.401703],[7.608875,43.185562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.408,-5.454],[113.291,-5.762]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.37,33.03],[-63.466,32.319]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.215,42.3325],[17.110125,42.131375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.970688,39.329062],[13.78425,39.4815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.904,29.648],[-160,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.6685,65.542],[36.378,66.123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.33,-26.537],[9.998,-29.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.668,29.453],[-93.217,29.254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,0],[130.013,5.294]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.040625,59.444125],[18.90725,59.3835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.874,27.047],[-159.623,29.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.503,28.117],[32.829,29.073]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.82375,38.36125],[-71.91125,38.024687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.876875,41.803938],[9.816258,41.956148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.984906,41.55782],[17.161313,41.523086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.223,36.6],[-2.989375,36.541062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.599,33.913],[-57.79325,32.43325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.837688,19.982813],[-74.839,18.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.397,38.377],[4.57,38.683]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.211,58.224],[20.150562,58.106219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.782219,36.822125],[13.996,36.793],[14.10375,36.782]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.756,1.622],[109.8,3.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.417,40.093],[10.2125,39.9575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.93675,59.990781],[25.227781,60.117844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.15825,53.967],[6.975797,53.878438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.861375,59.5605],[24.673938,59.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.181906,42.581781],[18.26675,42.311625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.74,49.756],[-136.447,49.032],[-132.826,47.459]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.242625,54.67725],[8.231156,54.456891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.200188,56.443719],[7.228313,56.164125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.77,21.879],[-63.114,23.301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.538,38.476],[0.630594,38.774281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.761602,50.050055],[-5.6455,49.97175],[-5.50625,49.928562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.08,-39.151],[-147.493,-40.053]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.593281,50.174094],[-4.317813,50.068906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.02625,-9.99825],[100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.591125,37.244969],[23.574336,37.448672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.458,17.593],[-170,18.081]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.09,34.111],[35.116,33.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.439125,38.654156],[15.420437,38.801219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.8885,57.1615],[8.04525,57.22125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.388687,59.108156],[5.34725,59.24175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.887,42.112],[16.839344,42.003937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.3185,36.11475],[22.029,36.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.868109,42.674766],[8.674312,42.70125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.587,25.851],[-72.9055,24.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.45,57.674],[20.454,57.7895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.4675,39.127437],[23.289313,39.073]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.692164,42.73807],[9.680375,42.874688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.960219,53.640031],[6.769625,53.588031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.77825,57.569],[11.758984,57.331633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.63925,54.808375],[-5.552312,54.863062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.49425,36.581375],[-3.36875,36.371844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.5855,59.996],[26.68725,60.00425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.6045,-9.0895],[115.575,-9.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.332,55.6595],[19.214,55.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.839531,37.626],[23.703,37.77025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.258625,56.124625],[15.60525,56.14575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.136656,48.026813],[-5.275812,48.1095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.857,-25.142],[-125.006,-24.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.811,38.839],[-27.958,38.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.002,43.84],[-130.003,44.692]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.64925,46.56025],[-7.427,46.839],[-7.342,46.946],[-7.051,47.314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.797187,35.270313],[25.911125,35.455625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.313,-27.198],[64.471,-25.776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.6765,39.785812],[24.859875,39.55475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.241,37.2355],[-9.300937,36.831469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.966,55.058],[4.8645,54.6055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.011938,37.647875],[25.813418,37.781859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.38225,63.0945],[20.4455,62.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60.529,3.997],[62.292,2.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.1345,36.497],[138.127,40.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.44225,57.37925],[17.326813,57.37825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.683,54.062],[-3.686,53.954875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.443266,57.8495],[10.4255,58.022125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,-35.386],[-140,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.423,38.83525],[25.555,38.7135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.627875,54.857813],[19.457,54.937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.53,16.679],[67.572,15.616],[68.802,14.679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.419,56.379],[-3.391,56.383],[-3.271,56.36],[-2.8745,56.456625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.798,40.047],[-30,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.198,38.244],[13.039625,38.267437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.0245,1.169],[172.781,1.319]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.4295,56.916],[19.373,56.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.8995,54.911],[5.782,54.798]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[71.8235,-5.315],[72.388,-7.079],[72.440438,-7.267563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.832125,37.323375],[-11.1045,37.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.486813,49.913687],[-4.3895,49.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.193,-60],[-63.266,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.8825,37.213],[5.969,37.264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.73,65.6335],[-13.617687,65.598187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.598063,41.213188],[16.722859,41.281063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.525,-26.958],[-175.879,-28.786],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.078,54.476],[5.029,54.344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.06325,54.242375],[5.17375,54.925406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.297,23.6],[-68.316,22.5],[-67.636,21.288]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.20425,58.680586],[18.128,58.513],[18.164813,58.435437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.153625,54.709937],[15.262438,54.729438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.799563,56.712313],[18.87675,56.87575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.077,57.184],[4.8455,56.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.023,58.121],[-5.7395,58.6435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.382375,45.6065],[-1.481,45.661],[-1.5785,45.7045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.903,38.129],[9.683,38.4155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.397,59.784],[3.067,59.416]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.761,35.38325],[25.646,35.395],[25.613,35.404],[25.36775,35.442875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.689,40.374],[18.493688,40.443703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.59,48.57],[-153.97,46.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.624125,53.82775],[7.422562,53.793594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.398,49.924],[-124.571,49.873]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.193,39.87],[5.246187,40.040219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.881,34.908],[35.451,35.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.138,35.247],[-16.828,34.002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.297,28.749],[-148.9705,29.0905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.94925,52.9315],[4.1335,52.85625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.214,39.6155],[25.301125,39.56325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.636,51.3155],[-3.835875,51.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.187,36.481],[-123.4295,37.47575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.2595,62.2645],[18.419,62.3635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.815275,54.580532],[10.963938,54.581]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.728,40.255],[2.9,40.38175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.137375,41.205781],[10.01625,41.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.999,-27.923],[-20,-29.503]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.690062,41.219469],[9.722562,41.376844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.5605,34.7525],[-13.568,34.586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.336008,38.551061],[25.165,38.416]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.0655,39.07925],[25.273562,38.956484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.748,-13.127],[153.097,-13.446]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.816375,37.652375],[6.05,37.398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.578125,15.48],[-93.97325,12.928],[-90.991,11.489]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.058234,57.74757],[9.987586,57.908125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.068,47.123],[-5.022,47.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.605,38.145],[-69.631,37.604]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.451219,38.898406],[17.205938,38.69625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.434,32.566],[-17.85,32.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.314,64.8995],[22.234,64.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,61.232],[-20.003,63.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.101,28.746],[-94.417,28.082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.095,28.362],[-61.34,28.538]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.782625,38.671406],[25.098406,38.745773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.115,62.461],[4.1,62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.46325,36.31475],[-4.231,36.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-40],[48.503,-41.676]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.585977,55.589227],[14.59,55.428781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.346578,37.582609],[15.3595,37.4415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55,35.386],[-54.557,34.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.567,38.296],[16.457313,38.177813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.591,42.72],[-10.29,42.797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.614,42.7425],[6.356344,42.7935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.72975,60.6535],[17.8325,61.018]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.184,-37.852],[150.357,-37.766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.444109,42.7225],[10.307125,42.51975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.2005,32.01275],[-63.466,32.319]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.321,22.752],[-86.468,23.178]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.761602,50.050055],[-5.5235,50.0915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.993,54.162],[-4.227,53.953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.247625,57.206937],[8.247984,56.951031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.73825,41.006188],[11.763,41.146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.921891,58.37575],[8.756016,58.328711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.445,38.075],[10.619,37.895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.377,57.937],[-0.944,57.886]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.096,43.148],[28.439,43.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.447656,44.963156],[13.459375,44.802906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.303,60.933],[-5.825,61.091]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.966812,55.530113],[14.833406,55.412844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.635563,54.569938],[-8.767,54.4585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.73975,64.621],[21.631219,64.601719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15,54.336],[14.772875,54.1965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.147,17.967],[151.854,17.789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.1525,-5.892],[120.673,-5.656],[121.7,-5.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.943,61.875],[-86,61.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.1155,56.3765],[20.151375,56.527625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.7005,66.57775],[12.92525,66.2895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.123,40.982],[-37.685,42.592]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.253,55.403],[-133.98,54.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.995875,37.481313],[10.959688,37.590812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3505,59.89425],[4.41,59.709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.309875,54.976125],[15.3935,55.03425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.318,41.162],[10.222453,41.285062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.39125,62.12425],[5.1265,62.207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.069,35.196],[18.902,35.641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.750258,50.333555],[-0.756875,50.435437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.0985,70.325],[31.3885,70.676]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.818,55.1365],[10.721563,55.021375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.979063,42.141562],[-9.308,42.0975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.001,-52.4],[-62.869,-50.861]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.806,39.275],[-73.7785,39.40925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.221,41.505],[8.405,41.51825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.29875,54.643],[11.244311,54.539781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.453,-37.736],[55,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.5765,52.78375],[-5.723,52.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.059,-28.455],[9.998,-29.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.189,50.5685],[1.286406,50.68193]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.152,0.007],[-38.995,1.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.07125,59.727875],[22.752,59.524]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.983969,57.777156],[-1.880156,57.838547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.418,25.319],[-87.729,25.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.798375,53.92875],[-3.993,54.162]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.50525,42.98875],[14.522313,43.238125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.863875,57.725],[7.739352,57.566789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.009375,48.941063],[-3.991312,49.086812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.04975,39.51075],[10.1695,39.107]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.218,52.697],[4.242,52.804125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.436,53.898],[-35.517,53.342]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.362,-0.489],[125.5,1.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.667375,55.756125],[19.727406,55.614375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.167375,59.504625],[20.0445,59.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.33525,52.56475],[2.381875,52.661125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.99,43.194],[-35.109,45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.793,-5.486],[176.722,-8.823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.11,14.333],[-55.4615,15.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.0415,49.3585],[-6.035234,49.205703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.741,46.635],[-145.112,45.402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.145875,36.635],[26.999023,36.667992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.469,-21.056],[113.382,-21.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.224,47.41675],[-4.018,47.51025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.349,40.062],[-69.491938,40.297187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.266,-60],[-70,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.376,58.087],[18.362625,57.921062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.2575,71.55],[26.4995,71.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.7395,12.9925],[-60.834,13.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.491938,40.297187],[-69.518,39.928]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.276,58.682],[-1.778,58.673]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.885687,37.6785],[11.729563,37.785062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.462,46.946],[-10.404,46.193]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.304,42.583],[8.254188,42.212844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.72,49.31],[-9.041,49.366]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.8715,36.415],[-22.387,34.824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.922016,57.835414],[10.907063,57.982016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.057,33.215],[128.9,31.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.670625,44.65625],[-8.7905,44.57725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.472062,36.846],[26.43,36.95325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-109.999,-32.38],[-110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.7985,10.6865],[-61.8895,12.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.724,35.946],[-3.647563,36.102063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.048098,37.050152],[25.16417,37.260051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.416,27.233],[-68.514,27.394]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.654,35.267],[-8.584,35.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.023,36.806],[13.303,36.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.318,41.162],[10.137375,41.205781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.472789,58.105783],[6.293062,58.015375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.001,31.339],[-130.999,31.086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.975,60.082],[20.953,60.081],[20.75525,60.08475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.002,46.72],[-40.001,48.819]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.388,39.748],[14.303,39.843]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.772625,54.616875],[13.654887,54.568508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.833,57.62],[6.895,57.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.335125,52.962187],[3.574,52.851]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.933,47.445],[153.688,46.196]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.055,27.43],[-87.003,27.148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.439,36.633],[24.273031,36.518203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.386,42.865],[131.773,42.119]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.574,29.138],[-15.508,28.874]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.72025,36.530187],[26.821148,36.500563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.574,38.781],[-70.667,38.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.441,4.494],[-50.02225,10.00675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.580813,63.26475],[19.458,63.536],[19.615,63.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.161687,54.593969],[14.079625,54.454125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.6215,37.2355],[6.8825,37.213]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.948094,60.237562],[21.751,60.222062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.901,-20.269],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.758,-35.162],[-39.998,-35.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.976562,58.336062],[19.103625,58.0825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.5405,54.88],[14.375625,54.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.42,27.703],[-74.352,26.892]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.414,36.575],[-1.3815,36.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.397625,37.981],[8.61725,37.91525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.5435,36.8875],[21.309,36.79125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.1135,21.70575],[119.314,19.914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.767,48.968],[-7.0705,49.00275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.038885,45.242312],[13.140313,45.131125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.332906,48.881406],[-5.42959,48.744031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.727,57.158],[7.65025,56.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.921125,44.238812],[9.004,44.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.555813,43.693922],[14.5935,43.573813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.766,27.727],[-89.89,27.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.985313,49.198062],[-3.069125,49.372]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8,0],[4.265,0.016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.001,14.997],[-153.003,15.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.15,65.962],[-171.713,67.218],[-179.447,69.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.669,38.9545],[14.817625,38.910875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.432375,38.72425],[9.324687,38.865562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.76475,63.2915],[21.305,63.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.589,51.897],[5.6535,51.958],[6.037,51.874]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.557,16.147],[-75.269,17.741]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-50],[-164.888,-45.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.265332,43.470359],[16.143,43.4715],[16.042969,43.42407]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20,-50],[20,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-50],[-20,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.193,64.873],[21.785,64.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.057719,36.526059],[26.947301,36.533693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,2.743],[-36.455,6.509]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.864688,49.751],[-5.756,49.464],[-5.7535,49.327]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.70075,39.884],[13.825625,39.800625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.56175,59.9105],[21.42325,59.60925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.660875,57.97925],[23.68975,57.8705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.082578,36.220953],[23.881875,36.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.205,55.203],[6.118,54.651]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.505516,61.508156],[17.957,61.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.388,54.981],[16.246422,54.970922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.001,41.245],[11.763,41.146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.305125,39.391562],[0.43575,39.42275],[0.714344,39.443875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.143,39.667],[10.417,40.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.054,-10.036],[64.452,-10.033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.417625,56.110875],[18.535,56.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.6115,44.854],[-4.797,45.654]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.013,5.237],[-4,4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75.956,6.97],[70.819,8.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.462375,40.718906],[13.767969,40.617031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.394,39.311],[-75.076,38.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.8545,38.676],[-10.899,39.7605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.273,5.454],[70.819,8.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.312,32.568],[-126.598,32.096]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.8,-20.2],[-75.294,-20.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,17.845],[-120.001,13.894]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-20],[-175.5,-21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.945,-24.182],[70,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-12.502],[-1.0935,-11.134]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.0435,43.469406],[10.099937,43.349375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.338,47.058],[-169.39,41.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.1695,39.107],[10.042,39.058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.048,60.931],[3.72575,60.94075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.798375,53.92875],[-3.686,53.954875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.776,16.377],[-39.9945,20.0065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.0355,60.15975],[28.317875,60.1155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.6325,38.4875],[11.5895,38.60175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.986,69.5195],[16.7485,69.081125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.647,43.524],[28.619375,43.390875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.373375,41.273875],[8.574344,41.261812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.255,-24.51],[-165.333,-24.947]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.008453,37.544078],[-0.91,37.514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.193,59.9485],[21.36675,59.84175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.493,-40.053],[-142.555,-42.861]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.39425,38.94475],[25.423,38.83525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.616437,36.258125],[26.38075,36.147875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.397,34.267],[-8.811,34.004]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.929,29.463],[34.705,28.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.581,14.883],[-61.562,14.556]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.901625,57.337312],[10.654891,57.282262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.448,41.732],[3.513219,41.580812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.7,5.932],[-88.55,7.306]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.022,47.224],[-4.971,47.38375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.161687,54.593969],[14.375625,54.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.26625,38.835375],[8.18575,38.70825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.881,35.569],[29.48,35.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,5.003],[-29.829,4.861]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.329359,56.167422],[16.202781,55.981562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.103,-0.099],[-90,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.073,54.454],[7.959781,54.419438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.292,37.2765],[26.167406,37.277938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.048969,58.610875],[4.789,58.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.779875,65.187375],[22.6665,65.2155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.137,37.131],[0.94,36.957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.386,35.691],[16.646,35.725],[15.95,36.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.829,55.206],[-132.311,54.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.884937,57.489125],[7.851,57.339375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.619,57.11],[7.538125,56.988812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.641625,39.316125],[0.829688,39.325937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[63.938,-14.091],[64.03,-14.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.71,41.563],[18.86775,41.4815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.645,61.533],[-168.853,60.50725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.666,54.888],[14.671,54.721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.005125,50.132875],[-2.066,49.9695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.418,-9.531],[-163.706,-6.348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.70375,54.90175],[18.830938,54.952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.036563,59.35375],[24.079406,59.485641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.1135,21.70575],[114.253,21.772]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.371,40.548],[1.48725,40.60825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.955953,41.245672],[9.900125,41.061937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.2575,60.67525],[18.4745,60.63475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.2995,66.482],[-14.426,66.426]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.014,60.267],[-1.023062,60.089125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.722,56.369],[-1.49475,56.37125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.87875,39.71975],[0.939312,39.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.466039,55.658266],[-1.085,55.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71,-18.9],[-75.283,-15.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.422688,43.642125],[15.347188,43.719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.611,37.170625],[15.766875,37.08575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.807,11.264],[110.329,11.897]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.859562,44.733937],[14.961,44.587],[15.092,44.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.482,-8.1005],[47.0435,-1.286]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.429336,37.93318],[24.469781,37.784891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.226,31.282],[-74.183,30.238]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.123,16.035],[131.329,15.214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.55,62.003],[-7.028,62.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.052,48.856],[-122.776,48.754]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.2315,55.50075],[7.115,55.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.295,39.793],[13.186,39.679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.398,47.694],[-3.225,47.509],[-3.106625,47.4005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.479,37.911],[-9.38,38.256]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.737,-2.968],[123.781,-5.072]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.974,12.464],[-54.11,14.333]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.7915,38.6235],[19.531,39.168125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.241,49.344],[-0.136047,49.512703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.865,45.3925],[-4.129844,45.311562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.109,45.405],[-25.548,45.818]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.3,-23.5],[-39.72,-23.828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.149,-45.637],[-50,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.299656,56.545609],[12.126,56.6125],[12.022469,56.730469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.096453,54.026688],[8.109,53.893562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.969812,54.525078],[11.671484,54.520078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,51.3],[174.14,50.688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.492,26.931],[-92.094,26.292]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15,-35.386],[-14.615,-35.018]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.109875,58.472375],[20.17725,58.648125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.193891,43.80825],[8.39725,43.766875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.0805,48.083],[-5.98725,47.8615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.295,-7.16],[3.74,-9.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.192,-35.583],[113.627,-35.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.7815,60.85],[4.852938,60.690344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.072,5.983],[-135,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.605,38.145],[-69.811,37.362]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.233,39.706],[-11.0815,40.171]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.581359,59.451078],[22.273719,59.327687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.297,47.224],[-5.2705,47.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.085,60.123],[6.024,60.08],[5.991,60.061],[5.954,60.038],[5.8355,59.968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.708391,41.070266],[9.782406,40.969906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.187359,37.083187],[26.080867,37.187129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.48325,19.464875],[167,19.417]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.204,21.506],[-79,23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.920625,61.952],[20.967,61.815],[20.978,61.784],[21.071562,61.531188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.682125,-17.353625],[-147.511,-12.611]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.086,57.245],[19.094938,57.35625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.882,-16.934],[149.431,-17.608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.450445,64.356875],[22.43,64.018]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.101,69.5915],[43.0975,69.6785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.394875,38.940438],[26.3335,38.78825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.008,35.948563],[14.163,35.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.661375,58.28575],[19.68,58.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.231,57.4425],[9.455406,57.531531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.241,37.2355],[-9.356312,37.115141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.844,40.8305],[-10.842,41.209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.828187,58.286062],[20.211,58.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.692,42.354],[-70.118,42.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.25,41.9],[139.4,41.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.511,-12.611],[-145.715,-14.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.968813,48.644281],[-6.1305,48.4495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.6175,52.0285],[-5.671625,51.894875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.23925,49.463688],[-4.217,49.290875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.362,-11.439],[122.06175,-11.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.58,42.439],[-165.744,42.161],[-168.347,41.851]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.03,53.907],[13.8095,53.85425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.946,0.058],[104.378,0.553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.296,39.821],[-9.591125,38.638125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.034,37.8625],[11.92725,37.891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.257906,44.431859],[13.991812,44.193875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.846,44.211],[37.241,43.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.639344,36.376688],[24.486187,36.420883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.901625,57.337312],[10.881344,57.460531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.991,-35.378],[-50,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.68075,40.573],[10.842,40.697125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18,-35],[12.221,-39.337],[11.108,-40.024]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.35425,35.3735],[28.023,35.50875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.78075,40.069],[-73.7785,39.40925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.094,57.606],[20.148688,57.831875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.24875,51.86125],[-6.178,51.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.973937,64.72425],[22.7955,64.5765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.585266,36.680078],[23.709031,36.578938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,40],[-155.114,40.104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.092,17.216],[65.083,15.253]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.2215,49.992],[-2.444969,50.004984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.181,-55.748],[-64.26,-55.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.914,55.669],[15.044125,55.693125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.233,31.641],[-79.26,30.372]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.247,46.126],[-4.3045,46.242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.854,43.743],[38.635,43.4785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.42125,53.672031],[8.537,53.559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.341563,37.663094],[12.391813,37.783563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.464,-45.08],[156.903,-43.469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.984,48.282],[-15.284,48.231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.183,56.078],[-2.0355,55.905625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.06025,48.81825],[-5.21725,48.96675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.581,-24.856],[-140,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.417,57.543],[23.031,57.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.7915,38.6235],[18.932,38.898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-10],[86.761,-13.377]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.375,43.5385],[-3.487,43.5565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.2525,16.215],[39.335,19.909]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.126,30.137],[-155,35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.045574,42.939012],[4.89,43.04925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.728,60.892],[-30,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.283234,43.576547],[15.151125,43.399875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.283,36.3575],[-6.089,36.017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.429,11.4945],[119.939,12.895],[119.9145,13.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.548,45.818],[-28.802,48.874]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.900125,41.061937],[10.01625,41.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.688,63.0455],[19.95325,62.944]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.548882,-31.410533],[153.479,-32.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.544,64.185],[-22.661375,64.139125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.305,61.097],[21.155,60.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.958,29.816],[-93.7655,29.5235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.424,37.992],[11.268,37.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.564,39.173969],[25.598969,39.381262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.124953,36.624328],[15.2715,36.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.652,40.4765],[18.689,40.374]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.635,54.501],[2.32,55.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.622344,35.928063],[-7.5575,35.8275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.412,42.533],[14.28925,42.629625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.33,25.588],[140,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.767188,55.361438],[7.86725,55.2665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.109,-1.125],[-5,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.371,36.889],[-23.8715,36.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.469,18.039],[144.155,14.452]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.672,-4.049],[40.3,-4.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.315,37.275],[-123.259,37.172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.647,24.926],[-62.306,27.483]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.341,56.215],[18.535,56.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.227,38.8435],[20.113,38.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.11,-45.405],[130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.246,-27.355],[154.061,-31.13],[153.619,-32.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.83925,64.762188],[-13.916555,64.593055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.652875,-23.02875],[168.532,-23.506]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-177.578,27.621],[-178.5,28.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.081,14.588],[67.183,12.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.3425,41.069],[11.254,41.172],[11.145109,41.333125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.35625,43.219],[8.220344,43.037781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.802,35.8925],[34.697,35.8635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.18575,53.974],[3.91975,53.831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.627,-29.408],[-20,-29.503]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.310188,54.656656],[1.17,54.124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.9945,44.2065],[13.197437,44.300875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.9125,38.4885],[1.031,38.4555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.59975,53.37525],[-4.416,53.47225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.8,-0.9],[-80.298,1.202]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.316,55.694],[6.233,55.604]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.825219,48.522094],[-5.693188,48.387812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.455406,57.531531],[9.367,57.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.165,38.416],[25.315375,38.36275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.108875,51.252875],[-3.413312,51.341313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.513,60.358],[19.536,60.373],[19.658,60.46175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.42375,68.73575],[15.4,68.886]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.676539,37.887812],[25.780949,37.976156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.703383,42.106164],[15.431,42.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.347078,41.885453],[16.45125,41.823125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.544,37.487],[-71.91125,38.024687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.64425,40.12075],[18.835344,40.158781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.495,21.479],[-71.705,20.817]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.882,-45.737],[-60.205,-48.384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.406781,38.693469],[0.2745,38.6365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.816258,41.956148],[9.747133,41.83657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.043125,54.133],[11.143062,54.089687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.69,-0.688],[109.101,2.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.101,2.245],[107.761,0.309],[107.69,-0.688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.307953,49.198984],[-2.302,49.3655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.771,65.009],[24.217,64.99575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.347188,43.719],[15.283234,43.576547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.79,35.018],[31.3675,34.8885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.56425,50.085125],[-1.528859,50.208109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.92975,57.38025],[19.126031,57.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.175,39.382],[-29.9785,39.00525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.435875,58.189125],[18.317,58.217]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.064016,63.151594],[19.017,62.933],[18.9975,62.7195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-10],[-136.339,-13.808]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.384,21.576],[-108.821,22.882]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.510375,63.660875],[21.65925,63.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.84723,57.855687],[9.714336,57.812898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.880016,54.607469],[7.746,54.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.2085,55.3965],[18.346,55.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.924,12.404],[54.187,14.031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.286125,38.122125],[11.424,37.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.9,-1.4],[-42.984,-0.086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.344,41.585],[-128.687,41.243]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.389906,42.697969],[7.883625,42.72525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.157,39.387],[-31.098,39.679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94,6.7],[97,7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.3995,51.282],[141.5325,52.837]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.334852,55.396055],[7.3005,54.952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.703,-18.3575],[-180,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.72775,57.23575],[-1.609,57.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.143625,36.10675],[24.918109,36.127172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.865656,42.697406],[5.813,42.433]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.765,17.15],[-158.377,20.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.937,44.501],[-5.945,44.7175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.266563,60.510062],[5.413,60.5035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.4,17.001],[119.565,18.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.9415,36.116],[27.062875,36.194766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.054,8.175],[67.296,7.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.763562,43.988937],[14.571469,44.039531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.246,10.563],[95.188,10.681]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.04475,43.060625],[8.92575,43.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.018,54.687],[5.8995,54.911]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109,16.1],[111.831,16.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.073,54.454],[8.0505,54.339]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.587504,45.589098],[13.703594,45.638473],[13.574938,45.754375],[13.587504,45.589098]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.22475,56.46925],[-2.45025,56.354375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.9795,65.8225],[-20.722125,65.969375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.506,48.0165],[-5.55525,48.37175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.168,-10.028],[70,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.45,-8.317],[125.7,-8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.530898,59.382117],[10.598375,59.528781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.3815,36.4325],[-0.6,36.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.383,70.668],[-133.348,69.623],[-135.634,70.316],[-139.14,70.7125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.365,-14.374],[7.25,-15.942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.698,-13.26],[152.72,-13.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.182,-19.785],[55.641,-19.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.137031,48.747781],[-2.3565,48.98475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.344,24.21],[118.4495,24.3335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.137,-5.918],[-140,-5.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.507973,48.596453],[-5.55525,48.37175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.9815,54.8525],[-0.765,54.8335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.641625,39.316125],[0.588062,39.093312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.875063,36.291312],[26.616437,36.258125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.149,7.185],[78.01,7.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.005828,52.502695],[2.259,52.467]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.034437,39.824531],[18.7885,39.774062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.049031,42.630125],[18.181906,42.581781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.3,-24.3],[-44.678,-25.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.718,-20.503],[160,-20.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.194625,39.246],[2.243688,39.123438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.20375,43.705],[8.02875,43.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.878,-24.463],[159.459,-20.406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.062,57.1075],[-1.382188,57.299813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.551172,50.742578],[-0.678891,50.605625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.9675,37.06725],[13.837875,37.0335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.636258,38.502305],[20.764938,38.532688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.553,51.401],[0.657,51.42],[0.752,51.459]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.90225,50.6475],[156.279,49.829]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.635,43.065],[34.752,42.817]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,20],[-120,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.734,59.853],[-168,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.348,58.1305],[19.56275,58.10175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.824063,58.20675],[10.782141,58.092062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.011,42.2895],[17.110125,42.131375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.268,40.596],[26.387,40.159],[26.196727,40.064031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.507,-54.28],[-36.315,-54.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.302125,67.72325],[14.434,67.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,4.252],[-127.045,2.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.24025,39.00025],[16.567,38.296]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.854,24.086],[-35,25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.93225,56.97925],[9.124875,56.9615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.1725,50.673],[-5.718,50.183],[-5.761602,50.050055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.585266,36.680078],[23.539695,36.797211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.0505,38.5065],[11.02525,38.69325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.543,42.304],[5.711,42.261625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.24675,58.373],[-1.296,58.169]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.6605,37.1105],[3.7635,37.2585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.4,68.886],[15.53,68.877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.205,-23.397],[-10,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.6585,58.153],[9.723844,58.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.767969,40.617031],[13.881344,40.604789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.524,-16.084],[146.5865,-16.4795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.852359,35.743156],[24.610125,35.743625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.675179,43.535677],[15.785188,43.467188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,10],[-110.0945,9.9615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.5895,38.60175],[11.463,38.8435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.982,45.18],[30.5215,45.18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.942,33.889],[24.9115,34.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.959,-4.539],[110.698,-3.598]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.450445,64.356875],[22.7955,64.5765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.062148,42.430477],[10.873,42.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.761,37.9595],[-123.4295,37.47575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.499,41.862],[9.716375,42.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.613,63.693],[-164.526,63.25],[-164.954,62.999],[-165.003,62.661],[-165.64,62.793]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.2705,59.967],[26.413812,60.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.843,18.958],[72.799,18.856],[72.4,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.6,-46],[160.52,-40.571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.122,67.816],[14.242,67.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.365187,60.104875],[22.352,59.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.292125,42.721125],[15.416125,42.770187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.782406,40.969906],[9.900125,41.061937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.865656,42.697406],[5.5585,42.6005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.663,-15.802],[162.557,-16.494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.550938,42.344125],[19.0675,42.089]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.652,49.887],[-5.761602,50.050055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.001,-52.4],[-64.995,-54.539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.937,50.5525],[-4.967,50.653]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.264,26.263],[-86.8515,26.3215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.993,51.883],[-5.9585,51.6985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.4185,-8.205],[125.7,-8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.603437,50.662625],[0.757086,50.611703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.431,21.538],[-66.6445,19.8355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.3,38],[-22.3135,37.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.351,37.814],[-9.4575,37.8095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.746031,60.597609],[18.896313,60.581609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.343,-34.178],[17.181,-34.101]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.127625,57.972062],[6.0645,57.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.345,38.871],[11.029,38.876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.647125,58.605219],[17.836891,58.662578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.1525,-5.892],[119.505,-7.529]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.744,41.572],[11.7015,41.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.684,-14.364],[54.286,-10.031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-30],[-135,-30.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.098,36.4535],[21.925,36.483375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.045064,38.408082],[15.188937,38.332734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.571,40.572],[0.835,40.4185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.9945,43.918],[29.0355,44.05925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.166344,43.134563],[5.141,43.237]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.20275,7.06625],[82.139,6.819],[82.085346,6.615288]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.0765,40.52625],[2.790875,40.621656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.23575,48.702375],[-2.303,48.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.256,-19.043],[177.105,-20.708]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.112875,43.403375],[7.74975,43.37025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.188,40.58225],[13.12025,40.358]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.96625,52.007125],[2.93675,52.1415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.664,57.00225],[-1.8555,56.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.221,43.8965],[-8.4805,43.931]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.65825,35.5395],[23.676313,35.7485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.532,-23.506],[167.912,-23.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.406,29.34],[-88.07375,30.10275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.546594,40.587594],[18.30175,40.94275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.488938,40.038406],[14.725625,39.76425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.965125,61.15425],[17.957,61.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.397281,57.249102],[11.386,57.137],[11.32925,56.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.343,64.56],[11.356,64.684],[11.163,64.724],[11.28,64.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.986406,52.129875],[-5.802,52.02325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.02625,-9.99825],[104,-7.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.62575,49.34825],[-5.54,49.401]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.472,54.141],[-164.908,54.456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.636,72.175],[-126.6705,74.5495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.999,19.998],[60.4,22.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.048813,41.719125],[11.155,41.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.487,42.09],[4.001,41.906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.6985,-26.589],[34,-26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.214375,53.652],[1.766,53.587]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.080625,50.631875],[0.204687,50.567141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.797,71.151625],[21.567,70.821]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9,39.289],[10.032,39.59575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.884687,42.735141],[17.727625,42.65275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-10],[-124.872,-10.036]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.6995,57.301],[8.772078,57.447109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.0385,40.66225],[-73.813,40.446]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.164813,58.435437],[18.145,58.324]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.197,28.729],[-73.251,28.013]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.04,24.41],[-81.825,24.219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.632688,58.402563],[5.780375,58.159937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.175,40.145],[17.240875,39.144031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.6195,60.1495],[19.705188,59.993406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.178896,54.620967],[10.043996,54.757462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.8175,55.761938],[20.705625,55.69775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.568,48.142],[-6.323187,48.24875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.4215,56.8835],[11.5545,56.932375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.048828,50.385953],[0.2265,50.350313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.532438,37.443875],[25.662875,37.394937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-172.486,-16.912],[-170.739125,-14.418875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.236531,41.044938],[1.337,41.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.582187,46.53325],[-2.618,46.4045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.544531,38.937],[26.394875,38.940438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.824,36.671],[-73.822,36.894]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.086,-18.176],[167.886,-18.472]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.456018,36.948008],[21.3035,37.0535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.530828,53.493547],[-3.35025,53.537562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.887,42.422],[5.00275,42.4215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.02,37.959],[-68.415,37.827]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.905,35.94],[30.8295,35.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.945,58.24],[3.241,58.209],[3.38,58.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.79,53.24275],[3.097,53.067]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.154062,56.9635],[19.09975,57.083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.552312,61.616937],[19.654,61.773375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.046,39.553],[1.8105,39.4265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.683,37.611],[-75.277,37.303]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.001,42.47],[-160.001,41.749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.677,61.398],[19.641,61.291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.26,-10.031],[-1.989,-10.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.521219,58.086594],[10.506812,58.233125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.0655,39.07925],[24.8155,39.07775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-10],[-98.025,-10.014]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.357438,57.459688],[-1.470125,57.394125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9185,42.94125],[4.91785,42.940591]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,35.386],[-36.438,33.873]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.543,30.214],[130.9,31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.981,39.1945],[25.0655,39.07925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.391375,63.806125],[-22.497,63.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.966812,55.530113],[15.267492,55.642883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.588234,55.322172],[15.688719,55.436031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.417,22.161],[-86.363,22.00975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.1,47.118],[-3.87,47.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.75075,45.03025],[12.711844,45.123281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.468312,43.437344],[14.522313,43.238125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.51,-12.361],[6.365,-14.374]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.0055,-9.99425],[53.773,-15.071]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.22775,58.01625],[10.102,57.981]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.799,27.605],[-94.416,27.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.907063,57.982016],[10.782141,58.092062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.573,55.787],[18.963,55.778125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.2,53],[-10.373,52.4085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-17.318,41.932]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.33,52.244],[3.441813,52.015906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.885,-28.723],[111.507,-25.394]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.118859,43.526453],[-3.487,43.5565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.093375,50.209563],[-2.005125,50.132875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.579297,36.488062],[26.420563,36.5375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.380484,37.715898],[24.469781,37.784891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.942656,44.383891],[9.148656,44.284717]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.478563,51.326],[1.544219,51.431562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.868,56.834],[18.01975,56.725062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.740406,48.163031],[-4.798641,48.058188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.062961,37.843938],[21.013375,37.744625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.804,41.061],[-8.98075,41.019875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.1655,61.254],[18.158125,61.129375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.43825,36.750375],[26.472062,36.846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32,-30],[33.6985,-26.589]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.384,56.611031],[-2.22475,56.46925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.19575,54.83725],[12.088625,54.5905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.482688,55.224187],[15.3935,55.03425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.387,34.824],[-22.296,34.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.6035,37.025],[-9.4085,36.9005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.5585,42.6005],[5.45725,42.572]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.066375,55.035562],[14.181,55.0765],[14.282291,55.167619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.411613,43.265967],[16.370969,43.074438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.519,27.66],[49.255,27.971]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.279,25.265],[55.103,25.538]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.934,12.357],[-80.113,10.776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.249,51.8],[156.90225,50.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.083,70.934],[26.461,70.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.935922,43.688109],[-6.431009,43.743467]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.7045,57.088],[-5.825,57.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.069344,39.92525],[-0.19,39.6205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.223406,64.253375],[-22.544,64.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.37125,46.746781],[-2.512,46.634]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.303,-55.025],[-79.996,-54.774]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.926,36.575],[21.765,36.649953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.3005,62.2955],[5.6555,62.5285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.022,49.998],[-2.924734,50.048328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.2085,61.0955],[4.962875,61.23025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.44175,55.905875],[17.365,55.809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.037688,10.012625],[67.183,12.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.559312,55.7235],[20.412,55.7145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.332,-24.658],[-158.248,-21.795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.708,36.1845],[15.926,36.251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.136,31.709],[-67.531,33.247]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.675031,44.151812],[14.803422,44.150188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.58,0],[160,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.641,36.829],[31,36.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.045477,58.70118],[10.158938,58.655438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.580813,63.26475],[19.722,63.228],[19.84525,63.1775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.378,49.074],[-123.052,48.856]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.212156,57.092328],[12.0865,57.13725],[11.901625,57.223375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.007094,42.077813],[9.947281,42.268563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.538,20.105],[124.383,20.997]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.684,61.894],[-6.903,61.313],[-6.56725,60.87025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.89,43.109],[132.141,42.333]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.512,-8.11],[-30,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.534,37.753],[-73.744,36.738]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-99.994,74.456],[-98.853,74.803]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.672,42.614],[5.558875,42.49275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.969711,36.537469],[24.798391,36.547055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.182,25.784],[-79.956,25.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.489,65.058],[-23.70875,65.088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-106.346,0],[-107.018,1.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.169062,53.733187],[-6.020625,53.732812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.693234,55.11175],[9.85175,55.0785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.436063,57.685312],[7.484187,57.39625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.392,41.835],[38.432,41.411]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.0635,48.824],[-4.211,48.93775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.774,66.5575],[-15.559,66.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.197,-8.048],[-14.2795,-7.9615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.379,57.785],[22.16,57.73],[21.91875,57.678]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.196,38.1005],[-9.339,37.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.508516,42.971422],[8.64225,42.827]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.001,48.263],[-52.7,46.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.793625,62.00675],[4.773984,61.835141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.25625,42.661938],[16.22367,42.828633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.9905,38.111],[11.866937,38.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.574,39.7205],[3.452625,39.15675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.4465,55.1275],[12.58675,55.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.362625,54.821125],[12.4745,54.709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.423,59.42],[4.52,59.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.619875,61.102125],[19.558625,60.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.405,53.76525],[-4.7125,53.945937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.111,-45.404],[60,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.834,55.801004],[15.6885,55.868688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.819,28.884],[-140,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.377,53.038],[1.74975,53.0515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.696,71.084],[28.158,71.278],[27.58,71.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.599,29.745],[-74.576,29.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25,-15.17],[-30,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.620797,37.164937],[25.445227,37.265547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.07,16.489],[-24.8185,16.9815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.9585,56.3915],[3.997,56.211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-50],[-114.888,-45.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.6015,40.8335],[2.7165,40.9285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.174062,60.283125],[5.272703,60.148813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.235,47.649],[-17.658,47.514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-103.444,-1.851],[-100.761,-0.772]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.112,-45.403],[100,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.0765,57.837],[-0.944,57.886]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.015738,42.886645],[9.869148,42.83407]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.754,32.377],[-64.853938,32.354]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.935125,42.460375],[15.838797,42.578672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.53975,39.632812],[24.36175,39.533281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.1985,41.6105],[10.171,41.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.954,49.745],[-4.781438,49.663469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.075875,58.753875],[5.292625,59.019719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.29475,55.996],[18.058125,55.827438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.797,71.151625],[20.716,71.27075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.055,-10.007],[-169.32,-10.714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.0135,46.035],[-2.499,45.798]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.91,15.629],[-99.578125,15.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.176,43.257],[-10.055594,43.343344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.218484,54.489812],[10.318812,54.628844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.25,7.251],[83.979,11.557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,30],[-127.833,30.041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.3935,55.03425],[15.428125,54.877531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.731883,38.950109],[25.791,38.855],[25.883766,38.665375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.2435,37.88075],[-25.089,37.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.304,42.583],[8.389906,42.697969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.962125,58.405687],[5.866594,58.323113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54,46.1],[-56.1865,46.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.071,70.885],[-51.676,70.588]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.892,41.170313],[17.043375,41.15575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.662,-33.677],[106.215,-32.111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.81575,57.98175],[-1.9885,58.0805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.562094,55.989156],[7.44,56.2185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.757562,37.463438],[25.75025,37.608086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.1,-26.4],[53.889,-23.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.78925,42.880656],[-9.83,42.684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.043,21.094],[-175.061,25.219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.714,57.357],[16.503812,57.258313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.2265,40.19],[24.36725,40.08575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.6,24.3],[63.3,24.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.10975,64.289344],[23.715,64.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.858719,41.863641],[17.136,41.9055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[63.938,-14.091],[64.0745,-13.939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.947969,59.681281],[4.945469,59.560281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.768812,56.5435],[17.242,56.231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.4835,36.8185],[-2.51025,36.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.682,59.155],[20.79,59.192]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.088035,49.877716],[-5.179,49.6595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.811375,46.65775],[-2.957,46.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.990547,54.009406],[7.85825,54.026781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,20],[-155,20],[-157.45675,21.062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.1175,30.3905],[-80.232,30.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,0],[-12.697,4.351]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.619,35.65125],[-15.508,35.498]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.002,-36.621],[70,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.001,-39.62],[40.316,-39.708]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.571,-23.234],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.418,57.889],[16.547,57.822],[16.780188,57.689125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.937,46.061],[-4.085375,46.287625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.495,69.52],[54.412,69.697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.7925,54.9255],[19.77925,54.7095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.914,9.536],[-82.8965,10.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.733,46.57],[-2.618,46.4045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.806,52.786],[-3.975875,53.351812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.883,25.173],[-73.477,24.832]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34,-26],[36,-24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.1925,30.353],[-77.888,30.351]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.4085,60.121],[5.343,60.0215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.651,44.958],[-155.417,45.128]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.794,39.124],[9.679,39.077]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-40],[-45,-40.107],[-50,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.51975,57.5545],[-1.357438,57.459688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.504125,38.08125],[25.6205,38.1095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-10],[165.404,-5.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.6625,71.2395],[19.694,71.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.495,37.442],[-10.832125,37.323375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.473875,19.311],[-66.215812,18.676063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.536,38.757],[7.389,38.691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.657687,55.1635],[14.565151,55.007522]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.394,-26.942],[-47.657,-30.436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.671,54.721],[14.482,54.686]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.643,37.765],[-123.603,38.131]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.8135,40.565],[24.822,40.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.827125,36.454781],[23.709031,36.578938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.9,28.284],[-89.412,28.223]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.03075,44.0175],[13.111,44.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.035546,19.990821],[-61.77,21.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.591,33.315],[28.976,33.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.4585,38.4735],[12.253062,38.459375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.834,55.801004],[15.812328,55.619172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.9675,37.51475],[3.15,37.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.6205,59.586],[2.8475,59.4995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.045477,58.70118],[9.974328,58.589453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.051,57.140375],[-7.257,57.148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.699469,42.973188],[14.892,42.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.781,-0.212],[-42.984,-0.086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.439473,42.905105],[10.30725,42.94575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-31.01],[-10,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.211875,49.594375],[-3.13575,49.6995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.848594,54.805672],[15.855031,54.955906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.053875,58.408],[-2.950254,58.636547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.811,61.17125],[19.641,61.291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.655,4.141],[119.702,3.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,38.862],[-29.9955,37.929]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.733,-14.902],[70,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.8465,55.283],[18.757711,55.171898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.14625,39.548],[14.17725,39.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.097,38.988],[1.253,38.986]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.445,26.271],[139.999,24.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.34225,43.293],[9.452469,43.254219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.072969,36.014047],[27.08,35.901]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.052625,58.21275],[21.181469,58.107875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.465,56.984],[-20.949,59.174]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.014062,38.378375],[-8.9695,38.009]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.451,63.449],[20.4485,63.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.373,37.529],[-68.148,35.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.751,32.2],[24.464,32.577]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.6365,58.829937],[9.786531,58.940641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.513063,35.925687],[25.666,36.0145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.947301,36.533693],[26.999023,36.667992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.8155,55.7875],[6.7655,55.59375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.556641,43.06575],[9.656719,43.130891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.714,9.512],[-81.798,9.583]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.00275,42.4215],[4.922,42.338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.44875,47.672],[-4.154875,47.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.324687,38.865562],[9.47,38.8725],[9.61225,38.884687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.568,-25.298],[112.8035,-25.018]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.808,-9.031],[133.007,-8.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.136,41.9055],[17.140937,41.76375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.60825,53.644062],[5.4795,53.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.25325,54.094375],[14.092406,54.189844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.014,61.249],[18.744,61.1695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.8115,51.8115],[2.716,51.716]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.023,18.039],[-18,18.022]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.679906,43.340594],[8.910094,43.212531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.161,33.562],[25.47,33.999]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.968375,40.64525],[6.728,40.933]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.4365,55.566],[-5.550813,55.421312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.443031,41.6635],[9.499,41.862]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.620406,42.3635],[9.615,42.559125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.979188,54.837812],[16.8635,54.828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.866,40.569],[-8.9635,40.332]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.462359,43.401703],[7.188063,43.259031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.403,54.62],[19.551312,54.743437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.469,5.727],[108.317,7.788],[110.073,11.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.7,18.75],[-99.9,16.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.228125,41.423687],[11.121,41.560625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.062875,36.194766],[26.875063,36.291312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.999,31.086],[-133.207,33.486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.824813,55.531312],[7.609,55.80425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,60],[-6.541,60.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.541,36.1325],[-8.19725,36.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.112,59.524],[17.076,59.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.487,43.5565],[-3.76282,43.569477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.28775,40.11775],[13.34825,39.93975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.3075,47.6105],[-4.154875,47.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.9985,40.68925],[-8.979,40.886]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.4465,55.1275],[12.362625,54.821125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.510438,36.217375],[-5.014,36.046]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.349,30.05],[129.562,30.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,20],[-109.833,21.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.053812,57.174594],[19.945,57.274]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.438375,36.958625],[12.264781,36.874156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.701,-45.722],[-61.595,-45.728]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.793,58.155],[20.559313,58.235813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.58575,55.504],[20.705625,55.69775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.674672,56.071289],[16.82525,56.18975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.1865,41.63375],[-9.458,42.148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.623812,48.989594],[-5.42959,48.744031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.418305,40.172133],[13.5735,40.014],[13.70075,39.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.305,63.475],[21.798,63.666]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.179248,40.13094],[17.175,40.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.181,67.485],[14.1485,67.357]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.4725,35.3005],[-9.027,35.3785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.601,27.708],[-91.733,27.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.81,38.429],[-12.059,37.67175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.3145,58.13725],[-2.157,58.306]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.357,-37.766],[154.97,-38.952],[160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.92725,54.964],[17.000625,55.193375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.898,20.807],[-23.712,15.528]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.599719,36.778969],[26.65082,36.962602]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[63.1405,72.01],[67.758,73.197]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.45,23.348],[-75.704,22.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.689,5.83],[114,6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.37,28.716],[-89.184,28.543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.435766,40.569461],[14.341375,40.488125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.105531,43.834094],[14.331375,43.614375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.2005,64.2395],[-15.175,64.111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.885,45.149],[12.711844,45.123281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.445,45.863],[-1.630656,46.091781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.492036,58.225111],[21.529875,57.969375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.435,36.158],[-74.428,35.997]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.370219,43.833156],[14.555813,43.693922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.049,38.639],[8.4085,38.6375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.854008,54.863625],[10.7505,54.748],[10.61232,54.719742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.39,41.727],[-170.667,41.576]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.475,-15.397],[137,-15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.651,-43.751],[65.109,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.193188,39.587438],[19.303,39.425313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.4475,49.17025],[-2.39025,49.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.618,53.392],[2.451,53.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6375,56.6925],[5.58075,56.397]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.0475,39.62],[1.1325,39.7455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.706,55.49],[14.833406,55.412844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.489,54.771],[155.522,58.133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.361,40.1335],[6.968375,40.64525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.8925,56.96425],[7.754,56.883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.129,31.169],[-72.496,31.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.2435,37.88075],[-24.985,37.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.186,56.57],[4.668,56.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.424094,52.6015],[4.3255,52.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.708,1.7735],[104.591875,1.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.66975,57.805625],[4.48,57.638]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.363,-10.027],[-144.62,-6.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-30],[-120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.524,35.762],[-8.365375,35.48075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.958,37.3725],[20.891634,37.335923]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.25,34.3875],[11,34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.121855,37.413418],[23.983172,37.421102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.111125,56.458375],[17.14,56.61875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5,-25.277],[-7.025,-23.154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.035,34.801],[24.036,34.471]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.00625,42.07075],[7.87,42.1315]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-89.134,74.25],[-92.686,74.342]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.112,40.797],[-10.07275,41.63825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.6,54.97],[-1.352422,55.020484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.59025,55.510937],[12.642477,55.288227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.073,57.043],[23.9625,57.13125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.17425,38.0435],[0.295,37.989]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.899,54.265],[6.84475,54.137187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.4085,38.6375],[7.86325,38.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.088035,49.877716],[-5.362,50.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.624,51.536],[1.807,51.453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.856,31.169],[-73.037,30.94525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.006,38.944625],[24.1695,39.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.327,62.855],[19.459,62.7485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.709,69.949],[16.885313,69.991437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.8455,36.176],[33,35.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-40],[-159.998,-35.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.1415,58.2925],[-3.053875,58.408]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.853,25.867],[-84.431,25.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.986512,49.982141],[-4.883437,49.86675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.055,49.161],[141.092,49.388]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7,46.975],[-7.05,46.906],[-7.071,46.90425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.858719,41.863641],[16.932016,41.652781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.937938,37.6835],[24.79625,37.754109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.72775,57.23575],[-1.801,57.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.170828,49.970023],[-1.290781,49.913063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.19525,52.051812],[3.19,51.91775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.555,69.554],[33.577,69.897]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.8445,43.73725],[28.755,43.5955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.9205,31.4715],[-64.425,31.979],[-64.2005,32.01275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.549,-17.288],[-147.254,-16.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.248188,47.74675],[-4.475,47.856],[-4.6275,47.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.54275,51.68125],[-2.303,51.839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.12,49.271],[-123.151,49.283],[-123.32,49.276],[-123.378,49.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.355,50.484],[169.786,50.154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.202,65.638],[-21.081,65.757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.656,34.712],[26.706,34.842]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.097,38.988],[0.944,38.941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.404,64.322],[0,67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.837391,44.516937],[14.63716,44.425438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9435,43.356],[-2.076188,43.530625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.088,11.868],[109.77,11.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.956172,36.944266],[13.837875,37.0335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.586813,60.324062],[26.445375,60.297312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.071,46.90425],[-7.2395,46.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.687,19.241],[123,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.684,51.343],[-3.413312,51.341313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.094,-13.942],[169.2655,-17.0765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.396313,52.1615],[-5.535656,52.177781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.687,70.758],[-13,66.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.001,37.783],[-20.001,37.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.814,36.835],[-0.414,36.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.106,34.7],[26.8635,34.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.461,70.0155],[30.944,70.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.771062,57.953812],[9.012906,57.797512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2495,43.7505],[14.440312,43.648844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.678,-3.938],[-110,-4.462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146,-16.7],[146.882,-16.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.391625,58.22625],[8.475469,58.164906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.660906,54.225875],[13.761812,54.184625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.592,43.651],[30.432,44.096]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.714,34.908],[23.505,34.7635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.298188,60.334375],[26.165437,60.308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.998,36.001],[30.199125,35.627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.359312,51.334812],[2.187813,51.267063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.661,39.652],[-71.728,39.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.113,54.6675],[11.007062,54.683188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.5305,38.4565],[11.46925,38.59325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.193465,54.806707],[10.319777,54.745898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.216,-35.5],[118.001,-35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.388,39.748],[14.428,39.866],[14.488938,40.038406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.314602,37.31057],[15.331537,37.454645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.678,38.603],[26.903,38.406],[27.153,38.449]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.715,64.5025],[23.242,64.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.021,32.031],[-76.843,31.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.863,41.456],[2.53875,41.25775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[63.99,8.569],[65.054,8.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.5925,42.138],[17.389,41.944]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.698,34.533],[139.598,34.901]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.550141,42.856656],[10.509,42.565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.425875,38.3485],[22.631336,38.342301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.847625,53.496813],[0.419602,53.471922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.95025,34.77925],[31.5805,35.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,-50],[120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-50],[-120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.738125,58.169813],[8.89325,58.07875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-30],[61.107,-28.954]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.982656,53.751188],[5.843,53.643],[5.716156,53.609313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.817,46.568],[-165.437,45.11],[-168.347,41.851]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.753,57.075],[11.895656,56.986219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,3.289],[58.891,1.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.65425,20.05575],[-53.291,17.3685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.96925,38.28475],[-122.9,37.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.774,29.838],[-85.472,29.873]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.699,43.352],[32.602,43.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.085375,46.287625],[-3.8225,46.443]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.727,38.027],[18.586,38.761]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.794,36.14],[-3.647563,36.102063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.034969,65.871219],[-24.328,65.7135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.646,41.43525],[17.5925,41.309125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.691,38.583625],[15.60375,38.728375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,20],[-39.9945,20.0065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.408,40.741],[5.516,41.219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.6205,58.5255],[-6.489,58.641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.82725,38.9685],[24.8155,39.07775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.534063,53.675375],[-3.622875,53.805125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.752,38.098],[11.03875,38.08375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.278859,40.599051],[14.116328,40.562297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.38925,54.913375],[18.480375,54.814172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.88,37.096],[-69.9255,36.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.717,32.66975],[-16.339,33.028],[-16.315,33.023],[-16.288,33.041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.996312,50.798438],[1.10725,50.839062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127,-13.2],[123,-16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.0745,39.97075],[5.193,39.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.46,-24.812],[-158.248,-21.795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.23125,53.4315],[-4.220406,53.539359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.722859,41.281063],[17.018578,41.432406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.552312,54.863062],[-5.562057,54.684709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.98425,12.99075],[-65.625,12.488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.708125,53.435375],[3.625,53.316],[3.571,53.24],[3.534,53.188],[3.4655,53.029938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.933309,40.764412],[14.168426,40.741285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.887,24.089],[58.56925,23.62775],[59.001,24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.045937,53.884125],[-6.020625,53.732812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.728,60.892],[-27.504,62.74]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.375125,42.85225],[16.511969,42.932844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.93025,38.722],[15.83,38.63725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.643422,53.590187],[-3.8135,53.7255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.98075,55.10025],[18.757711,55.171898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.4665,43.5805],[-3.909,43.5615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.066,38.485],[0.2745,38.6365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.68275,39.77375],[18.54025,39.7745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.014,-15.1565],[-6.61925,-16.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.233,31.641],[-79.48,32.124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,0],[73.113,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.366,70.3685],[32.0375,70.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.66375,53.405641],[3.708125,53.435375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.385375,38.39125],[14.214375,38.33675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0275,39.185],[8.083047,39.066297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.3,0],[-103.444,-1.851]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.645297,53.946391],[7.50475,53.89825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.472,51.486],[-168.081,51.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.436188,45.1285],[14.527,45.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.98675,54.238094],[14.092406,54.189844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.741,20.786],[-40,21.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.56,18.744],[-76.665109,18.760476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.818,-27.338],[-19.999,-27.923]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.543,42.304],[5.627,42.198]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,1.147],[-40,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.323148,45.536664],[13.233531,45.409594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.123682,37.488928],[24.90025,37.57616]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.585,37.253],[27.249,37.229]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.199,37.102],[123.121,35.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.627,42.198],[5.6905,42.116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.023,35.50875],[27.775,35.329]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.714641,54.660719],[10.815275,54.580532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.537,39.659],[1.805,39.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.569,40.892],[7.5675,40.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.0905,40.2595],[1.892,40.07875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.605,49.32],[-16.01,49.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.297875,51.794812],[3.109625,51.73475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.0605,68.7865],[13.806,69.111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-50],[-140,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,10],[65.037688,10.012625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.02925,46.86475],[-3.153922,46.763398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.654,61.7045],[20.757,61.6395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.5605,34.7525],[-13.33,34.987]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.295719,37.563],[26.08,37.4945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.560937,57.934938],[6.4905,57.8555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.869908,37.367563],[23.901129,37.534844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.311,65.748],[12.205,65.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.706,-6.348],[-165,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.516,42.782],[-150.002,43.636]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.831875,37.66025],[15.6455,37.5105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.603875,49.910625],[-2.714219,49.826656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.678453,50.005109],[-2.603875,49.910625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.58675,40.86],[12.376188,41.221563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.482,1.341],[104.988,1.008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.873219,52.440906],[2.005828,52.502695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.93775,43.027563],[16.071875,43.207687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.66925,35.99725],[-3.647563,36.102063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.435875,58.189125],[18.53425,58.1305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.005125,50.132875],[-2.194203,50.105375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.9,33.75],[132.6,34.2],[133.981,34.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.191,42.524],[5.813,42.433]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.6595,50.30075],[0.835892,50.461512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.240258,36.166695],[27.062875,36.194766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.00275,42.4215],[4.651,42.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.124,16.521],[-159.309,16.029]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.59025,55.510937],[12.723063,55.518375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.9485,59.276],[19.187313,59.176812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.5345,57.91325],[17.511,57.805813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.151875,54.729875],[14.273,54.817],[14.420875,54.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.49925,38.24975],[-10.994,37.909]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.25175,38.560375],[10.3525,38.518]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.376188,41.221563],[12.292844,41.374625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.067,56.654],[-6.95925,56.04425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.95025,34.77925],[32.308344,34.708]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.79375,53.396],[0.847625,53.496813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.162,36.967],[20.87,37.324]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.444,-8.0255],[125.4185,-8.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.605,29.627],[-150,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.343875,38.580125],[15.261312,38.501312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.591,58.836],[4.509,58.616]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.999,-14.878],[-140.6615,-15.071]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.355092,37.062154],[15.436781,37.155094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.442,15.907],[41.2525,16.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.0525,64.1395],[-22.76025,64.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.671016,50.264617],[-4.567907,50.289996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.855,28.698],[-88.028,28.116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.597,35.782],[19.568,36.2085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.803031,50.648687],[-0.920531,50.60275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.361203,39.166469],[8.250625,39.284125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.9655,38.84575],[8.90025,38.70575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.888,-45.403],[-130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.6245,40.3635],[11.8045,40.2845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-50],[-90,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.436,53.1855],[0.357625,53.318875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.625422,36.369031],[25.396195,36.376578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.784,57.023],[17.914562,56.956187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.961,13.589],[-153.003,15.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.3745,37.14625],[-71.235,37.881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.677,39.904],[14.856094,39.632188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.971,21.007],[-79.664,16.009]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.934,37.421],[11.045938,37.366875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.3,-4.2],[40.0135,-6.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.082578,36.220953],[23.9885,36.1685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.297398,53.7685],[6.148875,53.67825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.206125,57.692437],[10.055,57.651],[9.888,57.609801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.517,57.389],[6.6375,57.03375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.513,8.8695],[-79.14,8.799],[-78.524,8.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.188063,43.259031],[6.958,43.082],[6.858375,43.04875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.402,63.093],[19.51,63.063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.059,57.6375],[17.226156,57.496313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.302,65.177],[22.301,65.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.763016,37.420797],[26.802625,37.517875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.504,-33.09],[167.676,-32.527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.559875,38.549625],[14.385375,38.39125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.991,55.753],[5.575875,55.811]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.760687,42.635062],[10.854,42.514],[10.919633,42.400891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.85875,35.7305],[25.97,35.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.534312,36.54225],[24.36773,36.4685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.256,42.295],[-9.368063,42.244563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.209812,57.838719],[9.194125,57.71575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.484,46.1495],[-2.6475,46.1675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.607875,38.47475],[-9.4335,38.5745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149,-43],[147.7,-43.6],[146,-44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.102625,48.304969],[-4.9995,48.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.805,39.603],[2.087,39.791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-50],[-170,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.8485,53.642625],[1.214375,53.652]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.1185,37.391],[12.245,37.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.223039,58.342094],[11.119563,58.295437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.633,71.456],[130.407,72.381],[130.8495,74.0635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.01475,35.73975],[25.007984,35.585289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.954,28.334],[-15.384313,28.145375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.4985,64.026],[-22.517875,64.131812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.242625,54.67725],[8.102375,54.561813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.111,35.364],[28.20975,35.32325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,20],[-30,20.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.05075,64.645],[-14.29475,64.38125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.16,44.283],[14.961,44.322]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.822,-4.977],[53.656,-3.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88.654,-16.852],[88.37975,-17.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.3835,58.552125],[10.245375,58.591437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.809,55.7815],[-5.833563,55.30441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.22775,58.01625],[10.131266,57.8945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.105902,57.64757],[11.01575,57.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.76325,56.776],[19.9445,56.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.147781,56.264937],[16.080562,55.967969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.334594,53.020719],[1.459,52.943188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.3755,57.552844],[8.291437,57.324875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.651,37.131],[3.05525,37.15075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.813,71.412],[-142.636,72.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.626563,48.837094],[-1.949625,49.013875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.219891,45.249109],[13.140313,45.131125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.368063,42.244563],[-9.308,42.0975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.251,58.02],[20.366437,58.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.496125,41.155375],[13.324188,41.017313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,0],[-108.534,1.487]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.98675,66.09],[-23.09825,66.1495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-30],[-105,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.411,60.692],[-1.287375,60.46025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.374,54.217],[15.195875,54.295687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.6455,57.4555],[19.735969,57.3235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.9315,35.91875],[-8.16875,35.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.067,53.6655],[-3.831844,53.561281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.502969,54.491469],[11.633813,54.423781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.182,34.97],[129.231,34.976]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.162,-37.124],[-52.97275,-39.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.68,58.186],[19.828187,58.286062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.417625,56.110875],[18.29475,55.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.60375,17.271],[-63.155,17.819]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.597,39.866],[19.574,39.854],[19.513125,39.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.0025,-6.292],[111.9,-5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.584,28.732],[128.371,28.425],[125.788,28.138]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.356,54.896],[-0.648383,54.80768]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.478,1.442],[104.4625,1.6555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.467785,50.749156],[1.407969,50.850938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.547,35.927],[-13.465,36.158]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.29875,38.2425],[15.5435,38.32275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.0295,42.8415],[15.935,42.771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.701,36.318],[-12.494,36.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.96925,38.28475],[-123.761,37.9595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.714336,57.812898],[9.633,57.75],[9.525313,57.723312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.793625,62.00675],[4.643,61.893],[4.556031,61.746641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.704,19.781],[120,19.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.10375,36.782],[14.2815,36.78625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.2215,48.7955],[-3.164125,48.943938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.266,41.189],[-138.863,41.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.697,4.351],[-20,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.29875,54.643],[11.358625,54.525687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.0055,-9.99425],[53.355,-15.396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.240875,39.144031],[17.443,39.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.504,62.74],[-24.9,65.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.747,55.941],[-154.32,56.309],[-152.972,56.678]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.23125,27.989],[-77.1,27.723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.8495,57.318],[19.945,57.274]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.89,-45.405],[-10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.581,-25.73],[4.329,-25.976]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.149,24.392],[-82.7,24.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.908,29.504],[-19.9605,29.97825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.13525,54.2525],[0.494,54.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.002,43.617],[-52.57225,42.61175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.86075,20.976375],[-73.7265,20.92325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.616172,47.031484],[-2.622,46.884969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.974687,36.6915],[-1.831,36.740313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.765875,59.948375],[25.586,60.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.623188,41.456219],[9.526563,41.411]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.587,34.269],[-71.121,32.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.77,11.655],[108.179,10.589],[107.2865,9.991]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.258125,50.281281],[-1.37975,50.27475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.7845,57.281],[5.911,57.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.527938,41.293125],[9.311656,41.372172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.679,39.077],[9.547625,39.066125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.61625,37.5905],[7.52,37.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-40],[90.001,-42.239]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.151,61.3485],[3.356,61.017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.608,57.6625],[17.511,57.805813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.4995,71.639],[29.145,71.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.676605,36.988188],[13.782219,36.822125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.1755,51.3055],[-9.901,51.3015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.8,-5.2],[106.454,-5.547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.5855,57.081938],[19.759,57.006]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.144188,57.900375],[18.289094,57.821469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.375781,49.598094],[-0.456,49.7165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.983,35.909],[-9.109,35.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.305125,39.391562],[0.2715,39.203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.814062,41.470312],[8.71175,41.5865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.464594,40.920094],[13.593242,40.802172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.041,38.4495],[-28.875,38.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.153922,46.763398],[-2.865,46.9165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.781,-1.806],[-20,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.357,-30.662],[108.885,-28.723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.383,25.189],[-16.12325,28.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.56775,41.8995],[18.4135,41.831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.9,31.3],[122.342,31.039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.182,-19.785],[54.936,-17.107]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.532187,36.11375],[29.998,36.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.91785,42.940591],[4.917404,42.940596]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.8635,54.828],[16.866312,54.66775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.641,54.82],[5.675,54.6525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-117.491,28.693],[-117.77,32.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.71725,57.714875],[-1.618313,57.603188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.564,-51.944],[-74.184,-52.823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.419602,53.471922],[0.56475,53.35025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.4305,51.40675],[3.107648,51.392562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.988188,55.52175],[16.903813,55.244687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.625422,36.369031],[25.662312,36.51475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.574125,11.637812],[-61.57778,11.642532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.644,58.291],[20.793,58.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.85,3.898],[-165,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.468,42.202],[17.389,41.944]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.759,29.283],[-173.206,26.972]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.885313,69.991437],[16.798,69.919]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115.2,27.5],[-117.3,32.7],[-117.77,32.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.949,43.941],[-8.05425,43.7815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.38,-2.7475],[106.8,-5.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.247,-8.795],[13.192,-8.837],[12,-9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.15975,55.7245],[-4.964926,55.675785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.464594,40.920094],[13.707706,40.727291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.682,35.978],[13.86425,36.047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-40],[-35,-40.107],[-30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.630594,38.774281],[0.406781,38.693469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.674,36.079],[-7.475563,35.964687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.916,36.998],[13.0465,36.943]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.17,-38.311],[-89.998,-36.324]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.014,38.806],[25.883766,38.665375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.2715,39.203],[-0.28632,39.449203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.805,-54.174],[-36.07,-53.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.869625,49.220375],[-5.7535,49.327]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-30],[-110,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.753,39.594],[0.939312,39.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.12175,41.51675],[3.043,41.272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.455,31.788],[29.087,32.508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-40],[90.001,-32.086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.888,-45.403],[-120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.861375,59.5605],[24.762977,59.489383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.056,51.4805],[-9.891313,51.476594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.5275,12.482],[43.419,12.351]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.942656,44.383891],[8.8135,44.31925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.51375,44.495125],[12.615,44.391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.804,35.108],[26.868125,35.259625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.1815,66.09125],[-21.37075,66.083375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.498489,14.102685],[42.493,14.128]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.148625,60.188094],[22.29,60.187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.222453,41.285062],[10.339375,41.356375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,15.17],[-112.549,12.904]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.096687,58.556562],[10.35225,58.31825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.17,60.943],[1.505,60.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.361391,36.752797],[24.201375,36.731938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.573,22.015],[-86.363,22.00975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136,0],[130,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.1355,49.899156],[-4.013937,49.934313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,10],[-43.28,5.941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.507781,42.861344],[9.445383,43.100578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.001,32.969],[-30,30.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.915859,38.930516],[15.0345,38.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.970688,39.329062],[14.2155,39.3115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.299656,56.545609],[12.027188,56.479687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.8605,56.036125],[20.67425,55.83475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.181906,42.581781],[18.404,42.446],[18.550938,42.344125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.261,64.537],[-14.404,64.3835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.959,29.521],[-8.7545,33.6495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.262,38.74775],[-10.8545,38.676]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.586453,38.055121],[15.543859,37.880766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.244311,54.539781],[11.341328,54.389234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.269,65.4005],[-22.869,65.221]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.832,54.732],[15.01325,54.81875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.719156,52.181344],[1.873219,52.440906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.046023,43.678289],[14.186,43.667],[14.331375,43.614375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.273,38.442],[-14.48425,38.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.3675,34.8885],[31.95025,34.77925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.835754,51.295676],[1.781094,51.149254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.925,57.3495],[9.231,57.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.358,36.789],[11.215,36.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5,-35.386],[-10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.543,40.838],[27.573,40.704]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.331,37.875],[8.61725,37.91525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,-19],[10.73,-22.113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.246625,38.70375],[13.192,38.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.001,-22.787],[-1.537,-21.629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.999,-27.855],[-126.148,-26.131]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.44,67.497],[13.856,67.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.74,60.0175],[-1.08525,59.9725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.73368,38.316016],[25.729141,38.555117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.386,38.576],[10.50575,38.57075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.02,41.297],[8.247,41.296]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.814687,56.695625],[20.859422,56.530578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.153,-17.264],[-6.61925,-16.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.695875,38.392375],[23.586531,38.515062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.583004,42.024083],[11.4645,41.97425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.49,36.3835],[22.33625,36.397937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.319,54.999],[-7.235,55.062],[-6.914109,55.239125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.835406,43.943969],[13.6745,43.91925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.179,65.513],[-23.383,65.374]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.674,47.052],[-13.93,47.868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.10475,45.9665],[-8.432,45.547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.851,28.666],[-91.558,27.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[63.154,20.063],[65.095,18.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.91075,60.07075],[4.19375,60.206]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.341375,40.488125],[14.43725,40.338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.25625,42.661938],[16.382094,42.727938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.562,40.648],[2.68975,40.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,14.786],[130,13.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.266,-31.175],[111.662,-33.677]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.288,15.578],[-61.498,13.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.283,43.086],[3.45425,43.04375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.4,10.5],[123.8,9.1],[121.762,8.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.556,17.357],[119.4,17.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.609,34.523],[25.112,34.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.934,7.545],[111.913,9.798]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.979,50.006],[-11.78,50.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.632688,58.402563],[5.168719,58.582125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.296,0.714],[-40,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.478,50.438],[-14.921,50.718]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.639563,21.207063],[-158.377,20.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.495,69.52],[56.935,69.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.695,54.618],[-131.99,52.488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.031062,59.847594],[4.947969,59.681281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.82925,57.105],[-0.9475,57.1615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.261875,43.049625],[5.350734,43.1385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.717,-10.144],[160,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.892,30.339],[-65.771,30.079]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.999,-27.257],[-168.187,-28.287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.906,11.661],[43.425,11.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.2875,38.2405],[10.752,38.098]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.749,14.173],[-23,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.81925,58.022875],[-5.72575,58.11975],[-5.647,58.206]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.564,53.5],[3.341,53.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.34,63.66],[20.4485,63.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.18,49.805],[170.668,43.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.125203,44.1815],[14.257906,44.431859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.595,64.684],[37.6685,65.542]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.068625,18.51125],[-74.839,18.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.631047,44.227828],[8.428672,44.054469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.417,54.23],[5.379,54.449]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.165437,60.308],[26.0025,60.1795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.757844,36.720125],[23.901047,36.726672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.518,39.928],[-69.349,40.062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.219,26.185],[-90.856,26.188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.698,64.485],[21.801,64.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.186,39.679],[12.963,39.426]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.662,58.578],[-8.6205,58.5255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.219625,36.92575],[27.344875,36.804312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.8825,37.213],[6.922,36.963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.390187,57.797875],[6.437125,57.663875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.994,47.025],[-3.1,47.118]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.014375,39.588313],[24.859875,39.55475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.3245,56.4755],[-6.152,56.458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.147418,36.515793],[25.16502,36.701812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.194,54.8315],[-4.989438,54.608937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.043797,58.089],[7.936625,58.022125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.036,26.089],[132.207,23.704]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.763875,64.873109],[-13.83925,64.762188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.685,38.347],[16.546,38.226],[16.457313,38.177813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[86.455,13.773],[85.156,14.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.475707,37.775152],[26.378828,37.683078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.434313,54.599125],[10.544281,54.556969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.2685,44.4395],[-9.411,44.236187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.037641,43.936484],[13.835406,43.943969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.308,42.0975],[-9.1865,41.63375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.565,70.589],[18.72,70.921]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.604,50.460875],[-0.756875,50.435437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.262438,54.729438],[15.368313,54.725875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.992,46.22925],[-130.001,48.559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.5275,42.934],[34.752,42.817]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.333,31.65],[-14.766,29.874]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.434,6.341],[2.5,5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.688,46.196],[153.507,46.143]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.151875,54.729875],[13.94975,54.67425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.041844,36.399219],[24.826781,36.368094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.225875,51.56375],[-8.42825,51.517]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.691,47.88125],[-7.371,48.489]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.595,35.706],[-12.498,35.892]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.628,37.482875],[12.694438,37.352875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.299875,38.631281],[-9.320125,38.425875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.001,-25.809],[70,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.5875,58.895],[18.20425,58.680586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.448,42.072],[-147.516,42.782]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,5.003],[-30,4.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.895,40.807],[29.2185,40.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.94,48.167],[-7.193,48.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.142344,37.966875],[21.16,38.0985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.154062,56.9635],[19.327875,56.923625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.001,-38.7],[135.522,-35.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.757,54.812],[-8.6925,54.9265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.278859,40.599051],[14.29215,40.781631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.482688,55.224187],[15.634375,55.140125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.78,43.083625],[14.80625,43.211125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.12075,34.4865],[28.994,34.653]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.848,43.057],[35.952,43.867]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.3895,34.2655],[-14.08,34.4945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.465,36.158],[-15.088,36.201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.650125,53.747875],[0.729812,53.586063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.054,42.858],[-9.78925,42.880656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.588234,55.322172],[15.507531,55.478125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.997,52.276],[-6.974,52.245],[-6.943312,52.126937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75.3,9.7],[70,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.201,-36.699],[157.632,-36.222]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.122,54.4145],[8.16725,54.30925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.342,42.089],[4.487,42.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.851,57.339375],[8.043094,57.403391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.175,43.679],[-9.20025,43.483]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.18925,37.805],[25.342,37.73075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.857,-35.011],[118.001,-35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,10],[-140,8.503]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.984023,57.868031],[7.180867,57.926906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.11,-45.404],[20,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.0065,-20.694],[54.973,-24.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.802,-6.09],[124.878,-6.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.982,45.18],[30.731,46.053]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.094,40.418],[28.746,40.514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.565,70.589],[17.898,70.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.155,38.477],[-11.262,38.74775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.572,22.583],[-64.647,24.926]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.691,49.421],[-7.382,49.6135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,10],[-38.257,11.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.671,51.822],[4.891,51.818]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.885,46.7895],[-4.9975,46.991]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.969,40.5],[-68.833031,40.499813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.937,27.583],[-96.059,27.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.361,44.516],[-12.215,42.302]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.468,52.49],[-128.219,51.419],[-127.362,50.898],[-125.569,50.551],[-124.571,49.873]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.049,40.575],[25.0475,40.32075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.497473,37.191895],[26.485094,37.327984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.48425,38.125],[-14.89,37.416]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.256,21.827],[-157.884,21.24775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-10],[-152.613,-7.439]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.197437,44.300875],[13.126625,44.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-40],[179.583,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110,-50],[110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-50],[-110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.001,41.906],[3.808125,41.85975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.694,2.156],[86.11,0.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.646875,58.118125],[10.521219,58.086594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.851,-3.899],[-130,-3.107]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.719,43.82],[13.632375,43.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.958,54.373563],[13.98675,54.238094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.0355,44.05925],[29.269,44.009]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.316,64.483],[-23.103,64.482]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.952,55.17],[3.818,55.0945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.121,16.105],[-61.562,14.556]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.052625,58.21275],[21.049,58.044125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.755,43.5955],[28.92125,42.846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.7045,38.94],[4.958,39.383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.646293,55.74748],[12.686719,55.634297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.667125,58.501375],[5.782125,58.455625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.648562,68.89125],[16.697125,68.714438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.428766,50.403988],[0.701,50.461875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.019367,57.973977],[11.07675,57.820687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.390937,42.396812],[15.385,42.2565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.039656,60.36375],[19.041125,60.252875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.513,-40.546],[151.265,-39.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.281781,37.682961],[24.380484,37.715898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.692,42.354],[-70.519,41.988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.198,40.243],[-9.36,40.09925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.594,2.054],[-90.596,3.313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.423,40.474],[11.509,40.40825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.37,58.85],[19.5215,58.2635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.140937,41.76375],[16.858719,41.863641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.435,10.034],[-163.208,13.491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.129,31.169],[-71.802,30.547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.222,-31.5435],[156.548882,-31.410533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.020375,50.358375],[0.967812,50.461156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.01,33.272],[143.1,33.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.51175,40.59175],[12.350625,40.890625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.822,38.255],[7.29,38.171]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,20],[-132.075,22.199]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.3305,26.99],[-72.396,26.7005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.623,36.61075],[-8.5595,36.356]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.40025,51.67625],[4.226,51.767]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.675,42.504188],[15.292125,42.721125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.2925,38.478],[26.188469,38.487539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.007269,58.895432],[18.0715,58.8095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.028,50.099875],[-6.051,50.202]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.866312,54.66775],[16.729875,54.8175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.472,42.4145],[3.847,42.2555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.482,21.61],[155.707,20.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.4835,63.6295],[9.509,63.701],[9.571,63.792],[9.61,63.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.0485,20.103],[-40,21.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.426,49.442],[-5.56,49.676]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.924937,40.236312],[11.79199,40.292594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.811,34.004],[-10.789,32.746]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.298,1.202],[-81.176,1.848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.25225,49.061125],[-3.199,49.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.6765,39.785812],[24.53975,39.632812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.785,28.027],[123.195,27.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.046,58.39],[3.492,58.367],[3.38,58.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.001,-15.945],[82.853,-14.861]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.264781,36.874156],[12.564125,36.8805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.9645,38.946],[3.07425,39.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.197,68.198],[12.732,67.997],[12.8185,67.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[98.721,-28.792],[95.547,-30.083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.048,11.023],[-99.956,12.852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.34825,39.93975],[13.454,39.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.354469,35.785625],[24.235062,36.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.283,43.086],[3.416,43.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.97275,-39.8775],[-51.625,-38.322]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.437,22.52],[127.724,24.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.171109,54.987867],[15.309875,54.976125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.001,25.433],[-173.653,26.549]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.521219,58.086594],[10.568594,57.987469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.175875,57.011625],[17.106,56.844],[17.0345,56.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.305,53.374],[-5.511687,53.391188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.2595,62.2645],[18.3935,61.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.86,-31.239],[-135,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.984,56.726],[3.62,56.504]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.79625,37.754109],[24.7825,37.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.451,35.055],[35.591,35.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.985047,56.042883],[10.93325,55.90875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.165625,43.846063],[10.096234,43.706109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.626,38.516],[-71.82375,38.36125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.313,-6.727],[133.731,-8.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.256,69.516],[14.548,69.567]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.239,63.134],[-36.851,65.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-20],[-125,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.07,65.439],[-22.869,65.221]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.159,30.206],[-15.242,29.979]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.8,5.7],[124.587,4.819]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.959688,37.590812],[11.159,37.4445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.543,-16.93],[0,-12.502]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.493,42.808],[-45.319,45.217]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.440438,-7.267563],[72.489,-7.176]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.6675,39.587],[18.7675,39.536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.756,13.495],[-61.8895,12.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.22775,58.01625],[10.3155,57.931]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.419,54.296],[19.6575,54.4065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.694102,42.070801],[11.66425,41.9375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.59075,35.67975],[23.676313,35.7485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.708469,53.284531],[0.79375,53.396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96,19.5],[-93.538,20.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.436,55.1],[-8.5805,55.0505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.186,53.5275],[-4.894,53.525],[-4.726773,53.505562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-10],[-162.5175,-12.6405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.894,61.295],[18.744,61.1695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13,65.922],[-13,66.242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.193,18.05],[160,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.074,33.288],[27.569,33.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.405313,55.742437],[10.469214,55.665447]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.133,65.853],[23.288,65.782],[23.4,65.5385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.528,-10.019],[-14.14,-8.182]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.9485,53.868],[5.882,53.699062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.557,60.827],[18.7325,60.902]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.066,38.485],[0.16275,38.45525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.449,39.492],[-130,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.471625,59.77],[26.2705,59.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.642375,43.70525],[-5.698,43.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.144687,39.117297],[15.233625,38.927062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,30],[175.205,25.084],[-180,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.5805,55.0505],[-9.445,54.758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,15.17],[-39.9945,20.0065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.243,63.784],[10.876,63.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.271,20.0525],[-40.741,20.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.699125,39.180375],[19.862,38.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[87.08,14.742],[88.973,13.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.164453,55.329266],[13.267,55.302]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.296,58.169],[-0.937,58.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.899,42.9625],[6.6825,42.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.48175,59.2585],[3.626,59.243]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.037,33.675],[17.44,33.877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.235,56.354],[16.147781,56.264937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.779,40.2425],[1.892,40.07875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.091,25.434],[120.228,25.712]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.16,-9.467],[147,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.939,25.981],[-79.956,25.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.898,-33.151],[-94.417,-30.083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.585,36.321],[-72.081,36.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.14,-8.182],[-14.197,-8.048]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.553,32.7965],[-30.001,32.969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.764,34.7415],[25.112,34.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.5265,57.7595],[6.7355,57.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.191,7.242],[-170,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.102,32.311],[-78.326,31.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.498,69.648],[53.67,69.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.179,41.12775],[12.106,41.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.681,41.272],[-11.845,41.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.625,36.883],[15.766875,37.08575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.097,39.386],[18.342,39.60025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.114,23.301],[-66.321,20.154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.673,42.553],[8.535,42.227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.860348,49.971363],[-2.563477,50.067563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.66225,44.06325],[13.6745,43.91925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.623,50.752],[-165.175,51.593]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.915,57.875],[22.6855,57.8145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.483,2.014],[72.9545,4.022438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.8615,55.27075],[15.634375,55.140125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23,65],[22.779875,65.187375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-30],[-95,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.758,73.197],[69.591,73.681],[72.272,73.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.062,36.612],[-72.081,36.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.305,40.295],[19.873703,39.856859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.036,55.217],[14.9075,55.2505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.418625,39.611625],[25.5,39.677]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.642,35.416],[-13.745,35.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.20625,53.0425],[3.371625,53.150438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.017062,51.85325],[3.830828,51.997047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.419375,54.467625],[-0.3325,54.337]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.574,59.042],[-171.666,56.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.52,37.5025],[7.4195,37.4735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.477141,44.123984],[13.548625,44.043125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[175.538,-42.975],[179.593,-40.271]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.49,8.491],[-14.602,8.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.277,25.4875],[-84.751,25.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.141,54.491],[-4.778,54.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.843063,41.006312],[3.24,40.849]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.588156,58.875719],[-2.493,58.7145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.264188,63.044219],[20.1685,62.892125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.093875,56.872062],[18.575125,57.16825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.927406,37.128438],[25.817594,37.051125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.468,34.767],[119.403,34.95],[120.776,34.3],[121.778,32.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.03875,38.08375],[11.004,38.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.1345,36.497],[133.019,39.227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.19275,50.0275],[-0.379,50.127]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.785219,47.112094],[-2.616172,47.031484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.1215,67.6325],[13.789,67.3915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.233,16.03],[-84.382306,16.038694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.900781,58.931719],[9.786531,58.940641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.988188,55.52175],[16.974375,55.829125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.801,59.002],[-2.588156,58.875719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.38,38.256],[-9.320125,38.425875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.570156,56.535844],[7.462312,56.352656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.64,64.601],[-23.103,64.482]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.744,39.33],[-72.46625,39.45575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.824,40.877],[-9.828,40.028]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.8465,52.78125],[-5.814641,52.630781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.022,40.926],[-123.96925,38.28475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,20],[-170,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.311,-38.168],[167.46,-36.56]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.011,42.207],[4.16525,42.1755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.465227,36.639328],[25.284078,36.52936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.049148,51.229781],[1.922406,51.213344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.717,50.234],[-10.887,50.254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.768,-32.377],[-49.588,-32.297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.627,42.198],[5.711,42.261625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.261312,38.501312],[15.078305,38.55825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.003,-44.371],[165.6,-46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.279,58.6285],[-5.7395,58.6435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.32,21.287],[125.437,22.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.984,-2.013],[-110,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.969,39.35225],[17.8635,39.2805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.273719,59.327687],[22.133,59.198],[21.958,59.10825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.059,57.215],[-15.775,57.51]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[106.482,77.8545],[108.021,77.731]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.628469,41.767062],[16.45125,41.823125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.397609,57.386562],[20.333,57.266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.892477,50.135],[-6.028,50.099875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.206,36.579],[-70.107,36.229]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.28775,40.11775],[13.447,40.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.235,33.517],[-147.822,30.041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.114313,39.813688],[23.2955,39.6565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.4695,37.584],[26.475707,37.775152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.325,65.295],[22.302,65.177]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.313,41.399],[-154.85,41.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.253,61.409],[20.69575,61.374875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.462375,40.718906],[13.464594,40.920094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.231,52.07975],[-5.277,52.417]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.5355,37.587625],[-0.615,37.520812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.043,38.1465],[25.991375,38.028625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.686,54.73],[8.596312,54.684687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.420875,54.87],[14.161687,54.593969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.001,66.5],[-23.435,66.311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.295,15],[-23,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-14.273,38.442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-50],[-10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.581,54.15825],[12.0485,54.216188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.685,61.166],[0.869,61.062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.655781,36.495344],[24.718953,36.683297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.184,28.543],[-88.766,28.286]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15,54.336],[14.807625,54.413125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.076,38.801],[-74.837,38.602]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.793625,62.00675],[4.359,61.723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.27075,17.0405],[-62.056,16.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-8.621],[-158.338,-8.371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.529,28.388],[125.788,28.138]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.668,58.596],[-158.991,58.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.232891,36.472391],[26.420563,36.5375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,50],[-140.167,49.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.2,47.75],[-65.4885,49.7935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.684,-14.364],[60,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.292,34.513],[35.025,34.514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.368547,58.168937],[10.4255,58.022125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.572,65.309],[23.7,65.318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.511,-12.451],[-77.699,-12.002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.060996,39.812531],[24.972625,39.941094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.8385,60.1805],[25.577562,60.231437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.596937,37.815609],[23.557457,37.924184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.086688,47.818812],[-4.106,47.994]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.35,20.4],[110.872,21.214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.794,47.133],[-5.85275,45.485375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.2005,32.01275],[-62.304,31.104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.02225,10.00675],[-57.974,12.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.008375,41.3605],[8.8505,41.296]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.187359,37.083187],[26.167406,37.277938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.301,60.082],[-56.593,60.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.429,64.9995],[23.627875,65.098062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.286,57.876],[-0.126,57.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90.001,-42.239],[91.769,-41.887]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.91075,60.07075],[4.1955,59.6395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.0485,54.216188],[12.023195,54.421016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.436141,36.939063],[15.567,36.971],[15.766875,37.08575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.317813,50.068906],[-4.329156,49.909594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.039625,38.267437],[13.114,38.337]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.5765,41.6345],[6.803,41.688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.914109,55.239125],[-6.761812,55.220062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.242,52.804125],[4.118875,52.629625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-30],[-112.917,-30.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.9395,38.99425],[-27.811,38.839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.739,41.6675],[16.932016,41.652781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.764938,38.532688],[20.965719,38.400688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.622875,53.805125],[-3.686,53.954875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.69,2.728],[-100,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.462312,56.352656],[7.297406,56.292187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.959,71.212],[-54.071,70.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.697797,38.693305],[25.729141,38.555117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.92,64.331],[22.15,64.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.078305,38.55825],[14.848898,38.534312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.937,58.069],[-0.774,58.338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.253062,38.459375],[12.1945,38.31025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.74575,39.901875],[23.510437,39.905437],[23.332625,39.917344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.9755,38.4465],[3.373,37.589]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.8,-0.9],[-81.176,1.848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.31,59.168],[19.187313,59.176812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.355,50.484],[172.18,49.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.901,-20.269],[-180,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.789,26.774],[-75.658,26.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.873703,39.856859],[20.003,39.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.32,21.287],[121.463,21.815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.192875,38.882375],[9.61225,38.884687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.7155,39.2355],[9.64975,39.15775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.607,58.202],[16.834,58.063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.8655,49.4095],[-5.051312,49.472781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.1045,53.881125],[9.268375,53.861125],[9.381625,53.789125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.019813,55.372281],[-5.166329,55.353328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.076,-6.13],[-137.396,-4.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.889,39.529],[-9.86,39.231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.124001,47.708755],[-5.082,47.619],[-4.971,47.38375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.473,57.536],[20.397609,57.386562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.942,50.981],[-23.244,51.082],[-29.218,50.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,-19],[9.747,-20.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.24875,51.86125],[-5.9585,51.6985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.532,37.462],[8.971,37.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[93.3,14.4],[92.842,16.3195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.302,53.515],[-5.186,53.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.316312,36.979156],[25.335969,37.149344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.76875,41.69],[18.86775,41.4815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.314602,37.31057],[15.276563,37.155148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.87,49.554],[-1.993,49.5345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.345,38.871],[11.04975,39.51075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.85,37.42575],[6.8825,37.213]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.10475,45.9665],[-7.906,46.232]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.555,38.7135],[25.609375,38.91375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.473,19.9995],[-66.6445,19.8355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.914687,43.390719],[9.851766,43.256969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.324,49.721],[156.279,49.829]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.593312,68.221625],[14.51425,67.90525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.154375,43.354875],[16.265332,43.470359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.356938,55.977063],[16.329359,56.167422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.75,17.5],[-69.453,17.481]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.405,41.51825],[8.35825,41.65725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.251,63.89],[-168.2605,62.47875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.642,60.346],[-0.551813,60.414812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.313875,55.911109],[10.476965,55.890152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.884687,42.735141],[17.688086,42.782715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.829,4.861],[-30,4.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.02525,38.69325],[11.46925,38.59325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.8325,61.018],[17.965125,61.15425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.636,-34.236],[152.723,-34.101]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.86525,38.955],[25.961781,38.918188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.744125,54.05025],[4.3195,54.033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.026,26.285],[34.5,27.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.45425,43.04375],[3.544,43.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.299312,43.419438],[9.382031,43.517719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.522156,40.175484],[18.504,39.913]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.59,57.553],[16.70725,57.53725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.26525,36.34475],[-4.510438,36.217375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.220406,53.539359],[-4.405,53.76525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.917404,42.940596],[4.79375,42.942125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.694992,57.363352],[17.593125,57.25925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.991375,38.028625],[25.780949,37.976156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.309,36.79125],[21.162,36.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.508,37.804],[7.637,37.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[84.281,-15.879],[80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.77725,49.4025],[-0.241,49.344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.809,40.765],[5.904,40.813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.965,-32.137],[7.178,-33.068]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.088094,41.582906],[9.975,41.481],[9.882437,41.374219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.3275,60.905],[20.15675,60.833875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.498,13.5],[-59.946,13.088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.151,60.938],[17.164,60.94],[17.29025,60.96875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.508516,42.971422],[8.5515,43.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.644,66.252],[41.598,67.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.756,8.781],[66.512,8.856],[65.056,8.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.552,56.26],[1.357,56.237],[1.147,55.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.503,31.631],[135.342,33.042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.987,39.301375],[12.636406,39.944312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.9425,63.208],[20.264188,63.044219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-50],[-104.891,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.915,51.687],[-7.766063,51.692312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.374312,56.094562],[10.476965,55.890152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.798641,48.058188],[-4.796031,48.2765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.995477,36.805496],[25.906,36.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.837391,44.516937],[14.865,44.406],[14.961,44.322]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.86,-51.434],[-79.998,-47.119]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.702,57.448],[-134.565,56.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.198,3.24],[145,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.434,38.126],[0.78,37.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.399,34.879],[35.357,34.734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.767969,40.617031],[13.529406,40.493094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.1185,37.391],[11.946125,37.543375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.361,36.101],[-10.901,36.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.290563,54.095875],[5.177031,54.10407]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.6055,69.3495],[16.38,69.334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.343438,50.175062],[-1.482844,49.987563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-30],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.597,65.686],[-23.745,65.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.891,1.805],[60,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.241,49.344],[0.077625,49.415055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.2125,39.9575],[10.124,39.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.847859,47.767328],[-5.0205,47.744]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.8475,59.4995],[3.067,59.416]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.643375,59.616844],[23.470641,59.506891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.3,24.9995],[128,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.015125,40.298375],[8.095156,39.792156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.709938,60.229375],[18.783,60.342]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.616,52.571],[-149.78,52.446]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.329,-25.976],[3.523,-26.761]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.626,40.918],[6.728,40.933]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.075,15.244],[-135.405,15.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.001,26.106],[-150,28.238]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.806,35.6935],[-12.995,35.682]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.824625,44.215563],[12.91975,44.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.999,34.5095],[-8.11925,34.68775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.336469,41.665875],[10.171,41.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.3785,35.882],[25.172969,35.561266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.438195,56.321961],[12.305188,56.185594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.098,36.4535],[22.01,36.52],[21.926,36.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.811312,43.297313],[8.910094,43.212531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.62625,58.077],[-1.675188,58.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-10],[-160,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.4745,54.709],[12.3655,54.654375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.9585,51.6985],[-5.957,51.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.492,59.7],[22.481,59.531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.999,62.3385],[19.479125,62.294875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.872156,50.465688],[-0.972328,50.363828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.466,62.907],[35.018,62.696],[35.492,62.51],[35.667,62.237],[35.483,61.74],[35.739,61.221],[35.697,61.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.51575,49.1745],[-5.664375,49.23075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.86725,36.909336],[24.919254,37.184895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.231,41.22],[18.199,41.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.188,9.091],[-90.035,9.712]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.8745,56.456625],[-2.578812,56.433813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.80625,43.211125],[14.887352,43.367371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.235,33.517],[-144.133,34.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.300562,55.791313],[18.41375,55.7645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,21.141],[-40.001,27.706]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.746,25.146],[121.668,25.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.114313,39.813688],[23.332625,39.917344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.045574,42.939012],[5.00275,42.4215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.696,33.908],[30.7,32.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15,-15.17],[-10,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.3105,39.1235],[15.345625,38.912625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.375125,52.03625],[2.564,52.033],[2.715625,52.0255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.310875,36.852719],[24.361391,36.752797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.142,38.915],[-74.078,39.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.802,60.815],[5.266563,60.510062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.910063,54.722562],[10.854008,54.863625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.86275,55.3365],[-6.7335,55.47625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.332,44.366],[37.434,44.296]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.988188,55.52175],[17.18275,55.4065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.389406,56.289125],[19.057125,56.24225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.442594,53.802406],[-3.397781,53.62625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[101.197,3.188],[100.922,2.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.978195,50.7655],[-1.060047,50.623906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.388719,42.002531],[16.332617,42.138547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.295,37.989],[0.41,38.1855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.729141,38.555117],[25.693219,38.449734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.069062,55.492625],[14.833406,55.412844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.868203,60.951344],[19.032,60.854]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.85,37.42575],[6.525,37.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.0985,55.051],[7.01775,54.861375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.696,53.385],[-149.053,59.241]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.980125,39.599],[25.9265,39.5015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85.695,10.725],[88,13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.57,60.568],[0.727,60.828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.436687,42.380688],[5.543,42.304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-8.282],[-120,-0.984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,-15.17],[-126.699,-16.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.003375,54.852438],[14.066375,55.035562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.70875,65.088],[-23.8545,65.1155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.6085,-22.90075],[106.421,-21.871],[100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.782219,36.822125],[13.650875,36.742375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.5485,59.79],[4.41,59.709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.272,34.852],[34.981,34.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-20],[-175.218,-20.949]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.45975,52.27725],[-5.5685,52.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.439,42.614],[29.632,42.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.4935,32.43925],[34.648338,32.723348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.933375,41.962781],[16.0415,42.124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.341961,39.129945],[25.564,39.173969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.415,-11.664],[75,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.84723,57.855687],[9.987586,57.908125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.67075,55.0135],[9.693234,55.11175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.121,47.296],[-50.002,46.559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.009375,37.257469],[25.875344,37.344346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75.435,-35.787],[80.002,-34.797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.2855,60.514],[18.3605,60.3895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.591,34.649],[18.083,35.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.389,-35.013],[-6.262,-34.063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.001,14.997],[-150,12.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.474,32.916],[17.3,33.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.05525,65.543],[-20.947,65.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.3035,37.0535],[20.958,37.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.067,53.6655],[-4.220406,53.539359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.83275,38.746875],[-9.697312,38.561875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.63375,60.64025],[4.6325,60.336875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.4075,58.2605],[6.472789,58.105783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.71,0.766],[172.73,1.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.998,-52.185],[-81.643,-51.917]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.40575,48.75875],[-4.551687,48.709125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.999719,43.225391],[16.882,43.344],[16.694,43.4205],[16.409797,43.429766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.372,39.493],[17.240875,39.144031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.5,-46.5],[-75.5,-43.5],[-73.9,-36.9],[-72,-33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.765,17.15],[-159.124,16.521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.055,14.512],[-80.934,12.357]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.269,-20.052],[-94.709,-23.814],[-94.169,-24.419]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.176016,54.423125],[14.276641,54.508656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.278719,36.850313],[25.16502,36.701812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.2395,46.63],[-6.8195,47.18975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.85,-10.774],[179.055,-12.858]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.392,46.211],[36.755,45.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.2,-13],[-34.766,-14.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.881,34.656],[28.994,34.653]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.364,66.27925],[12.153,66.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-40],[-180,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.727,36.138],[-12.9385,36.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.108125,38.30125],[21.8625,38.33975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.05025,57.465],[18.094875,57.59975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.814,0.576],[-145.372,4.683]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.314,19.914],[119.704,19.781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.599,33.913],[-52.558,32.782]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.32,30.633],[-60,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.173,-3.8745],[173.1,1.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.966,51.434],[-8.719,51.518]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.86275,55.3365],[-6.656219,55.284625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.532,58.054],[9.723844,58.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.601,-15.066],[100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.0965,57.7325],[18.144188,57.900375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.053,59.241],[-148.943,59.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94.681,8.81],[97,7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.014,35.457],[28.772,35.527]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[98.581,77.528],[100.5415,77.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.08175,49.885469],[0.036687,49.745063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.84425,38.17075],[11.979688,38.186562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.422,53.2395],[3.708125,53.435375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.85,37.42575],[7.5,37.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.9,52.6],[172.355,50.484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.808,11.109],[-87.296,11.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.215812,18.676063],[-66.001,18.7],[-64.3405,18.893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.837,26.246],[-87.264,26.263]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.5735,42.233],[18.676,41.991],[18.687,41.947]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,30],[-41.285,31.398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.814625,37.765],[15.840234,37.870719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.21525,56.34525],[-2.098,56.324]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.687,55.5895],[15.58575,55.59375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.601281,48.656219],[-5.507973,48.596453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.1965,39.41],[17.969,39.35225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.801687,50.291313],[-1.84143,50.167727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.892469,49.848457],[-2.089062,49.832188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.760094,54.309625],[12.023195,54.421016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.0035,-9.993],[171.531,-8.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.665,15.516],[-50.001,16.322]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.002,36.05],[-44.932,35.448]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.564031,55.702922],[10.476965,55.890152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.26125,48.4115],[-6.391,48.358]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.814,42.67],[133.7,42.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.148999,18.679757],[-76.378145,18.715595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.2245,57.755],[24.028,57.874]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.506,32.769],[14.92,32.922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.148,-21.216],[-2.645,-20.037]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.993,49.5345],[-2.042078,49.697828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.98525,-10.1215],[160.423,-11.089]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.062375,41.7515],[5.011625,42.028437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.2985,41.165],[13.324188,41.017313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.172453,54.831187],[13.143,55.133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.394,38.753],[2.9645,38.946]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-17.821],[-180,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.38,36.659],[-129.449,39.492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.381875,52.661125],[2.54925,52.57575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.585,41.585],[-25.109,45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.255437,39.833188],[25.060996,39.812531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.923,38.818875],[14.9295,38.6725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.947219,59.497953],[24.079406,59.485641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.219,65.228],[-13,65.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.906,42.841],[8.95625,42.9535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.3785,51.4775],[-6.52825,51.629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.439,-17.919],[117.705,-16.45975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.10975,64.289344],[22.971603,64.194235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.55525,48.37175],[-5.744688,48.002531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.096,11.253],[-160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.092,58.861],[11.063,58.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.769813,40.779313],[10.68075,40.573]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.824,40.877],[-9.9795,40.814125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.980125,39.599],[26.085125,39.75025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.361937,52.285625],[-6.248781,52.253125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.742375,38.453875],[12.712938,38.337313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.45025,56.354375],[-2.578812,56.433813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.51843,54.966344],[18.502,55.201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.97725,50.255875],[-2.093375,50.209563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.804,56.641],[9.867,56.647],[10.161,56.71],[10.421875,56.718688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.171,52.348],[-146.258,53.125],[-149.696,53.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.600777,43.526945],[7.60775,43.364375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.66,40.19],[4.678,40.29425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.999,22.746],[138.638,21.629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.331,55.054],[141.95,54.878]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.117,52.7225],[2.21625,52.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.635,53.551],[6.926375,53.418125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.747813,54.142844],[-3.683,54.062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.319562,45.058781],[13.447656,44.963156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.623,29.644],[-160,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.55,42.8025],[17.3965,42.89325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.958703,36.849672],[24.86725,36.909336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.269281,55.231125],[15.282656,55.106125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.4645,41.97425],[11.321188,42.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9175,43.7535],[10.096234,43.706109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.319,45.217],[-45.109,45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.586,60],[-38.197,58.266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.087,39.063],[-10.112,40.797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.57675,42.11325],[11.405,42.106562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.50625,49.928562],[-5.491375,49.795438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.641,21.138],[38.497,21.356]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.895,40.2935],[-69.055,39.596]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.376,38.882],[-69.605,38.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83,57],[-79.7,53.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-50],[-174.563,-45.11],[-170,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.244,28.459],[-89.412,28.223]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-50],[-180,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.086,59.404],[5.6945,59.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.423,59.42],[4.54075,59.33725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.429,64.402],[-166.528,62.976]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.57075,55.83475],[-6.95925,56.04425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.5,-10],[149,-7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.16,48.701],[-3.148,48.709],[-3.0705,48.8205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.797187,35.270313],[25.761,35.38325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.377,35.085],[-76.064,34.63],[-76.264,34.217],[-77.032,33.711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.884687,42.735141],[17.9225,42.523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-20],[-90,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.677,61.398],[20.0925,61.4205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.668,37.848],[150,38.763]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.703,47.604],[-6.565062,47.619125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.804,34.036],[-69.842,33.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.337,-16.489],[-80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.761,37.9595],[-129.449,39.492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.074,53.873],[0.31975,53.6265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.183,12.66],[68.802,14.679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.257,2.47],[-40,2.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.48175,51.108812],[-5.639,50.8105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.098406,38.745773],[25.120812,38.87675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.869812,32.617063],[-16.604,31.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.093875,56.872062],[18.205312,56.75725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.356,54.896],[-0.471,54.902]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.391812,41.269125],[6.626,40.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.154375,43.354875],[16.201,43.211812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.060047,50.623906],[-1.140406,50.548437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.459,39.45],[-20.729,39.327]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.491375,49.795438],[-5.56,49.676]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.9695,38.009],[-8.911703,37.915875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.861,38.028188],[20.8165,38.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,20],[-150,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.7305,63.3545],[19.895,63.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.1655,34.625],[-74.355,34.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.669,29.266],[-154.6295,24.9085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.085,60.123],[6.176,60.254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.6325,38.4875],[11.46925,38.59325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.575875,55.811],[5.477,55.93175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.758984,57.331633],[11.6315,57.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.808,40.437],[11.604,40.708]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.056625,55.026859],[18.9695,54.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.307,15.473],[-135.075,15.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.236531,41.044938],[1.701,41.083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.282,54.594],[6.118,54.651]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.790188,39.014688],[12.0155,39.81875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.80225,43.353813],[9.851766,43.256969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.851,20.679],[-20.572,22.98]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.671,60.82],[19.744563,60.670875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.38,-54.146],[-63.613,-54.612]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.2705,47.493],[-5.068,47.123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,20],[-114.922,21.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.207,23.704],[132.96,23.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.653,44.706],[-59.935,45.062],[-59.3,46.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.892,43.921],[-2.322,43.8645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.019,1.034],[-175,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.46,8.077],[121.892,6.947]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55,25.277],[-54.841,25.427]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.59,34.39],[139.698,34.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.43125,-2.88],[171.974,0.143]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.666,58.403],[20.644,58.291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.369,1.108],[-7.518625,3.509375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.544812,38.512313],[13.572,38.646]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6705,56.73675],[6.589875,56.393375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.95,47.109],[-5.022,47.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.939,55.13],[-6.074,55.296]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.731156,43.03925],[5.922516,43.046828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.498,58.46775],[17.485,58.356]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.007188,38.90075],[7.903,38.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146,-16.7],[146.524,-16.084]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.953,49.016],[-40,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.395,61.654],[4.345,61.552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.002,35.0065],[-20.159,34.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-30],[-85,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.273562,38.956484],[25.39425,38.94475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.389625,50.096125],[-3.414,49.965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.663,26.451],[-83.686,25.864]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.3765,57.602187],[17.608,57.6625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.445,15.645],[59.913,10.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[101.149,2.735],[100.922,2.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.87125,40.131875],[9.968,39.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.783,55.983],[1.245,56.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.468,23.178],[-87.418,25.319]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.109,59.2925],[22.273719,59.327687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.486836,53.93818],[-5.618,53.888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.82975,57.68425],[19.168438,57.759125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.995,28.773],[-57.915,27.9665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.712,15.528],[-24.527,13.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.7555,57.38175],[6.895,57.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.95925,56.04425],[-7.27425,56.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-50],[-180,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.300937,36.831469],[-9.224312,36.567625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.861,30.269],[-73.978,30.226]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.071875,43.207687],[16.068172,43.096422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.096,54.68175],[-0.881938,54.76175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.772,74.652],[-74.099,73.577]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,9.998],[130.013,5.294]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.606109,57.893906],[10.600605,57.788314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.748,35.8695],[14.93,35.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-31.01],[-8.931,-31.162]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.889,-45.404],[-83.241,-43.629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.4965,38.576813],[20.691469,38.299062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.373,68.257],[14.32,68.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.647,-8.562],[-100,-8.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.557086,54.990539],[15.658469,54.879063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-30],[-139.999,-31.577]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.835,40.4185],[0.726,40.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.282,38.70625],[25.098406,38.745773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.076,2.768],[73.045,1.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.911,57.284],[5.826,57.042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.4365,40.629688],[24.091,40.569]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.482,21.61],[160,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.267492,55.642883],[15.298031,55.545687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.319,33.892],[124.49,33.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.6,-19.6],[119.69,-17.066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.4595,58.1035],[17.5345,57.91325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.603,38.131],[-122.9,37.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.294,31.627],[-71.249,31.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.718,-20.503],[159.459,-20.406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.11575,39.31975],[19.875125,39.163875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.455,-24.722],[165.154,-25.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.532,66.207],[-18.482734,66.103766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.352,37.207],[18.21175,37.191875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.515813,57.624594],[21.409937,57.676063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.078,71.239],[-153.9565,71.984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.774,34.595],[-26.236,34.092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,0],[-1,4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.920531,50.60275],[-1.140406,50.548437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.002,42.707],[-42.618,42.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.159,59.143],[2.524,59.332]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.25,-3],[-80.043,-3.093],[-79.85,-2.443],[-79.883,-2.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.84175,17.25425],[-66.274,17.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-30],[-130,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.869148,42.83407],[9.842281,42.673063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.735,72.272],[80.258,72.501],[79.886,73.201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.935,30.338],[-77.1925,30.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,0],[-180,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.79625,37.754109],[24.668891,37.886359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.7265,-3.4845],[117.188,-5.453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.532187,36.11375],[28.716,36.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.081,27.243],[-67.444,27.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.498906,49.873219],[-2.28575,49.881172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.912,23.8015],[-73.566,23.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.98075,52.02825],[-5.422125,51.954]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.33525,52.56475],[2.74625,52.283687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.796031,48.2765],[-4.90925,48.273438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-20],[-159.999,-22.627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.26,30.372],[-80.1175,30.3905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.188,40.58225],[13.287602,40.316414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.6365,36.335],[-3.976,36.3615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-10],[-15,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.686,54.73],[8.723,54.60825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.238,68.421],[16.87,68.43425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.048,-7.879],[115.6045,-9.0895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.149406,58.661406],[17.22825,58.537625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40,-40],[35,-40.107],[30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.066,49.9695],[-2.28575,49.881172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.431009,43.743467],[-6.435,43.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.911219,54.004937],[4.947,53.862]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6295,54.114],[5.431594,54.11825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.665,37.52825],[24.678086,37.380227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.756016,58.328711],[8.59334,58.182074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.702219,52.418563],[-5.622,52.269],[-5.535656,52.177781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.406,54.066],[0.4965,53.913]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.765,37.973],[7.160969,37.739]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.3785,51.4775],[-6.391,51.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.544,40.311],[-9.665688,39.541438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.027812,36.308605],[26.900813,36.420781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.117,52.7225],[2.2465,52.74075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.946219,55.885438],[15.258234,55.887234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.1415,39.095],[14.17375,39.212375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.423,33.559],[-68.693,30.578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.689344,41.69],[8.71175,41.5865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,30.806],[-40,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.240687,41.79975],[16.347078,41.885453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.729,28.799],[-60,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.643836,37.532453],[25.504,37.552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.861,61.219],[-1.724,61.028]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.53875,41.25775],[2.876,41.408]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.9895,37.884125],[24.967219,38.05525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.474969,46.901594],[-2.622,46.884969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.65375,57.411687],[20.541938,57.3945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.39675,58.696375],[8.992,58.456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.432875,45.286875],[14.570625,45.229859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.224,-23.063],[4.225,-19.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.33,25.588],[134.248,26.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.491,37.405],[-74.327,37.81525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.9955,56.304],[11.922625,56.101437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[92.842,16.3195],[92,20],[91.332,21.337]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.155563,58.563688],[21.06975,58.33125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.303,-18.057],[-149.893,-17.372]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.562,41.506],[18.525625,41.264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.693,30.578],[-69.3575,30.257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.344,46.026],[-60.2,47.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.376,42.589],[-9.368063,42.244563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.475,58.068],[21.529875,57.969375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.0055,-9.99425],[49.825,-10.051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.34432,58.758523],[10.245375,58.591437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.231625,54.403687],[-0.086,54.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.262,-7.212],[120.946,-7.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.361969,52.951855],[1.295,52.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.5,37.68725],[-74.396,38.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141,-2],[136,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.773,50.579],[-5.856625,50.363937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.778,31.505],[-15.159,30.206]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.010844,57.876],[20.148688,57.831875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.5755,38.543625],[-28.431,38.79025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.352,48.31],[-4.604,48.324875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.168875,50.49775],[-0.216875,50.345875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.852,37.379],[2.606,37.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-10],[-170,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.779,43.39],[40.255,42.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.780969,57.144813],[19.881,57.07],[20.07425,56.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.797,24.513],[-80.9,24.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.978195,50.7655],[-0.803031,50.648687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.284,21.717],[-66.6445,19.8355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.334,39.559],[8.250625,39.284125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.62,-6.007],[-144.448,-5.607]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.558625,60.958],[19.662,60.948]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.330063,45.226062],[12.281562,45.3995],[12.446938,45.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.156,42.8315],[-10.054,42.858]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.699,43.352],[33,43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.168,57.916],[5.182,57.626]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.464687,60.453016],[21.648,60.461],[21.718969,60.336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.8,35.83],[34.404,35.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.196,55.414],[-1.085,55.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.194,35.991],[17.002,36.099]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.22475,56.46925],[-2.21525,56.34525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.076188,43.530625],[-2.332,43.56],[-2.534,43.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.94975,54.67425],[13.772625,54.616875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.146242,38.676023],[15.261312,38.501312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.023062,60.089125],[-0.846,60.098]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.895,57.3275],[6.89275,57.126625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.164,53.38],[-40.002,52.691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.412875,37.685],[-0.5355,37.587625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,8.503],[-138.666,7.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.854,24.086],[-30.001,25.932]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.231,36.563],[-3.781688,36.602187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.637,19.166],[114.1135,21.70575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.258625,56.124625],[15.413297,56.01575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.977379,55.011469],[11.022891,55.124469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.55325,60.13225],[27.772,60.192]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.355,56.604],[10.474,56.614]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,-50],[-57.6315,-51.4805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.534,32.308],[124.751,32.442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.507422,49.735531],[-3.279844,49.687828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-20],[-86.337,-16.489]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.606,37.325],[3.01,37.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.636,72.363],[-74.099,73.577]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.004344,40.877812],[13.207812,40.832594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,0],[150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.814062,36.692281],[25.662312,36.51475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.422,34.519],[33.179,34.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.7045,57.088],[-6.5945,56.94075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.974687,36.6915],[-1.752,36.68025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.936,-0.541],[167.123,-0.453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.201,-36.699],[155.568,-36.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.639375,44.56475],[14.63716,44.425438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.226801,45.103111],[14.177156,44.91425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.8645,54.6055],[5.11875,54.781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.038,41.262],[5.516,41.219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.558625,60.958],[19.46925,60.756625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.875063,54.010312],[-5.135187,54.614219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.119125,57.372625],[11.01575,57.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88.973,13.265],[92.978,10.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.006,-24.992],[-126.344,-23.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.247,41.869],[-11.236,42.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.6,-19.6],[116.667,-20.1995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.3195,41.7635],[18.5795,41.6295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.668,37.28875],[11.56925,37.25275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.222,29.662],[-78.586,30.3695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.7035,38.082375],[22.108125,38.30125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.73575,55.82675],[14.780344,55.927063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.022469,56.730469],[11.905875,56.514875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.424,37.147],[-12.152625,37.529375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.87,60.953],[3.72575,60.94075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.332,57.855],[19.608062,57.901125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.5245,37.4895],[10.683625,37.49325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.998,36.001],[30.942,36.237]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.312703,58.878641],[10.178562,58.801852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.074063,36.502156],[26.024,36.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.660875,57.97925],[23.528,57.954]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.40325,36.26075],[13.16425,36.405188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.034,35.921],[123.199,37.102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.860188,52.41475],[-5.78125,52.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.24,41.414],[3.043,41.272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.160484,55.483516],[16.072,55.571188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.766313,54.523844],[18.65875,54.40225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.28925,42.629625],[14.514,42.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.077887,58.984262],[10.950312,59.026313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.276,58.888],[21.24,58.7945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.045938,37.366875],[11.10775,37.20425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.087,65.461],[22.933875,65.3335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.672,26],[-94.242,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.151375,56.527625],[20.243063,56.447688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-12.502],[0.001,-14.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.813,43.15775],[6.858375,43.04875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.069625,60.563875],[19.039656,60.36375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.617594,59.841656],[19.71725,59.737344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,-37.8],[179.583,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.574,38.787],[-74.565,38.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.53,50.548],[-19.223,50.906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-30],[-160,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.173,51.354],[-8.070594,51.584297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.208,31.821],[-76.42,31.518]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.845,41.095],[-11.907,41.014]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.379,47.862],[-122.495,47.923]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.735563,34.47975],[30.559,34.452]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.482844,49.987563],[-1.290781,49.913063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-20.533],[160.558,-20.592]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.482875,49.87325],[-1.6055,49.846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.152625,37.529375],[-13.687,37.969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.029313,38.623],[25.15475,38.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.004,38.295],[11.0505,38.5065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.6495,43.041],[3.947375,43.03275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.905,36.274],[-74.5,37.68725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.197,41.251],[-71.474,41.073]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.56625,38.18525],[13.422781,38.184656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.357438,57.459688],[-1.22525,57.38825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.565992,43.739602],[15.422688,43.642125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.587504,45.589098],[13.368313,45.661125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-10],[-25,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.976,35.364],[-140,39.592]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.56425,38.18125],[6.052,37.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.0995,59.7035],[-1.1365,60.0135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.828,34.002],[-16.3495,34.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.152625,60.6845],[19.02175,60.7085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.9425,42.22775],[10.85625,42.1635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.941,43.388],[4.959625,43.261375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.0055,-9.99425],[52.779,-6.367],[53.822,-4.977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.6455,37.5105],[15.584,37.46],[15.537,37.415],[15.454,37.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.534,-7.517],[-104.133,-5.922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-177.29375,54.63925],[-178,58]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.78675,38.803],[14.669,38.9545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.09825,66.1495],[-23.209063,66.200938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.422875,56.409813],[20.503602,56.56732]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.192,-35.166],[-44.758,-35.162]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.085,55.325],[-0.706625,54.952625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.679688,36.879063],[13.782219,36.822125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.16,38.0985],[21.213969,38.212187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.018578,41.432406],[17.161313,41.523086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10,-40],[5,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.727406,55.614375],[19.765,55.484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.315875,58.167187],[6.182156,58.209859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.4815,68.8795],[17.131,68.952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.478,54.276],[-8.487,54.281],[-8.626,54.317],[-8.696,54.327]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.825125,40.679375],[2.305813,40.422359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.001,-25.001],[0.001,-22.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.853875,43.485687],[14.88932,43.614086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.133,-34.533],[114.192,-35.583]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.8715,36.415],[-25.774,34.595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.501,-22.947],[14.345,-22.902],[13.0875,-23.3505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.663,30.087],[-65.771,30.079]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.936,38.729],[-9.822688,38.526875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-6.982],[-150,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.7955,64.5765],[22.817406,64.030812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.472,41.526],[10.339375,41.356375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.869908,37.367563],[23.831051,37.19384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.991312,49.086812],[-3.87575,49.202375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.352,37.207],[18.494,37.254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.835,36.355],[-73.4325,36.1165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-10],[91.525,-11.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.62875,54.51575],[16.12575,54.61325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.298,28.551],[-79.3215,27.4185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.8,-5],[160,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.697797,38.693305],[25.883766,38.665375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.101,25.5],[58.887,24.089]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.113,71.027],[29.888,70.922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.999,19.998],[54.2,16.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.658469,54.879063],[15.766562,54.737938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.716,-50.835],[-79.999,-51.107]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.35025,53.537562],[-3.2865,53.74075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.188875,40.913562],[12.316,40.773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.12,47.78],[-8.241,47.716]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,50],[-29.898,50.123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.2005,32.01275],[-64.754,32.377]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-118.465,33.636],[-118.145031,33.559938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.18675,49.8325],[0.294469,50.076906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.049,50.57],[-1.922438,50.531938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.409,43.479],[8.444688,43.3345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.82725,38.9685],[24.911,38.809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.762,7.289],[-30,5.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.495,36.984],[-12.3215,36.9595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.461,18.414],[107.996,18.294]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.966,51.434],[-8.6675,51.472]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.529,28.388],[129.562,30.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.910328,42.985254],[9.974938,43.106578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.1885,69.164],[15.082,69.233]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.322,38.748],[8.4085,38.6375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.606563,44.994031],[14.436188,45.1285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.636,51.3155],[-4.22675,51.25825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.829,29.073],[33.102,29.037]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.6445,19.8355],[-66.821,19.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.209,6.971],[157.594,7.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.383,65.374],[-23.6025,65.2295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.420078,37.448047],[12.327375,37.502875],[12.195594,37.575281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.408,41.159594],[8.250234,41.150875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.01975,19.973625],[-60.108432,19.972234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.575063,56.531188],[11.454937,56.3865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.2775,42.1305],[11.21975,42.249031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.586125,38.55925],[15.766156,38.505625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.213461,41.962656],[16.332617,42.138547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.640156,51.30475],[1.835754,51.295676]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.147625,36.622125],[13.16425,36.405188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30,-40],[32.766,-37.447]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.479688,36.063],[24.235062,36.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.225375,41.650625],[17.140937,41.76375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.757086,50.611703],[0.5575,50.519937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.671937,38.898688],[20.356,39.114]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.331437,39.515187],[2.553187,39.416438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.661,61.90475],[20.4665,61.749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.678,30.835],[122.75,30.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.79375,53.396],[0.419602,53.471922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.078,42.789],[29.439,42.614]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1855,38.765],[4.57,38.683]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.373,55.1015],[5.33125,55.374875]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-99.186,70.748],[-103.637,72.6],[-103.448,73.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.42,-40.448],[10,-40.707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.469,27.424],[-19.9605,29.97825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.776185,43.685044],[15.906547,43.517922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.918,66.174],[8.208,66.316]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.865,65.313],[8.028,66.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.89,26.793],[-79.939,25.981]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0635,54.7685],[8.102375,54.561813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,25.277],[-137.479,27.618]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.982,50.608625],[1.125125,50.642031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.2145,26.3495],[53.9805,26.373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.395,27.951],[129.292,26.467]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.342,42.497],[-154.697,42.521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.615,42.559125],[9.692164,42.73807]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.112,37.928],[-26.425,37.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.332,44.366],[36.855,44.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.872156,50.465688],[-0.920531,50.60275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.102625,48.304969],[-5.106406,48.123625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.942545,37.437957],[25.875344,37.344346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.815,64.391],[9.478,63.9105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,40],[-50.587,40.588]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.815812,50.458],[-1.633469,50.502023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.809,55.7815],[-5.929,55.508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.66975,57.805625],[4.526,57.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.197,39.54275],[0.714344,39.443875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.98725,47.8615],[-5.893,47.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.193,51.666],[3.109625,51.73475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.186,61.391],[-60.223,66.866]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.4485,63.551],[20.570812,63.52575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.112,56.377],[16.334063,56.520812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.076,70.11],[23.668,70.439],[23.625859,70.679859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.154875,57.74375],[21.059781,57.520688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.554,-31.408],[156.222,-31.5435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.126,40.293],[3.057,40.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-10],[-169.004,-9.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.819,64.18525],[-22.661375,64.139125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.177,50.849],[-1.106688,50.7695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.678,37.901],[7.637,37.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.109,45.405],[-37.184,47.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.329,70.226],[15.7565,70.0365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.5685,52.41],[-5.535656,52.177781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.542,53.823],[0.650125,53.747875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.028,50.099875],[-5.881875,50.019656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.9255,40.3615],[-9.828,40.028]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.889,65.799],[0,67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.983,40.461],[0.835,40.4185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.781813,56.536],[7.706,56.416]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.771,30.079],[-67.347,29.613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147,-10],[144.5,-8.5],[142.67,-10.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3455,56.35825],[4.5905,56.392625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.411,59.13],[23.276992,59.333898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.82275,16.004375],[-85.6,20.933]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.77025,34.485],[32.106,34.429]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.978,34.678],[28.6855,34.6605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.424094,52.6015],[4.454422,52.444984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.822,36.894],[-73.814,38.062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.836766,58.773047],[21.419094,59.038344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.876469,40.019656],[24.57025,39.951344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.510625,38.706875],[-73.028,39.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.0065,54.07925],[6.256797,54.157672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.1675,37.705],[-9.10275,37.405875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.085375,46.287625],[-4.7765,47.1735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.34425,37.84675],[-34.554317,37.691314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.002,-34.305],[-3.824,-34.158]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.229,21.788],[-71.917,22.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.535656,52.177781],[-5.6175,52.0285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.909,7.8],[-44.77,4.079]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.919633,42.400891],[10.9425,42.22775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.71725,57.714875],[-1.598875,57.713125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.868266,56.714313],[7.781813,56.536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.334063,56.520812],[16.235,56.354]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.168719,58.582125],[5.449,58.348],[5.541,58.284],[5.641375,58.169719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.0165,41.837688],[9.92725,41.702375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.8725,35.468],[-12.964,35.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.029313,38.623],[25.098406,38.745773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.1,1.1],[172.73,1.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.196,-9.807],[-100.647,-8.562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.347078,41.885453],[16.388719,42.002531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.5755,54.02],[5.589,53.781],[5.60825,53.644062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.709437,66.141781],[-24.164,66.336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-50],[-160,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.88932,43.614086],[14.777938,43.697437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.762875,36.295375],[25.809,36.103]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.293625,56.684125],[7.23125,56.554703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.182,-19.785],[50,-18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.678437,41.862938],[8.542,41.8305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.583,53.987],[-36.736,53.808]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.433,-22.283],[166.314,-22.4065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.911,38.809],[25.120812,38.87675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.669,50.041],[0.294469,50.076906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.971,55.404],[-131.598,55.297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.0985,70.325],[31.366,70.3685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.470937,57.634844],[11.381727,57.740961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.581,38.92],[24.71775,39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.639578,40.049898],[25.676,39.86775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.9335,58.9355],[21.958,59.10825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.356375,59.712812],[21.2675,59.591437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.176,30.073],[-74.133,28.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.996,10.0415],[-88.138,9.341]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.459375,44.802906],[13.5225,44.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.127,56.182],[5.244,56.177]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.744,57.114],[16.84925,57.322375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.243688,39.123438],[2.76175,39.108]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.866937,38.049],[11.84425,38.17075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.005,62.582],[18.999,62.3385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.74,-31.323],[-49.5,-30.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88.904,-1.112],[90,-1.549]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.2795,16.1565],[-86.436,16.166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.33725,39.5515],[14.17725,39.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-20],[-120,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.00825,37.67925],[27.104,37.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.642,35.416],[-13.952,35.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.830586,43.152195],[9.752455,43.003715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.209,49.577],[-0.925,49.557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.55125,25.853],[123.29,27.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.8745,56.456625],[-3.2,56.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.147,-16.012],[-147.254,-16.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.251,60.57825],[19.40525,60.632625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1955,59.6395],[4.423,59.42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.63,21.799],[91.332,21.337]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.422875,56.409813],[20.243063,56.447688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.43,32.3025],[30.871,32.147],[32.055375,31.709125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.273,32.036],[34.4935,32.43925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.39,70.8545],[29.101,70.8845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13,65.384],[-13,65.922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.862258,53.790398],[7.624125,53.82775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.4835,36.8185],[-2.7155,36.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.548,45.818],[-24.15575,46.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.9515,28.3825],[-16.173,28.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.938,55.334],[142.331,55.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.759,37.5805],[8.130125,37.831125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.493125,55.54575],[12.488875,55.328594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.4495,24.3335],[119.753,22.456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.765,61.0095],[20.832812,60.783469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-177.754,47.893],[-179.733,47.925],[-180,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.713625,54.125],[8.60725,54.06425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.498,-23.712],[-130,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.863375,54.368875],[-3.93775,54.2815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.772,48.732],[-125.501,48.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.828,41.299],[3.5435,40.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91,26],[-91.9205,26.21525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.418,-1.256],[107.69,-0.688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.169688,54.784375],[16.127938,54.944875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.226,-24.761],[-34.612,-24.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.079406,59.485641],[24.414,59.49675],[24.613297,59.490648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.694,-18.247],[171.761,-18.166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.6675,51.472],[-8.42825,51.517]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.193812,43.917844],[9.1325,44.136844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.98075,41.019875],[-9.0605,41.267],[-9.1865,41.63375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.153922,46.763398],[-3.616,46.556]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.754,38.101328],[25.780949,37.976156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.802795,54.899248],[17.665,54.887]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.393,42.497],[35.465,42.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.496875,58.794438],[10.456422,59.020891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.742,60.378],[4.63375,60.64025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.598,34.901],[139.57,35.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.272,40.213625],[23.088375,40.11725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.811125,43.367094],[6.813,43.15775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.981,39.1945],[24.878,39.216]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.818,55.1365],[10.83575,55.258875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-30],[98.721,-28.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.613766,56.199719],[7.562094,55.989156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.0485,27.078],[-76.84,27.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.279813,52.145188],[-6.1085,52.0605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.520802,54.552705],[12.701,54.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.046391,61.372875],[21.156,61.2965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.739352,57.566789],[7.851,57.339375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.52275,44.891],[36.855,44.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.7,13.4],[122.3,15.1],[123,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.202781,55.981562],[16.246688,55.863188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.772,-8.975],[135.458,-8.771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.117906,56.828844],[12.026375,56.91575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.9,65.6],[-24.6895,65.8105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.178,-33.068],[8.741,-31.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.963188,56.625062],[7.805,56.413]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.02425,49.933625],[-5.881875,50.019656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-20],[-130,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.68325,38.161],[-9.641,38.036],[-9.562062,37.788625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.903,32],[-69.3575,30.257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.045,10.642],[-83.59,11.104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.671484,54.520078],[11.799836,54.459984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.928,53.053],[-46.592,52.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.1,12.2],[109.77,11.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.55,65.4755],[-13.52375,65.29675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.777375,58.982563],[5.641188,59.016695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.4465,58.40925],[4.2665,58.0935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.259,24.592],[159.999,22.421]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,9.715],[-110,1.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.506,-11.18],[159.791,-10.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.339,37.967],[-9.4575,37.8095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.922,57.675312],[8.772078,57.447109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.63275,34.32225],[33.162,33.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.5255,52.8755],[2.846,52.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.727625,42.65275],[17.592,42.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.216,39.421],[8.138437,39.238812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.021,64.931],[-13.763875,64.873109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.6585,58.153],[9.869266,58.091203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.0865,35.628125],[-74.99725,36.06675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.3035,28.42],[-91.558,27.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.8925,56.96425],[8.012078,56.967609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.704,45.554],[-5.85275,45.485375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.641,61.291],[19.450031,61.446969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.323148,45.536664],[13.45457,45.588383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.972016,52.231766],[-5.986406,52.129875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.814563,36.16925],[26.9415,36.116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-40],[5,-35.386]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[113.894,75.247],[119.013,75.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.998,34.382],[164.325,36.009]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.042,-19.177],[156.507,-18.151]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.8755,36.5355],[12.6435,36.661],[12.264781,36.874156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.5,41.075],[8.574344,41.261812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.742375,38.453875],[12.736,38.6895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.973937,64.72425],[22.834,64.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.562062,37.788625],[-9.479,37.911]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.953875,54.659875],[-0.661375,54.568625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.966328,37.293547],[23.916953,37.131188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.517,64.156],[-16.673,63.768]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.391625,61.266875],[19.312875,61.169125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.210094,56.756406],[11.229387,56.567371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.094938,57.35625],[19.24625,57.42375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.00075,54.44225],[4.911219,54.004937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.01625,41.074],[10.105,40.028]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-20.533],[160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.626,59.243],[3.741,59.199]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.4905,62.74475],[20.15375,62.46775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.5225,49.75725],[-4.3895,49.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.511,39.481],[23.650844,39.329031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.6705,74.5495],[-161.771,71.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.764,34.7415],[23.714,34.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.366125,55.6635],[15.298031,55.545687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.9,40.38175],[3.0135,40.427]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.023062,60.089125],[-1.08525,59.9725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.446,70.001],[54.357,69.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.639,70.972],[19.543,70.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.7035,38.082375],[22.808687,38.070687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.766156,38.505625],[15.691,38.583625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.274,51.601],[3.297875,51.794812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.845,-10.025],[-169.055,-10.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.581359,59.451078],[23.0855,58.9995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.144,38.445],[13.926813,38.3505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.898125,40.631],[25.049,40.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.095156,39.792156],[8.1135,39.5995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.192063,54.184531],[7.12525,54.292687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.588,-32.297],[-49.731,-35.207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.534,33.533],[-21.368,33.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.031281,38.956594],[8.82375,38.788313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.26525,-34.819],[-58.279,-34.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.538,39.424],[129.5315,38.021]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.45425,43.04375],[3.6495,43.041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-179.276,24.253],[-178.61,27.897]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.566,22.189],[113.746,21.833],[114.1135,21.70575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.095,34.502],[26.587,34.509]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.8,55.1],[-165.362,54.4985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.618,55.828],[17.7765,55.8565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.292625,59.019719],[5.345264,59.233676]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.211,54.084],[-5.9745,53.991375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.20925,58.237813],[10.368547,58.168937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.999,-26.764],[-170,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.223406,64.253375],[-22.114688,64.15675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.129,58.642],[19.227,58.8255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.839,33.585],[132.165,33.034]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.378,62.176],[20.7445,62.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.937078,42.383441],[9.947281,42.268563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.428766,50.403988],[0.251,50.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.745688,54.37375],[7.76875,54.178875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.4595,58.1035],[17.415,57.868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.055594,43.343344],[-9.6305,43.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.01,34.751],[139.9,34.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.644594,42.228906],[8.082,42.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.40825,36.68125],[21.317125,36.608187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.749359,60.966672],[4.7815,60.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.396,42.216],[11.21975,42.249031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.911,5.508],[-86.7,5.932]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.155,17.819],[-64.224291,18.787721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.194,37.033],[24.040229,37.114312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.36,0.939],[77.754,1.286]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.46,42.936],[33,43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.197,4.084],[-85.74,5.229]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.886,56.762438],[11.895656,56.986219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.55,62.003],[-6.743,61.868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.199,41.069],[18.024,41.212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.3745,41.2245],[18.199,41.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.552,26.854],[-77.0485,27.078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.319562,45.058781],[13.140313,45.131125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.893,46.811],[-14.378,46.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-30],[-80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.557625,35.496],[25.701406,35.484406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.60525,56.14575],[15.696,56.016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.939,55.13],[-6.656219,55.284625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.96175,41.76125],[-8.953281,41.528719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.128875,57.01575],[8.247984,56.951031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.097,38.956875],[13.086,39.162]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.4065,39.4365],[24.412,39.176],[24.4015,39.074438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.581,37.716],[10.833,37.6445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.293,32.861],[128.9,31.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.519,51.844],[-7.357,51.803]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.087,32.508],[28.596,32.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.601,41.943],[160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.5,1.1],[118.019,-2.681]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.011625,42.028437],[5.276,42.237]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.2525,16.215],[41.377,16.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.711,44.914],[-2.651,45.042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.5765,36.101375],[-4.510438,36.217375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.3,-4.6],[60,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.595,7.643],[-36.455,6.509]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.23675,56.376],[5.58075,56.397]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.002,-33.532],[40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.366,41.299],[4.845,41.2535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.342,31.039],[122.75,30.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.1305,42.5335],[3.235,42.608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.7465,56.2005],[16.831,56.27],[16.90625,56.33675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-35,40.107],[-30,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.18977,37.595664],[24.051451,37.548637]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.336625,49.931],[-0.332,49.714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.187313,59.176812],[19,59.048]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.119125,57.372625],[11.233766,57.507234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.014,35.457],[29.255,35.428]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.7635,37.2585],[4.698,37.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.899,20.346],[-73.86075,20.976375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.723,36.961],[-10.776,37.146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.841,45.159],[-5.8835,45.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.8555,42.056],[4.16525,42.1755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.594,28.239],[-21.75,23.877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.984,56.726],[3.459,56.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.8185,47.0625],[38.183,46.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.30525,39.6275],[13.086,39.162]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.764,47.631],[-2.776,47.626],[-2.806,47.612],[-2.911,47.564],[-2.9785,47.4705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.223,66.866],[-71.636,72.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-29.076],[-89.549,-29.574]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.883625,42.72525],[8.082,42.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.106625,47.4005],[-3.224,47.41675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.003,56.534],[-20.002,57.344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.444,-8.0255],[125.7,-8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.16525,42.1755],[3.808125,41.85975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.521,57.904],[-3.1415,58.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.849875,57.6765],[11.77825,57.569]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.182,55.3605],[-6.074,55.296]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.01425,55.0485],[12.961844,55.224438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.775,35.329],[28.111,35.364]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.956828,51.375391],[2.728156,51.331844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.76225,35.96925],[26.963,35.957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.068,-9.371],[170.798,-7.164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.207,20.84],[-45,25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.20925,58.237813],[10.096687,58.556562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.288,34.139],[139.3,35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.626,55.839],[14.73575,55.82675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-40],[104.244,-34.614]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.511437,37.485563],[26.669344,37.348992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.6525,35.4995],[12.568,35.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.942,36.237],[30.905,35.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.167,50.407],[-11.78,50.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.835892,50.461512],[0.967812,50.461156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.218281,38.426297],[12.860656,38.392594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.731,46.053],[30.755,46.495],[30.9,46.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.921891,58.37575],[8.848,58.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.663625,57.26975],[16.6615,57.019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.95,59.279125],[21.710375,59.180125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.516,41.623],[11.744,41.572]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-10],[-100.196,-9.807]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.793,39.4555],[7.563,39.075875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.694,-18.247],[168.063,-18.461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.287625,36.376078],[25.352688,36.262219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.284,21.717],[-67.038,22.017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.4355,39.67525],[18.54025,39.7745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.94991,55.082172],[7.86725,55.2665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[93.8105,-41.4805],[94.140931,-41.414689]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.4,9.1],[171.291,9.532],[-180,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.914094,58.455031],[-2.774375,58.54125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.725,35.664],[-69.761,34.928]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.948438,57.816688],[17.956422,57.596609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.531,35.966],[26.632,35.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.253,66.925],[-16.387,66.839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.647,58.923875],[19.782,58.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.431,41.148],[10.318,41.162]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.778578,52.525672],[1.7605,52.721312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.397625,37.981],[8.331,37.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.36675,59.84175],[21.356375,59.712812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.957875,39.671375],[23.724,39.5465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.521,-34.869],[164.826,-35.547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.4215,38.86525],[-124.181125,38.49725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.090375,44.612375],[12.984188,44.807578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.411656,37.381625],[23.574336,37.448672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.502,48.267],[-129.8,46.231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.221,41.505],[8.247,41.296]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.623188,41.456219],[9.527938,41.293125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.528,-9.0925],[124.548,-8.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.682125,-17.353625],[-150,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.962875,61.23025],[4.80218,61.269719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.2,-3.536],[4.877,-2.675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.8155,49.99325],[-3.888672,49.878625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.749,39.546],[4.958,39.383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[79.886,73.201],[78.171,73.974]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.49625,57.26325],[19.65,57.1585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.442812,43.890937],[15.565992,43.739602]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.227922,54.829687],[8.242625,54.67725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.002,34.829],[-50.002,34.009]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.182,54.386],[-4.141,54.491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.473875,19.311],[-66.26575,19.25825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.638312,54.561875],[7.745688,54.37375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.006,39.173],[0.11825,38.9955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-30],[-80,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.998,-17.141],[80.001,-15.945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.4,-24.8],[150,-21],[147.1,-18.7],[146,-16.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.571,58.431],[9.44075,58.222]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.449,-6.502],[-10,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.691,26.184],[-91.219,26.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.03975,51.93075],[-7.266,51.9815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.974,31.633],[-73.037,30.94525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.923,5.978],[-27.159,2.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.28918,37.929301],[23.44925,38.00125],[23.561531,38.025656],[23.557457,37.924184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.273562,38.956484],[25.120812,38.87675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.893,33.144],[-78.102,32.311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.749125,36.0505],[22.5575,36.08125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.379,35.041],[32.242,35.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.2785,36.326],[-7.7715,36.4095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.205,43.603],[8.320789,43.409773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.454422,52.444984],[4.8385,52.424],[5.0725,52.11025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.9805,26.373],[56.27,26.402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.30175,40.94275],[18.159,40.971]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.211,59.087],[11.077887,58.984262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.963375,40.08925],[0.957,39.986]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.726773,53.505562],[-4.563,53.529625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53,67.65],[53.12,67.698],[54.365,68.26],[54.754,68.966],[54.495,69.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.103,59.323],[19.040625,59.444125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.035,52.40575],[2.861125,52.4445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.478,34.941],[139.3445,34.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.357,41.117],[-71.474,41.073]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.667,58.041],[19.896906,57.983906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-50],[-44.889,-45.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.432,40.712],[1.074,40.511]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.619,25.605],[-63.114,23.301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.16502,36.701812],[25.081813,36.791625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.975734,43.784],[8.800363,43.646438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[62.906,7.145],[60,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.63,37.909],[16.727,38.027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.029,48.807],[-7.052,48.628]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.48,33.946],[29.696,33.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.317,56.823],[-1.49475,56.37125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.37,33.03],[-64.754,32.377]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.447,12.282],[111.478,12.524]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[151.265,-39.826],[151.859,-40.91],[152.868,-42.084]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.021656,36.719547],[-6.875125,37.101]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.255648,38.795563],[15.082891,38.777516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.0895,64.786],[22.973937,64.72425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.967281,35.9845],[24.918109,36.127172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.514531,40.822406],[10.4085,40.9605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.3,-1.5],[107.418,-1.256]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.849,60.368],[3.621,60.113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.546,-22.802],[168.548,-22.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[74.823,4.468],[72.9545,4.022438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.878,55.441],[3.7415,55.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.61325,41.319875],[16.674,41.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.457313,38.177813],[16.236,37.956]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.1,24.7],[51.923,25.266],[51.887,25.374]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.8155,55.7875],[6.633,55.613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.003,60.836],[-150.394,61.167],[-151.53,60.784],[-152.863,58.896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.648875,48.813688],[-2.567,49.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.622,24.685],[-87.8975,22.731]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.15575,46.252],[-20.001,43.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.89025,65.97275],[12.672,66.076062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.361,39.307],[1.460469,39.418156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.001,13],[54.2,16.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.64375,57.9235],[8.509,57.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.598469,57.102031],[11.516864,57.31915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.299,58.71],[12.902,58.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.531,43.771375],[8.497633,43.934609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.577,-7.375],[72.440438,-7.267563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.21625,52.633],[2.33525,52.56475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.111,44.144],[13.231,44.084]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.616,57.656],[21.515813,57.624594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.492,26.931],[-94.568,26.163]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.910063,54.722562],[10.714641,54.660719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.567,32.189],[-64.754,32.377]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.049,36.4915],[14.1775,36.45275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.252187,41.795797],[2.613,41.4505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.269,17.741],[-75.411,17.802]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.025,-23.154],[-4.412,-24.677]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.165,43.278],[4.5475,43.2935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.264781,36.874156],[12.045,36.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.899,39.7605],[-10.319,38.6405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.82775,59.78625],[4.945469,59.560281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.058156,34.557719],[33.179926,34.677434]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.941361,42.586406],[9.937078,42.383441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.2055,40.2865],[2.4275,40.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.966328,37.293547],[23.869908,37.367563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,3.288],[-95.795,4.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,-50],[130,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.629,37.352],[16.52325,37.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.167375,59.504625],[19.987375,59.541]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-116.174,28.007],[-117.491,28.693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.484,53.265],[4.66375,53.405641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.315,69.64],[16.642,69.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.2475,56.7045],[-6.44,56.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.054781,58.192828],[11.119563,58.295437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.75,30.985],[122.9,31.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.563,53.529625],[-4.435625,53.546125],[-4.220406,53.539359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.67,36.427],[-9.4495,36.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.381,20.656],[-135,25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.127,41.638],[12.011,41.602594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.285,31.398],[-40.001,31.604]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.662,52.727],[-50.002,52.494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.956,57.643],[7.884937,57.489125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.165969,43.406406],[9.299312,43.419438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.957,41.072],[18.081125,40.871]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.85,12.26],[-25.07,16.489]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.145797,41.031211],[12.844188,41.195719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.966812,55.530113],[14.818875,55.517125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-117.177,-7.228],[-115,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,30.903],[-30,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.892,34.784],[-6.826,35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.16417,37.260051],[25.049043,37.331059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.769625,53.588031],[6.635,53.582]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.819,48.701],[-4.960125,48.668156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.083,64.699],[-24.264,64.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.234,45.267],[140.475,45.842]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.037,30.635],[-77.1925,30.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.865656,42.697406],[6.2005,42.718]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.849,29.333],[-79.005,28.711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.38,36.659],[-123.4295,37.47575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.3755,57.552844],[8.545969,57.573281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.76275,49.82525],[-5.864688,49.751]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.055,44.086],[14.228418,43.868785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.2005,42.718],[6.356344,42.7935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.349,-7.263],[116.831,-6.279]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.58,42.439],[-160.414,41.74]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.905,56.534],[6.915062,56.724437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.83525,58.345438],[18.976562,58.336062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.5,49.6],[-50,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.16502,36.701812],[25.114,36.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.48,-10.264],[159.717,-10.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.206125,57.692437],[10.3705,57.725],[10.600605,57.788314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.418,-9.531],[-166.845,-10.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.396,26.7005],[-72.115,26.751]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.3,33.277],[17.44,33.877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.273562,38.956484],[25.098406,38.745773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.9235,71.2085],[22.613,71.009]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.938,55.745],[-134.573,55.696]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.039,55.181],[142.146,55.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.6905,58.6615],[9.762609,58.781531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.634,36.296],[35.604,36.4765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.892,43.921],[-1.708,43.79025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.508,37.804],[7.678,37.901]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-10],[-5.014,-15.1565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.222,58.91],[-3.104563,58.672461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.661,65.3125],[-13.52375,65.29675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.604,59.284],[19.555,59.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.194125,57.71575],[9.43,57.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.739,32.765],[31.179625,33.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.375125,39.399687],[25.598969,39.381262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.103,36.46825],[-4.26525,36.34475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.015,52.817],[-6.029234,52.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.0385,48.5115],[-125.501,48.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-12.896],[-11.324,-11.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,40],[-50,40.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.876,43.222],[15.890125,43.116125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.055375,31.709125],[30.638,32.641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.456187,36.115125],[14.567266,35.916988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-45,40.107],[-50,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.632,35.96],[26.76225,35.96925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.037641,43.936484],[14.105531,43.834094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.760094,54.309625],[11.799836,54.459984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.114,38.337],[13.301738,38.272168]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.181,31.584],[32.055375,31.709125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.05425,43.7815],[-8.3195,43.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.615,38.846],[12.253062,38.459375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.624,51.536],[1.786938,51.699687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.7,32.985],[29.591,33.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.802719,43.645828],[10.025413,43.585063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.6045,-9.0895],[116.2,-7.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.847,42.2555],[4.011,42.207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.181562,39.72475],[25.317922,39.711375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.5,37.4],[126.074,37.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.672,66.076062],[12.6445,66.2155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.0065,10.9975],[-57.9165,7.021]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.5329,42.734301],[9.692164,42.73807]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.7,-8],[125.57475,-7.0675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.36,0.939],[77.693,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.614,38.463],[7.5205,38.427]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.878,-33.129],[40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.7845,52.05225],[1.719156,52.181344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.939,36.22],[-72.585,36.321]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-10],[70,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.535,58.734],[-0.3,58.737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.359875,51.328875],[-5.43925,51.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.791,11.879],[-61.8895,12.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.099,39.249],[-12.7155,39.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.05525,37.15075],[3.06775,36.97475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.971,57.066],[10.363563,56.961953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.0455,35.273],[33.959,35.168]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.0965,42.00925],[-10.112,42.426]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.001,31.784],[-60,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.064,38.045],[8.518625,38.61025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.877,-2.675],[5.3,-2.907]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.6665,65.2155],[22.47275,65.02225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.001,41.408],[-129.882,41.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.032875,58.401687],[9.215,58.476],[9.32207,58.511648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.908625,42.902125],[15.93775,43.027563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.0865,35.628125],[-75.108,35.232]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.148,37.509],[0.09625,37.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.697,44.82],[-140.002,46.614]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.3405,-0.3245],[125.5,1.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.343875,38.580125],[15.451637,38.456365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-20],[-19.999,-27.923]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.774,29.838],[-85.499,29.499],[-83.432,28.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.703,37.724],[-10.604,37.794]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.14,57.671],[24.2245,57.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.144266,56.912734],[8.157656,56.805281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.167,35.406],[27.409,35.286]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.333,53.717],[-6.169062,53.733187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.429,11.4945],[119.9,14.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.395375,36.69575],[-4.231,36.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.891,29.085],[129.221,30.478]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.752,8.531],[121.614,10.006],[121.613,11.217]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.21775,58.104625],[-6.466,57.914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.334852,55.396055],[7.399141,55.309422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.517875,64.131812],[-22.661375,64.139125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.562,40.648],[2.423,40.50975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.200188,56.443719],[7.297406,56.292187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.5795,41.6295],[18.602,41.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.07675,57.820687],[10.922016,57.835414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.789,32.746],[-12.333,31.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.44,56.748],[-7.125063,56.87325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.7,14.6],[-83.31925,15.426],[-83.82275,16.004375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.818,55.0945],[3.594,54.421],[3.555,54.3115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.210094,56.756406],[11.32925,56.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.234,45.267],[140.328,45.723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,10],[-40,4.193]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.641375,58.169719],[5.793,58.008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.956125,57.266875],[19.094938,57.35625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.310875,36.852719],[24.194,37.033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.544531,54.906031],[7.491,54.685],[7.4675,54.562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.01625,41.074],[10.1795,41.0295],[10.4085,40.9605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.761,68.859],[16.697125,68.714438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.618375,49.669375],[-0.79625,49.7135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.461,27.338],[-76.019,26.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.664,37.778],[-71.91125,38.024687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.598375,42.457594],[15.40325,42.551813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.397,37.35],[6.589,37.359],[6.85,37.42575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.001,-26.396],[100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.02,37.959],[-67.844,37.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,0],[-115.441,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.851625,49.80375],[-2.988812,49.803875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.15725,49.684],[-6.8965,49.437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.357,51.803],[-7.014188,51.662188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.547,-30.083],[90,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.3185,61.60975],[20.3625,61.832125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.6875,58.7155],[-3.903,58.712]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.822,38.255],[6.717,38.243125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.23225,55.829],[11.254062,56.020437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.394,59.679],[24.193,59.714188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.669117,38.353867],[15.586125,38.55925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.262,17.292],[113.113,16.507]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.986687,49.76425],[-6.02425,49.933625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.049625,43.51475],[14.88932,43.614086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.560937,57.934938],[6.616,57.833],[6.682375,57.704125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,40],[-129.022,40.926]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.067,36.696],[23.274688,36.661625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.945,44.7175],[-5.955,45.106]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.604,61.583],[18.2825,61.564]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.7285,37.01075],[12.581445,37.077711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.653,-19.568],[3.543,-16.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.718,-20.503],[156.757,-22.434],[153.948,-24.552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.382,17.704],[-69.299,17.579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.181063,40.69975],[18.081125,40.871]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.526563,41.411],[9.311656,41.372172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.01,37.26],[2.9945,37.4105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.289531,41.935969],[8.1945,41.991875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.839344,42.003937],[16.722,41.8905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.635,43.4785],[38.191,43.781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.93,36.01],[15.499,36.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.7085,40.73375],[2.790875,40.621656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.081,61.929],[4.793625,62.00675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.292,25.842],[123.29,27.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.642477,55.288227],[12.961844,55.224438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.805,-54.174],[-35.021,-54.271]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,11.666],[-131.707,11.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.095148,57.475766],[16.84925,57.322375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.999,-22.627],[-164.255,-24.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.179,41.61225],[3.12175,41.51675]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-69.205,-54.411],[-70.105,-54.152],[-70.29,-53.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.34432,58.758523],[10.178562,58.801852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.124001,47.708755],[-5.129834,47.736476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.2565,37.712625],[15.346578,37.582609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.215,50],[-160,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.551312,54.743437],[19.25,54.702]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.469781,37.784891],[24.473277,37.622613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.608,57.6625],[17.793297,57.53475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.906,55.305],[-0.001,55.0165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.571,-23.234],[-175.805,-23.956],[-174.456,-24.723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.9925,45.628],[-125.104,44.634]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.358,66.137],[9.918,66.174]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.236023,37.288781],[24.397195,37.265648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.18275,55.4065],[17.181625,55.249875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.521,57.904],[-3.0805,58.149]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.105,40.028],[10.124,39.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.7845,52.05225],[1.9255,52.01575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.135,31.387],[128.9,31.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.099,39.249],[-11.907,41.014]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.947281,42.268563],[9.913125,42.126188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.1685,62.892125],[19.973,62.811]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.658,47.514],[-15.919,45.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.412,60.0335],[29.7385,59.99],[29.977,59.926],[30.20375,59.907375],[30.566,59.824],[30.707,59.782],[31.562,60.316],[32.562,60.607],[32.828,60.484],[33.142,60.609],[33.178,60.644],[33.702,60.763],[33.919,60.976],[34.619,60.963],[34.855,61.095],[35.697,61.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.627625,48.955375],[-6.501125,48.771313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.035,-25.999],[-72.8,-29.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.283234,43.576547],[15.114062,43.681008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.309,36.79125],[21.089813,36.655375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.207,39.906],[23.332625,39.917344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.027,42.99525],[17.178562,42.905812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.111,-45.404],[30,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.71,0.766],[172.789,0.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.353125,56.250375],[11.242563,56.1445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.092906,37.788031],[16.179,37.784],[16.327,37.75],[16.423875,37.7135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.2095,45.552375],[13.233531,45.409594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.438,55.55675],[7.497187,55.448062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.73,54.128],[141.95,54.878]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.95,54.878],[141.829,54.822],[141.73,54.128]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.927,-43.896],[-56.68,-43.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.109,54.643],[-4.088,54.742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.199,37.102],[122.183,37.816]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.157,58.306],[-2.08425,58.217]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.823,68.058],[15.708,68.265],[15.861313,68.311375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.781,54.9735],[13.934062,55.021375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.419602,53.471922],[0.436,53.1855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.432875,45.286875],[14.341164,45.222477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.437,38.983],[3.394,38.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.15,64.474],[22.2915,64.378]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.576812,56.035563],[15.413297,56.01575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.957,39.986],[0.87875,39.71975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.02525,38.69325],[11.029,38.876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.599,40.4425],[3.39,40.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.41625,43.609],[8.39725,43.766875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.45675,21.062],[-157.473,20.933]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.5765,36.101375],[-4.978875,35.972875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.746,40.514],[28.895,40.807]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.038125,55.41625],[-6.182,55.3605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.929938,38.868688],[-9.823531,38.982125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.051,50.202],[-6.007,50.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.005,62.582],[19.459,62.7485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.24525,52.104],[4.1335,52.053062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.226,57.4975],[-4.1015,57.56575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.058,66.745],[-21.159,66.737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-10],[-161.223,-8.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.83,39.656],[-9.889,39.529]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.32025,42.198],[7.475062,42.2835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.880016,54.607469],[7.959781,54.419438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.208,49.73],[157.594,50.157]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.203,14.967],[-151.961,13.589]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.669,38.9545],[14.17375,39.212375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[148.412,-13.866],[150,-12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.73,-44.177],[-90,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.143,25.8],[-84.277,25.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.521,57.205],[-1.67475,57.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.70875,65.088],[-23.75,65.1835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.715641,50.09257],[-4.8205,49.9535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.764,40.314],[4.583875,39.728437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.167375,59.504625],[20.184,59.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.999,-51.107],[-79.998,-52.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.888,-45.403],[-130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.488,-6.19],[129.831,-5.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.057719,36.526059],[26.900813,36.420781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.87025,39.95175],[-10.88425,40.489875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.806719,57.722094],[10.771045,57.590462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.38425,59.75125],[20.398,59.557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.297,66.326],[-21.258,66.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.495,69.281],[14.126,69.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.759313,41.905906],[11.590312,41.846594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.2,63.6],[-60.223,66.866]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.976562,58.336062],[19.208,58.188],[19.348,58.1305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.875125,39.163875],[19.699125,39.180375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[96.207,-24.021],[100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.484063,55.252078],[-5.833563,55.30441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.284562,43.64225],[9.12875,43.70425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.221594,43.099391],[16.312141,42.964672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[102.09,9.03],[102.606,7.812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.654,61.773375],[19.72275,61.8975],[19.874,62.21],[19.887,62.237],[20.018937,62.395094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.921,34.708],[-8.997,35.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.168,35.381],[-8.141,34.749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.563375,36.461875],[13.799125,36.461125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.895,40.88],[17.90025,40.867087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.7325,60.902],[18.896313,60.581609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.048813,41.719125],[10.826625,41.830687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.961563,42.430875],[-9.110813,42.446813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.352,42.5495],[5.436687,42.380688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.631,-33.663],[-19.998,-33.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.783,8.614],[-88.188,9.091]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-20],[-99.999,-16.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.968,35.911],[22.749125,36.0505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.793297,57.53475],[17.626312,57.555813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.1965,36.3785],[-1.943,36.424],[-1.753,36.453],[-1.5805,36.4615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.417,40.093],[10.6235,40.48025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.67225,46.22275],[-1.753,46.373],[-1.794,46.465625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.349,30.05],[130.9,31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.046,59.2725],[22.975,59.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.807994,55.276076],[9.748,55.394],[9.677437,55.485312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.635,54.501],[0.822,54.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.109,28.185],[-88.696,28.133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.70575,59.367],[23.411,59.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.141,54.491],[-4.109,54.643]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.93,60.539312],[4.742,60.378]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.666,-35.073],[-29.998,-35.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.121855,37.413418],[23.966328,37.293547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.96525,38.81575],[12.86075,38.8845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.837977,55.960992],[11.684,56.024]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.2085,37.511],[21.166,37.689]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.019,-10.022],[-30,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.983,35.909],[-8.923,35.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.428766,50.403988],[0.5575,50.519937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.3515,53.68225],[-10.5,54.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.522313,43.238125],[14.78,43.083625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.887,61.06],[-3.737,61.086],[-3.686,61.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.8965,49.437],[-6.821,49.522]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.557086,54.990539],[15.634375,55.140125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.961,0],[-21.781,-1.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.468,41.715],[-160.001,41.749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.6795,39.3255],[1.4685,39.2315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.235,37.881],[-71.573,37.681]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17,70],[17.261,70.047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.1,55.5],[-6.57075,55.83475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.5575,44.1655],[-2.796,43.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.429,59.173],[2.592,59.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.8455,36.176],[34.0385,36.08175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.43,43.148],[8.376188,43.007688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.011,5.368],[127.586,2.888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85.735,15.792],[87.08,14.742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.589,58.785],[4.591,58.836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.466,63.062],[6.3,63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,50],[-64.475,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.5255,36.249],[23.580719,36.035313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.109625,51.73475],[2.998203,51.880914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.54825,44.178188],[14.386258,43.984094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.77275,38.6635],[20.73975,38.77275],[20.671937,38.898688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.042,58.152],[-134.702,57.448]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.1625,40.289],[-11.236,40.079]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.619,25.605],[-60.001,24.914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.713,36.11],[-12.501,36.132]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.002,34.927],[-129.252,35.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.760687,42.635062],[10.624219,42.749781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.685,-25.924],[-124.756,-25.508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.61325,56.10125],[3.836,56.164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.747,20.045],[133.212,16.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.712,28.524],[-73.251,28.013]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.050688,35.612562],[24.132859,35.702266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.212,58.238],[1.029,58.034],[0.443,57.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,-15.17],[-130,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.6975,57.72375],[20.827063,57.636688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.459,56.244],[3.531,56.102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.066,51.081],[-4.275859,51.113109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.001,25.932],[-30,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.193812,43.917844],[9.338219,44.012188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.065406,37.367156],[25.942545,37.437957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.795,28.122],[-87.734,27.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.971,13.668],[-77.81,11.456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.274,51.601],[3.193,51.666]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.979,-24.218],[160.864,-25.237],[160.001,-25.478]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.011938,37.647875],[26.093688,37.843187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.16025,58.0615],[8.043797,58.089]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.035875,60.996938],[19.86875,60.96175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.567,55.55],[3.3,54.975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.5615,49.789],[-7.25675,49.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.365,43.295],[37.817,42.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.304,-39.286],[146.433,-39.167]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.721,42.552],[-158.468,41.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.231156,54.456891],[8.122,54.4145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.096,11.253],[-161.561,10.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.119563,58.295437],[11.066281,58.405984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.2425,34.1605],[28.344,34.118]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.06625,42.97975],[14.334,43.036]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.389906,42.697969],[8.3285,42.898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.5045,60.4425],[28.638,60.34425],[28.74775,60.29725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.775,57.51],[-11.893,58.392375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.511,36.379],[-0.414,36.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.4,-10.003],[159.429,-10.1435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.478,23.465],[-73.677,21.5465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.513,39.7925],[0.3565,39.8545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.344,60.915],[-1.411,60.692]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.334,25.077],[-77.512,25.119],[-77.53,25.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.09,64.67],[35.16,64.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95,-25.277],[-97.854,-22.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.864,58.245],[10.014125,58.300438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.671484,54.520078],[11.633813,54.423781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.55675,36.341625],[27.70075,36.381625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.792,52.314],[-149.78,52.446]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.618,65.832],[-19.801,66.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.567266,35.916988],[14.708187,35.97225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.979,-8.278],[50.0055,-9.99425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.1765,40.811],[28.328,40.816],[28.4895,40.8185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.214,48.8],[164.183,44.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.727,60.828],[0.869,61.062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.875875,36.610687],[23.757844,36.720125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.884,50.047],[-54.102,52.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.913,9.798],[115.045,13.361]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.136,36.117],[-70.06075,36.046]]}},{"type":"Feature","properties":{"pass":"malacca"},"geometry":{"type":"LineString","coordinates":[[103.554,1.355],[103.6,1.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.089,40.331],[-9.1845,40.39125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.9805,26.373],[54.463,25.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.188469,38.487539],[26.181758,38.338969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.96175,41.76125],[-8.971,41.90175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.12,29.492],[-88.961,29.4405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.130758,56.077344],[11.454937,56.3865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.3195,43.755],[-8.221,43.8965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.189,42],[-70.339,42.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.593,-40.271],[-180,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.346,23.12],[-82.345,23.143],[-82.478,23.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.5,-30.5],[-47.9,-27.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.977625,55.325375],[15.153191,55.347656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.064625,59.397875],[22.788625,59.436875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.029,54.344],[5.003969,54.116563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.097,35.017],[32.242,35.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,0],[94,6.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.645,41.235],[18.69225,40.666]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.498,61.82],[19.552312,61.616937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.995477,36.805496],[25.919828,36.942359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[81.759,12.632],[81.232,11.931]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.642,58.82],[-5.2,58.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.598,-10.018],[68.731,-8.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.001,50.94],[-20.002,52.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.410563,39.767125],[19.298563,39.814875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.508016,44.656375],[12.551375,44.844875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.980187,39.279164],[22.89525,39.2125],[22.919,39.176],[22.994,39.125],[23.104813,39.053531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.468247,55.665064],[10.469214,55.665447]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.414875,50.408125],[-2.5345,50.453625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.043797,58.089],[8.090375,57.911875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.172,35.80525],[23.288,35.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.348,-5.404],[98.87,-8.892]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.148688,57.831875],[20.129,57.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.028,50.099875],[-6.02425,49.933625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.459,64.858],[9.941,64.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.401,2.023],[-48,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.46925,60.756625],[19.587,60.694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.34425,37.84675],[-33.977,36.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.197,39.54275],[0.178937,39.403063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.236,-1.332],[129.091,-1.918],[131.4,-3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.802719,43.645828],[9.661094,43.761875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.541125,56.63725],[7.742406,56.692188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.5295,52.681],[4.424094,52.6015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.945469,59.560281],[4.8015,59.343]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-172.75,60.5],[-168.853,60.50725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.017,64.8055],[-23.64,64.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.061625,57.933375],[9.012906,57.797512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.056984,39.46143],[26.085125,39.75025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.008,16.877],[-25.01,16.929],[-24.8185,16.9815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.868531,51.478],[-2.726656,51.531188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.356,47.132],[151.803,46.105],[146,43.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.899,-5.251],[-81.279,-5.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.191,42.524],[5.819,42.257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.252,49.719],[-1.444,49.724],[-1.577047,49.711531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.027812,36.308605],[27.153734,36.263531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,17.058],[-169.529,16.737],[-168,17],[-167.208,17.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.80625,43.211125],[14.655,43.319375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.037,42.891],[8.220344,43.037781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.534906,59.770281],[5.6505,59.70675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.1085,52.0605],[-6.24875,51.86125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.803,-11.273],[153.841,-10.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.836469,35.917547],[-6.346,35.571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.008,35.948563],[14.567266,35.916988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.27,16.405],[-160.765,17.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.188,10.681],[93.3,14.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.21,36.323],[-8.205,36.217]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.2915,64.378],[22.13,64.176]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.196375,60.391813],[5.036,60.441],[4.93,60.539312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.616375,36.217125],[27.450672,36.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.7,13.4],[124.687,19.241]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.632375,43.698],[13.882094,43.651031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.444,27.585],[-67.126,27.642]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.045937,53.884125],[-5.9745,53.991375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.275859,51.113109],[-4.57,51.106]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.051,50.198],[-0.023,50.301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.539438,56.547812],[-5.770117,56.513672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.424,50.5835],[-6.424,50.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.901047,36.726672],[23.888502,36.95017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.998,27.486],[-66.879,22.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-10],[-12.528,-10.019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.619375,43.390875],[28.755,43.5955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.36775,35.442875],[25.557625,35.496]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.0185,56.57525],[17.1485,56.8475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.742406,56.692188],[7.868266,56.714313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.557,-16.494],[162.873,-17.268]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.511969,42.932844],[16.590281,42.749016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.863,41.456],[2.637,41.389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.051451,37.548637],[24.121855,37.413418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.566531,58.892156],[10.689438,58.726094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.952,36.2245],[28.716,36.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.876875,41.803938],[9.747133,41.83657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.276992,59.333898],[23.509125,59.37325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,20],[141.469,18.039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.443984,37.825055],[23.596937,37.815609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.382375,40.479094],[25.288,40.394]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.986,49.3995],[-1.993,49.5345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.011,41.602594],[11.8425,41.6065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.43,29.926],[131.095,29.136],[129.292,26.467]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.435,66.311],[-23.209063,66.200938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.363,40.96],[-9.824,40.877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.372,32.409],[19.293,31.228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.33075,42.59075],[4.79375,42.942125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.396195,36.376578],[25.287625,36.376078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.342375,58.375],[18.317,58.217]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.366,57.581],[-1.18325,57.69425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.738125,58.169813],[9.012,58.195375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.649,60.112],[20.4855,60.1135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.252,20.664],[-104.7,18.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.88475,21.62225],[-73.677,21.5465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,5.057],[-140,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.604,31.905],[-15.6415,29.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.359312,51.334812],[2.135187,51.086938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.126,40.293],[3.551,39.919]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.126625,59.117875],[5.292625,59.019719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.36425,66.2045],[-15.7225,66.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.682,65.794],[-14.544,65.808]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.933,56.074],[-2.822,56.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.007375,11.029125],[-24.595,4.649]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13,65.262],[-13,65.384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.937,50.5525],[-5.1725,50.673]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.05325,37.9965],[-9.121,37.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,0],[70,-5.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.30575,37.711],[10.959688,37.590812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.088625,54.5905],[12.156445,54.451172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.676313,35.7485],[23.73175,35.95725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.12775,57.97225],[-1.9885,58.0805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.71725,59.737344],[19.867,59.754]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.3185,36.11475],[22.239594,36.204906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.727406,55.614375],[19.55325,55.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.030938,39.152375],[1.6795,39.3255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.507,-3.464],[-30,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.622062,37.143313],[24.573383,37.237562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.945,55.789],[10.953946,55.845714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.5,54.4],[-14.038,56.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.811,75.163],[-65.772,74.652]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.1145,43.561125],[9.165969,43.406406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.990547,54.009406],[7.891109,53.926875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.846,71.023],[23.625859,70.679859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.915625,38.16525],[22.808687,38.070687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.656,36.934],[-1.831,36.740313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.8465,58.1685],[17.948438,57.816688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.142937,41.267531],[2.271555,41.142922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.802,52.02325],[-5.825875,52.152125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.867,39.077],[-9.823531,38.982125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.6915,65.0555],[21.6555,64.874125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.746152,55.300796],[14.578789,55.280547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.78125,52.2725],[-5.972016,52.231766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.504625,57.129],[20.436,57.2265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.525,66.13],[-23.709437,66.141781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.89,-45.405],[-99.98125,-39.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.127,-26.341],[-97.854,-22.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.93675,59.990781],[25.1145,59.968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.853,-26.052],[-43.394,-26.942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12,66],[10.459,64.858]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[101.363,3.008],[101.149,2.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.22775,58.01625],[10.368547,58.168937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.708,43.79025],[-1.92,43.675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.396,-4.615],[-140,-1.577]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.166,37.689],[21.013375,37.744625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.618,35.824],[33.8,35.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.322,34.47],[29.12075,34.4865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.822813,44.277563],[14.710062,44.33625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.066,54.468],[-165.362,54.4985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.861,38.028188],[21.062961,37.843938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.635,-5.135],[155.8,-5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6825,42.884],[6.614,42.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.72682,48.568773],[-5.693188,48.387812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.10675,39.0245],[14.9535,39.087125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.429,19.825],[123.243,20.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.850938,58.455938],[10.014125,58.300438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.12575,54.61325],[15.883,54.556]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.151,42.934],[-10.156,42.8315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.73725,35.47775],[-7.892,34.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.979063,42.141562],[-8.971,41.90175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.5355,37.587625],[-0.42275,38.1165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.985812,57.13725],[-1.72775,57.23575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.397609,57.386562],[20.5295,57.278125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.623,50.752],[-168.081,51.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.866,39.541],[-30.641,39.408]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.831,35.7905],[-74.777,35.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.729812,53.586063],[0.847625,53.496813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.850375,44.7345],[13.674945,44.780828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.9205,32.834],[28.57,33.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.856625,50.363937],[-5.917,50.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.05525,37.15075],[3.6605,37.1105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-30],[95,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.618,20.8825],[-72.648,20.543],[-72.013,20.298]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.8185,47.0625],[39.043,47.104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.992875,36.197375],[25.041844,36.399219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.617289,36.726492],[25.508516,36.843312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.783,38.66],[7.944,38.66575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.431,47.279],[-58.604,47.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.822,56.085],[-2.155,55.965],[-2.0355,55.905625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.037688,10.012625],[70,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.072,55.571188],[16.011,55.475437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.398,38.887],[10.192875,38.882375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.296,34.4775],[11.25,34.3875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.225,25.348],[-18.669,24.724]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.214,-21.126],[-175.218,-20.949]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.300688,50.459562],[-6.1615,50.3045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.499625,55.4135],[18.4745,55.591]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.339,35.812],[26.31625,35.927125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.97125,40.524],[24.415844,40.292906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.6055,49.846],[-1.728145,49.875125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.473,20.933],[-157.108,20.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.879,22.21],[-66.473,19.9995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.18,33.043],[123.007,33.372]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.588,53.178],[5.776,53.193],[6.039,53.109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.0255,36.3725],[16.499,36.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.524188,55.865313],[7.497187,55.448062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.714641,54.660719],[10.61232,54.719742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,-5.057],[-119.2,-0.811]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.4535,50.0465],[-4.576187,50.032406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.56,42.726],[-9.5,43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.273,36.750625],[-8.221,36.57025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.895656,56.986219],[11.901625,57.223375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.573383,37.237562],[24.732742,37.148824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.82925,37.291375],[11.668,37.28875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.643953,54.449359],[8.514719,54.380844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.972,60.424],[19.874875,60.618875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[71.8235,-5.315],[72.792,-4.237]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.726,69.135],[17.131,68.952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.06,46.606],[-52.858,46.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.337,41.1],[2.038,41.22]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.878,2.918],[-44.441,4.494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.474734,41.922687],[16.611359,41.91252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.1,34.395],[135.201,34.6365],[135.1,34.608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.049,36.4915],[14.235687,36.193938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.734,27.908],[-87.634,27.559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.329,34.065],[-13.83,33.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.594,25.549],[127.326,25.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.132859,35.702266],[24.354469,35.785625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.692,33.729],[-8.7545,33.6495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.4655,53.029938],[3.335125,52.962187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.365,55.809],[17.29425,55.553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.686719,55.634297],[12.59025,55.510937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.9235,71.2085],[23.2575,71.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.199516,50.392453],[-1.258125,50.281281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.469,15.614],[41.64,14.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.203125,56.705],[12.022469,56.730469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.368,43.995],[-9.587,43.542]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.84575,35.60475],[17.386,35.691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.938125,43.935781],[9.099016,43.969094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.676,49.827437],[-8.534,49.9535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.316,55.3625],[17.4365,55.290625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.465,-36.802],[-175.307,-35.102],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.3045,29.107],[48.718,28.606]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.073,34.215],[35.09,34.111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.197,41.251],[-73.617,40.968],[-74.0385,40.66225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,20],[-124.427,24.693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.796,42.534],[6.679172,42.509359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,-60],[-49.998,-52.433]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.154062,56.9635],[19.035625,56.98875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.248,44.301],[-7.671,45.218]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.9595,35.5965],[34.843,35.642]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.97,35.77],[25.983578,35.662859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.399141,55.309422],[7.3675,54.854]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.7305,64.671],[23.242,64.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.885687,37.6785],[11.536,37.596]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.654,59.814],[-92.926,60.649]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178.5,28.5],[-173.206,26.972]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.419773,56.585188],[11.454937,56.3865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.252,53.177],[3.371625,53.150438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.34925,36.871625],[13.0465,36.943]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.56275,58.10175],[19.68,58.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.524,35.949],[-0.6,36.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.911703,37.915875],[-9.0125,37.635],[-9.10275,37.405875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77,-13.7],[-71,-18.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.002,43.84],[-131.785,42.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.3005,38.593],[-28.32,38.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.945469,59.560281],[4.787,59.638]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.762875,37.4125],[-0.615,37.520812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.709,-3.334],[67.449,-2.587]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.510375,41.390375],[2.414,41.304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.443,43.168],[16.411613,43.265967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.342,35.594],[-123.259,37.172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.497859,54.259535],[8.401,54.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.268,32.3085],[-74.226,31.282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.744,56.785],[2.4275,56.9035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.0865,35.628125],[-74.917,35.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.251,63.89],[-167.313,63.932]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.27425,56.293],[-7.4955,55.4355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.497687,38.230871],[25.623,38.347375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.234,12.54],[-69.5635,12.738]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.599719,36.778969],[26.43825,36.750375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.993453,45.124258],[12.885,45.149]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.807625,54.413125],[15.394375,54.535219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.988,56.018125],[21.048625,55.733375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.592,30.034],[-71.59975,30.13275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.193,59.714188],[24.011,59.702],[23.901535,59.690625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.1375,-21.518],[114.5,-20.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.055375,31.709125],[31.6185,31.8515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.254,20.27],[-30,20.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.1,60.51],[-6.087,60.343],[-5.752,60.12],[-6.194,59.585],[-6.039,58.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.736,53.808],[-37.116,53.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.894,45.215],[-3.225,45.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145,5.057],[140.722,9.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.01975,19.973625],[-61.719,17.466],[-62.026,17.298]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.2,-6.7],[155.8,-5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.416125,42.770187],[15.554156,42.821313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.991062,39.215125],[15.144687,39.117297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.156445,54.451172],[12.34675,54.536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.188,10.681],[92.978,10.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.519,46.0415],[-3.64,46.202]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.505,34.7635],[23.764,34.7415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.793,58.008],[5.914188,58.028562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.971,36.14],[19.568,36.2085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.455,44.503],[-62.973,44.613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.071984,38.668828],[26.014,38.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.947,57.673],[-87.383,58.611]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.616375,36.217125],[27.55675,36.341625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,50],[-153.215,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.462,37.828],[11.30575,37.711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.484,46.1495],[-2.484,45.966]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.113,20.054],[144.273,24.529]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.7,24.3],[-82.478,23.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.253219,51.73225],[-8.059,51.7605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.869,34.499],[-57.79325,32.43325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.653526,57.429626],[10.771045,57.590462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.494,42.734],[7.605,42.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.6695,36.949],[-8.556375,36.747]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.2785,36.326],[-7.378031,36.212187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.882094,43.651031],[13.795063,43.735625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.47,58.224375],[17.344,58.00775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.369,-34.597],[-58.279,-34.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.452,53.817],[1.654,53.7245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.214438,52.812],[0.148,52.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.665,40.72475],[3.47,40.544]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.00175,29.074],[-70,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.524,64.903],[-13.573,64.761]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.930844,59.65625],[19.725062,59.536187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.724125,58.5305],[20.913875,58.669]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.33075,42.59075],[4.011,42.207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.874625,57.731375],[17.956422,57.596609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.57,46.24],[-7.5025,47.67775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.727,38.027],[16.862,38.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.497625,42.175156],[15.390937,42.396812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.774,34.595],[-30.002,34.309]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.014188,51.662188],[-6.908,51.659],[-6.6915,51.6215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.22,9.942],[-81.153,9.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,25.7],[120.292,25.842]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.444,27.585],[-68.17,28.271]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.27325,36.578],[14.31425,36.45525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.6385,46.0665],[-4.82975,46.003875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.851,34.434],[27.723,34.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.075,34.488],[27.978,34.678]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.979,58.1875],[6.127625,57.972062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.504,28.339],[-87.322,29.248]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.221,-32.404],[131.157,-32.824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.57375,48.27575],[-6.568,48.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.604,36.4765],[36.002,36.891],[36.064,36.751]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.082,69.233],[14.895,69.158]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.472125,39.507562],[25.673664,39.548664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.819,48.314],[-5.693188,48.387812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.478,50.438],[-12.853,50.323],[-15.167,50.407]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.125125,50.642031],[1.225828,50.785375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.508016,44.656375],[12.675125,44.706625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.84,34.1815],[-73.835,35.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.470625,57.233125],[7.484187,57.39625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.184,-24.477],[106.726,-26.876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.513063,35.925687],[25.41275,36.003187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.367,63.727],[-15.655,63.476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.699875,38.2665],[24.564,38.366],[24.525875,38.461062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.5235,50.0915],[-5.393,50.042],[-5.362,50.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.08275,59.633],[25.002813,59.812562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.99,10.663],[-99.96,12.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.478,53.647],[6.635,53.582]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.201,43.211812],[16.411613,43.265967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.4085,40.9605],[10.318,41.162]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.127031,57.969063],[11.045219,58.080312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.20425,58.680586],[18.31,58.551],[18.457,58.47375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.3965,42.89325],[17.178562,42.905812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.045,36.89],[12.14775,36.9025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.905,35.94],[31.381,35.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.641,28.936],[-76.344,28.516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.750969,43.460469],[9.877375,43.491312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178.5,28.5],[-177.48,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.723,36.961],[-10.34275,36.946375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.853,53.85],[4.796552,53.753253]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.3185,61.60975],[20.0925,61.4205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.492,65.671],[-21.226,65.784],[-21.234,65.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.731,46.053],[30.555,45.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.094313,35.236625],[26.298,35.327],[26.405719,35.342953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.038,41.262],[5.57375,41.32575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.886,56.762438],[11.753,56.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.688125,58.72825],[-2.588156,58.875719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.605,42.748],[7.8415,42.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.309,-16.09],[141.2,-13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.756689,38.228457],[12.860656,38.392594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.8465,58.1685],[17.593469,58.146406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.765,54.8335],[-0.706625,54.952625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.1305,48.4495],[-6.175438,48.301625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.8725,35.468],[-13.131,35.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.66275,57.729375],[8.645,57.60275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.486,2.063],[-40.951,1.733]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.088,36.201],[-14.604,37.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.334,51.313],[-10.1755,51.3055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.519938,56.819563],[7.541125,56.63725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.39,60.376],[-165.225,59.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.565151,55.007522],[14.666,54.888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.33,54.3],[-130.668,53.744]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.509375,49.419125],[-2.383,49.47075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.804125,35.962438],[25.85875,35.7305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.126734,55.214766],[11.022891,55.124469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.07125,38.418],[11.92775,38.517]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.117,40.045],[-130,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.1695,39.012],[24.329437,38.774031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.895,21.968],[-74.702,21.902]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.861,30.269],[-73.856,31.169]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.144164,50.056672],[-3.869531,50.101469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.620094,66.146922],[-18.532,66.207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.653,52.24],[6.807,52.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.625422,36.369031],[25.5275,36.177875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.18,38.019],[-0.412875,37.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,2.733],[-30,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.342,33.042],[135.0695,33.191]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.638,62.636],[20.018937,62.395094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.0015,69.006625],[14.895,69.158]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-30],[-100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.778625,61.193875],[21.046391,61.372875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.026,41.298],[6.2785,41.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.355,42.921],[3.605375,42.797031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.625,-35.562],[135.522,-35.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.64,64.588],[178.378,64.51],[178.897,64.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.584687,60.111828],[18.709938,60.229375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,30],[-180,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.01575,55.429375],[6.996,55.314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.129,48.856],[-6.136,48.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.3385,37.811],[10.347812,37.55925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,30],[174.695,35.104],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.661,31.313],[124.534,32.308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.821125,36.556516],[14.920156,36.622395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.286406,50.68193],[1.125125,50.642031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.494,37.254],[20.383469,37.928031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.031,57.918],[19.168438,57.759125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.831051,37.19384],[23.707875,37.04275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.677,21.5465],[-73.495,21.479]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.199188,39.952063],[24.097687,39.923344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.937,58.069],[-0.7585,58.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.926625,51.317281],[-5.999016,51.063203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.678,-25.775],[-43.394,-26.942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.746,45.701],[143.09,45.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.465,25.096],[-84.016,25.668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.483469,55.693687],[15.267492,55.642883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.38,65.702],[40.644,66.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.0565,39.6085],[15.008719,39.350563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.472,40.444],[0.6315,40.3185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.33075,42.59075],[4.511,42.528]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.427,-23.882],[153.682,-24.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.9,37.7],[-123.761,37.9595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.08,37.4945],[25.942545,37.437957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.630957,43.241266],[16.698,43.168],[16.708,43.183],[16.630957,43.241266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.6,-5.2],[153.635,-5.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.517,53.342],[-33.785,52.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.763312,39.652125],[25.782812,39.842437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.149,37.094],[-9.5865,36.87825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.218484,54.489812],[10.178896,54.620967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.60025,55.279375],[18.2085,55.3965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.999,22.421],[158.482,21.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.653516,44.614742],[13.413,44.412]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.578125,15.48],[-91.888,11.354]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,40],[-59.44725,39.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.511,33.635],[27.569,33.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.9585,56.3915],[3.836,56.164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.818,38.823],[-135.767,38.272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.968,35.911],[22.826,35.952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.193,21.443],[-158.704,21.792],[-159.256,21.827]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.515813,57.624594],[21.615713,57.655652]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.575125,57.16825],[18.745,57.183]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-60],[-39.997,-53.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.194125,57.71575],[9.116375,57.51025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.338,47.058],[-165.623,50.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.093,41.885],[-9.1075,41.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.2715,39.203],[0.3555,39.03725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.569039,45.08082],[13.447656,44.963156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.78875,41.56925],[17.646,41.43525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.507,30.899],[-67.401,30.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.682,35.926],[12.858937,35.888188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.749,59.573],[26.585,59.668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.766,35.307],[139.57,35.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.641,64.96575],[-13.524,64.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.877,43.939],[-133.522,43.754]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.13575,49.6995],[-2.988812,49.803875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.143,56.934],[2.4275,56.9035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.287,34.77],[-72.374,34.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.034406,53.331937],[6.926375,53.418125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.371,-11.979],[43,-12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.582625,50.663031],[-1.248141,50.527687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.2185,40.756],[28.934125,40.948875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.8545,56.655],[11.732125,56.57975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.16,49.831],[-20,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.8395,36.3455],[-74.428,35.997]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.969508,55.613234],[16.120004,55.848078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.949969,54.823281],[10.126158,54.943963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.71025,58.8615],[4.802,58.7745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-18],[53.355,-15.396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.223375,52.521],[4.06075,52.44525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.953,33.601],[-74.8595,32.6085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.085346,6.615288],[82.041787,6.447352],[81.997631,6.277372],[81.964417,6.149312],[81.9,5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.504125,38.08125],[25.497687,38.230871]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.673344,52.042],[3.33,52.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.38425,59.75125],[20.504,59.715],[20.891,59.636]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.548,38.391],[11.03875,38.08375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.209514,55.058687],[10.126158,54.943963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.794,44.961],[29.982,45.18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.442,55.811844],[16.356938,55.977063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.235062,36.074],[24.108844,36.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.423,-3.254],[7.602,-9.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-179.2,64.9],[-172.3,64.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.040229,37.114312],[24.310875,36.852719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.988812,49.803875],[-2.96,49.5905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.2005,40.8345],[25.32,40.807]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-21.343],[-10,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.676605,36.988188],[13.679688,36.879063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.382094,42.727938],[16.393,42.562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.311891,59.01743],[10.456422,59.020891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.67975,35.640094],[24.852359,35.743156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.821906,56.774562],[6.974172,56.831703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.02175,60.7085],[19.16,60.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.6655,36.72],[-10.34275,36.946375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.40425,51.55325],[3.25225,51.48425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.791,65.202],[23.93175,65.16575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.847,-3.189],[-90,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.285,31.398],[-40.574,30.624]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.14,55.601],[17.741,55.561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.507,-25.394],[113,-23.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.874,31.198],[29.889,31.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.754,39.773],[-140,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.499,36.38],[16.3995,36.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.058477,36.863164],[27.0595,36.9845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.7,46.8],[-52.858,46.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,60],[-40.002,57.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.744688,48.002531],[-5.8175,47.8135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.336875,55.2255],[16.46375,55.110625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.644,60.218],[20.722437,60.304438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.212,16.934],[134.123,16.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.56425,50.085125],[-1.6285,49.975844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.452187,38.042813],[12.375688,37.894719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-30],[100,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.45175,58.21875],[20.366437,58.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.371,40.548],[1.234,40.484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.38,41.95],[5.485,41.662]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.517,57.947],[-12.4095,58.37075],[-11.893,58.392375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.108,35.232],[-74.953,33.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.847875,64.741625],[24.10975,64.69225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.097,34.949],[129.231,34.976]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.241125,47.234375],[-2.083,47.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.887352,43.367371],[14.75225,43.4335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.924937,40.236312],[12.118375,40.144375],[12.288656,40.061469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.267,25.591],[34.553,26.902]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.45,57.0095],[17.111125,56.458375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.963375,56.103875],[16.8245,56.060688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.7245,70.6305],[20.897875,70.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.055,-10.007],[-170,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.886,28.224],[-92.5375,27.85875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.249,-35.185],[-49.915,-38.484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.802,19.144],[-66.215812,18.676063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.923063,57.919531],[5.991,57.523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.031625,44.250141],[9.148656,44.284717]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.8315,56.649],[12.48975,56.506125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.478,12.524],[110.807,11.264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.74175,50.073625],[-3.8155,49.99325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.331537,37.454645],[15.346578,37.582609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.333215,53.965777],[-3.5025,53.88275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.839,35.4985],[34.883,35.392]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.912,40.54],[3.0765,40.52625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.724063,57.16375],[10.8225,57.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.082531,57.355969],[21.20325,57.5165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.373,61.046],[-63.186,61.391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.613,47.446],[-6.725719,47.313563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.839849,41.034209],[11.73825,41.006188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.021656,36.719547],[-7.176,36.713]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.082625,36.22475],[22.4465,36.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.6695,30.48],[-67.507,30.899]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.25,54.702],[19.210625,54.798625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.257,11.83],[-35,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.508016,44.656375],[12.595,44.578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.831051,37.19384],[23.73993,37.28957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.213,36.8015],[-11.071,36.999]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.735563,34.47975],[31.001,33.951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.954,49.745],[-4.990125,49.567187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.989,37.417],[-24.985,37.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.801,64.414],[21.631219,64.601719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.001,48.263],[-50,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.470094,53.916625],[3.265,53.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.23675,56.376],[5.244,56.177]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.632,-35.036],[-23.139,-33.412]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.343,54.4975],[7.216188,54.630812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.304,-32.485],[-47.055,-32.408]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.781844,42.169281],[9.85175,42.294]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-30],[-150,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.6245,64.96375],[23.847875,64.741625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.292,26.467],[129.036,26.089]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.9385,36.22],[-9.056,36.4805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.5855,57.081938],[19.65,57.1585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.512,54.365],[5.431594,54.11825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.894,-22.368],[5.653,-19.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.705188,59.993406],[19.76575,59.85875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.675125,44.706625],[12.655,44.909]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.7265,20.92325],[-73.837688,19.982813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.674672,56.071289],[16.8245,56.060688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8,0.386],[8,3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6295,54.114],[5.793625,54.122]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.623,43.1415],[5.490508,43.093109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.973,36.005],[20.597,35.782]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.722,68.908],[17.4815,68.8795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.113,10.776],[-80.06,10.301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.562125,57.032],[18.603562,56.827281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.581,13.434],[-16.562,13.456],[-16.76,13.53],[-17.531,13.177]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.52225,38.9125],[7.78,38.836],[7.89425,38.8455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.404,37.81],[-122.397,37.83],[-122.643,37.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.643836,37.532453],[25.532438,37.443875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.69175,69.6205],[16.709,69.949]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.261,45.701],[-3.5345,45.538]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.597109,55.773531],[-1.466039,55.658266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.112,24.627],[-81.521,25.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.925219,54.655281],[18.788375,54.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.436,59.321],[13.426,59.321],[13.655,59.304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.080562,55.967969],[16.120004,55.848078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.381625,49.071687],[-4.301,49.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.094,42.8075],[17.299922,42.778953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.38875,60.717125],[17.228,60.693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.85675,55.689875],[19.727406,55.614375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.359,53.11625],[0.436,53.1855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.798391,36.547055],[24.655781,36.495344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.107,35.95],[23.277719,36.044219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.752187,48.922906],[-5.706176,48.730629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.513219,58.767844],[9.429016,58.589813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.999,44.252],[-8.857,44.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.2855,60.514],[18.21,60.407],[18.3605,60.3895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.121,59.6275],[19.040625,59.444125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.861937,38.459312],[15.766156,38.505625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,0],[-155,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.098,39.679],[-30,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.024,-25.299],[0,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.3545,36.1685],[27.31343,36.005234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.298547,39.434359],[14.347,39.302],[14.611937,39.130188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.543,12.755],[-135.84,14.317]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.926813,38.3505],[13.928,38.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.51575,49.1745],[-5.380375,49.082875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.836469,35.917547],[-6.218,35.8535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.612,-24.889],[-29.999,-25.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.869148,42.83407],[9.692164,42.73807]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.601182,53.622092],[6.509594,53.730672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.10375,40.953],[8.399,41.044125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.5495,42.757],[14.50525,42.98875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,50],[-153.455,48.951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.8175,51.854875],[-8.059,51.7605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.99,43.194],[-30.003,44.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-50],[100,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.31725,39.29175],[25.1865,39.36075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.643,58.368],[-166.588,57.605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,20],[-145.4,15.565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.72975,53.804],[-5.839023,53.641422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.14875,61.68325],[18.1655,61.254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-50],[170,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.873,-17.268],[163.7,-19.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.432738,36.097727],[23.580719,36.035313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.2255,37.161],[25.16417,37.260051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.002375,36.179625],[12.858937,35.888188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.742,-20.038],[80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14,65.9755],[-13.73,65.6335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.375,40.312],[25.465375,40.399875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.479,-34.886],[136.88,-35.546],[136.625,-35.562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.814062,36.692281],[25.617289,36.726492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.046344,55.201281],[8.213156,54.943031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.494,37.254],[18.26475,37.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,-37.8],[-180,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.36725,58.076],[9.532,58.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.043,46.638],[-5.17,46.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.076,-13.144],[174.13,-13.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.2995,66.482],[-14.981,66.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.111125,56.458375],[17.53,56.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.077625,49.415055],[0.033,49.62],[0.036687,49.745063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.322,43.8645],[-2.5575,44.1655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.099,59.808],[-0.74,60.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.088,36.201],[-15.584,36.214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.5515,43.2],[8.5545,43.327875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.8145,35.9215],[-10.33,36.073]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.1145,43.561125],[9.299312,43.419438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.279,40.298],[-145.448,42.072]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.429336,37.93318],[24.336312,37.837047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40,-40],[40.316,-39.708]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.767,12.183],[-87.296,11.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.743,34.939],[26.527125,35.095375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.527,11.744],[-33.505,13.767]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.27,42.483375],[3.472,42.4145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-118.915,33.47],[-120.667,33.189]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.081125,40.871],[18.034406,40.711969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.00175,70.0805],[21.184,70.239],[21.452,70.3295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.613625,58.325875],[8.391625,58.22625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-1.919],[-159.135,-0.877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.438094,63.345781],[20.451,63.449]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.488125,38.813875],[0.673,39.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.175438,48.301625],[-6.329,48.103]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.24,28.825],[-78.654,28.182]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.006,66.134],[-20.722125,65.969375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.524,53.302],[5.569,53.431125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.680625,53.365],[-5.511687,53.391188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.284,47.794],[-3.286,47.779],[-3.398,47.694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.162313,38.649938],[-10.113,38.807],[-10.087,39.063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.812375,40.032813],[18.952,39.9885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.575,40.157],[13.70075,39.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.23175,56.1155],[18.29475,55.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.265,0.016],[5.3,-2.907]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.964,42.2375],[36.393,42.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.36025,48.551969],[-5.376,48.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.166,60.315],[27.034,60.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.55075,54.91325],[17.445,54.887]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.673344,52.042],[3.441813,52.015906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,30],[-123.541,32.109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.97443,37.198852],[12.043641,36.978828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.935922,43.688109],[-6.159,43.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.5215,45.18],[30.5,45.066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.687,37.663],[6.816375,37.652375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.148625,60.188094],[22.365187,60.104875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.632375,43.698],[13.54,43.763]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.909,36.339],[-3.2425,36.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.445391,55.916641],[14.575281,55.729094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.68,34.898],[14.93,35.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.40325,42.551813],[15.292125,42.721125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.356766,51.684719],[-5.40275,51.486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.142,35.517],[-11.98,35.742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.866,36.771],[-8.556375,36.747]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.925,55.994],[19.023,56.123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.708,62.003],[-6.568,61.81275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.05,40.689],[5.097625,40.112875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.888,11.354],[-90.991,11.489]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.382,55.411],[10.4,55.429],[10.528,55.488],[10.557,55.55875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.373375,41.273875],[8.250234,41.150875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.601,39.665],[23.724,39.5465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.525625,41.264],[18.602,41.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.4805,43.931],[-8.160375,44.033375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.957,34.52],[-67.841,33.589]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.229,58.726],[-1.2445,58.5955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.111,-10.043],[-100,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.7,13.4],[124,12.6],[122.1,13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.165375,22.086781],[-86.363,22.00975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.914,55.669],[14.966812,55.530113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.74975,38.2715],[11.593,38.317]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-10.344],[-97.306,-17.444]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-30],[85,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.546,60.747],[17.649,60.713]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.7335,55.47625],[-6.57075,55.83475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.884937,57.489125],[7.739352,57.566789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.559312,55.7235],[20.58575,55.504]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-121.229,-1.247],[-120,-0.984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.73,1.069],[172.781,1.319]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.784,3.762],[8.67,3.828],[8,3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,-50],[-180,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.331375,43.614375],[14.2495,43.7505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.739,34.464],[29.322,34.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,30],[135.371,28.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.631438,41.748188],[10.867687,41.646563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.79,42.96775],[6.6825,42.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.016,45.318],[-45.109,45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.89425,38.8455],[7.783,38.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.336,-0.726],[126.688,-0.812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.08275,59.633],[24.843312,59.674188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.328,-21.306],[-35.226,-24.761]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.203,39.3115],[15.3105,39.1235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.714344,39.443875],[0.939312,39.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.378828,37.683078],[26.295719,37.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.864,1.391],[169.423,5.494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.8735,37.8195],[-9.755,38.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.92,43.675],[-2.076188,43.530625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-40],[-25,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.625422,36.369031],[25.4705,36.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.107781,52.790656],[-4.762828,53.372312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.485594,54.052188],[14.299422,53.977562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23,65],[23.327,65.004]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.78675,43.472062],[-3.909,43.5615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.598,32.096],[-128.524,31.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.450031,61.446969],[19.014,61.7535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91,26],[-91.672,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.014492,39.010125],[25.828234,39.089973]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.426,49.442],[-5.51575,49.1745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.8,-29.6],[-71.3,-23.8],[-70.8,-20.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.839344,42.003937],[16.627875,42.037047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.348,35.7705],[28.881,35.569]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.865,-20.053],[-120,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.445391,55.916641],[14.438937,55.812125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.2995,53.54075],[4.979375,53.474625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.325,65.295],[22.339,65.379],[22.399094,65.462063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.627719,53.392437],[-3.643422,53.590187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.463,25.743],[52.997,26.028]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.557,34.955],[-55.869,34.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.258625,56.124625],[15.138,56.045625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-18.204,42.496]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.216203,56.968812],[7.260312,57.130813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.620094,66.146922],[-18.482734,66.103766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.901875,37.10975],[26.87125,37.004375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.816,66.825],[-79.543,66.011]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.128,42.440875],[28.994187,42.495688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.438,-37.635],[110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.519938,56.819563],[7.4275,56.721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.542,50],[-133.976,48.959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.2915,64.378],[22.450445,64.356875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.92725,54.964],[16.979188,54.837812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.323,26.667],[-82.252,26.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.851,20.679],[-20.898,20.807]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,-50],[-60.205,-48.384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.268,13.112],[144.637,13.4425],[144.727,13.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.793,42.906],[33,43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.969,39.35225],[18.097,39.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.325,36.009],[160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.841,-6.527],[-81.9,-5.25],[-81.25,-3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.657,39.781],[23.561,39.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.04,24.41],[-82.149,24.392]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.1,31.8],[-8.7545,33.6495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.627,56.8515],[10.650688,56.718375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.164,66.336],[-24.001,66.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.20725,34.602375],[-8.11925,34.68775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.8,3.7],[110.905,1.643]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[151.5,-34],[152.834,-33.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12,68],[13.806,69.111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.832344,44.290719],[28.7885,44.149]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34,-26],[40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.137031,48.747781],[-2.23575,48.702375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.975797,53.878438],[6.7815,53.88925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.026,2.003],[65.03125,5.06775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.140875,56.603187],[18.048891,56.557531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,30],[-128.524,31.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.816,-31.816],[174,-34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.52675,51.96125],[3.312875,51.918125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.393,42.207],[36.393,42.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.935125,42.460375],[16.036406,42.372375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.823,27.118],[-77.498,27.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.25,-39.301],[-57.026,-43.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.606219,35.3665],[26.471,35.46425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.909,7.8],[-50.02225,10.00675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.76,54.841313],[-5.63925,54.808375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.334,50.657],[-5.573,50.507]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.00975,56.34725],[19.858,56.19025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.38725,56.57775],[7.541125,56.63725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.855,44.69],[36.62,44.742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.496,42.033],[16.627875,42.037047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.01625,41.074],[9.92275,40.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.82775,59.78625],[4.787,59.638]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.958,39.383],[5.316,39.103]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.435813,51.826078],[-5.192016,51.640203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,20.001],[128.3,24.9995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.344,46.026],[-61.631,46.071],[-60.68,45.541]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.595,54.946],[-0.218,55.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.34925,36.871625],[13.679688,36.879063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.9545,4.022438],[72.076,2.768]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.477,14.999],[-180,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.276641,54.508656],[14.161687,54.593969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.300375,39.66625],[19.364,39.56],[19.433,39.4515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.886,25],[-86.643,25.167]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.038885,45.242312],[12.983,45.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.867719,47.237125],[-2.785219,47.112094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.6765,35.9635],[-12.806,35.6935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-40],[-15,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.483844,42.372],[16.393,42.562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.418,-18.152],[49.938,-18.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.685,-25.924],[-125,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.749359,60.966672],[4.53675,60.915125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.786,37.137],[4.265,37.133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.758,39.5],[9.8365,39.399]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.227,36.317],[28.400875,36.420125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.531,13.177],[-17.884,14.558]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.808,54.541],[2.616,54.477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.71,41.563],[18.76875,41.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.895,58.443],[19.017688,58.729125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.892,41.170313],[17.171125,41.08675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.44975,55.49825],[16.536,55.581031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.13752,37.961805],[12.265625,37.78325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.796,-20.844],[-10,-21.343]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.399094,65.462063],[22.271,65.527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.410563,39.767125],[19.300375,39.66625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.303,33.725],[25.47,33.999]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.676,58.903],[21.46975,58.725672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.63,56.624],[-17.631,52.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.5025,53.583],[0.61125,53.64325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,0],[-92.511,2.548]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.8195,49.908],[-6.71525,49.869875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.862258,53.790398],[7.568336,53.698863]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.03,66.418],[-21.058,66.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.576187,50.032406],[-4.486813,49.913687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.431,-17.608],[153.016,-18.491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.073,34.215],[35.2,34.199]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.5,45.066],[30.225,44.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.81,17.97],[-76.86,17.916],[-76.394,17.779],[-75.973,18.043]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.0035,40.958],[1.8295,40.818625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.9,47.118],[-7,46.975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.901,5.4],[-46.401,2.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.306,27.483],[-60.619,25.605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.517,57.947],[-19.994,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.759,39.19],[-13.2045,39.0915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.991,11.489],[-87.6,12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.514531,40.822406],[10.431,41.148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.7675,39.536],[18.7885,39.774062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.389,-35.013],[-4.61,-35.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.950602,54.250352],[7.940734,54.140664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.868,39.294],[-72.744,39.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.691,49.421],[-8.5775,49.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.028,70.724],[21.567,70.821]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.6,-5.2],[149,-7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.744,61.1695],[18.633555,61.056664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.554063,38.455859],[25.431312,38.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.303,39.843],[14.488938,40.038406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.61325,56.10125],[3.9585,56.3915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.854938,59.180188],[19.782,58.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.667,30.202],[-70,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.0165,57.422],[23.892008,57.372164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.229875,51.3815],[-4.488,51.454],[-4.629,51.465],[-4.749937,51.477312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.176,-7.0755],[176.173,-3.8745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.868,12.921],[-69.98425,12.99075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.214,20.058],[131.828,18.269]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[56.545,-18.796],[57.55,-19.851]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[148.248,14.532],[149.999,15.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[93.7125,-13.86],[96.7525,-11.9985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.125375,54.6755],[8.102375,54.561813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.343,38.37],[6.822,38.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.72975,60.6535],[18.024,60.6985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.264,-45.741],[-55.149,-45.637]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.733,55.987],[3.567,55.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.127,-26.341],[-95,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.289094,57.821469],[18.0965,57.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,49.71],[-20.348,49.687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.242625,54.67725],[8.125375,54.6755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,22.1],[120,24.634]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9735,58.866],[5.048969,58.610875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.620437,54.27225],[11.633813,54.423781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.524,-16.084],[148.412,-13.866]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.298,42.3805],[10.307125,42.51975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.223,50.906],[-20.001,50.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.382,52.265],[-10.48875,52.19625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-30],[90,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.554,36.768],[-7.253,36.829]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.002,61.284],[1.18175,61.662]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.8355,59.968],[5.708,60.047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,40],[-60.503,39.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.06175,-11.353],[122.3,-11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.765,36.649953],[21.476125,36.591625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.618,42.796],[-45.016,45.318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,30],[150,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.824,31.17],[33.741,31.439]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.81,29.28],[-72.143,27.8135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.593281,50.174094],[-4.576187,50.032406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.9485,53.868],[5.793625,54.122]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.188,36.4725],[-9.163937,36.269188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.2635,44.880875],[12.984188,44.807578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.662937,35.789938],[25.85875,35.7305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.026,35.41],[-43.145,33.419]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.60125,43.80125],[28.7465,43.7345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.541,32.109],[-124.312,32.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.17575,49.3525],[-6.415,48.906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.863,41.273],[-140.001,41.432]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.826781,36.368094],[24.845813,36.259187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.649,38.7205],[24.779438,38.804688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.008453,37.544078],[-1.317,37.257],[-1.351,37.221],[-1.656,36.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.055,44.086],[13.991812,44.193875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.014062,38.378375],[-9.278031,38.316719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.535094,58.613656],[5.406,58.573]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.851625,49.80375],[-2.823,49.6955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.063,-16.094],[-140.6615,-15.071]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.651,-43.751],[70.002,-43.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.646293,55.74748],[12.866844,55.739516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128,26],[127.326,25.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.945469,59.560281],[4.711344,59.493687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.996,38.283],[15.188937,38.332734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.381,35.908],[31.943,35.209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.1695,39.107],[10.398,38.887]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.393,42.207],[35.296,42.206]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.287375,60.46025],[-1.156,60.483]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,40],[-68.02,37.959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.528094,45.267156],[13.33,45.266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.807994,55.276076],[9.693234,55.11175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.015125,40.298375],[7.587375,39.788063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.70375,54.90175],[18.788375,54.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.326,31.418],[-78.502,30.713]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.5705,52.5285],[-5.702219,52.418563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.3885,70.676],[32.0375,70.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.106,-34.464],[0.002,-34.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-10],[-121.277,-8.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172,-40.5],[165.977,-40.404],[160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.144687,39.117297],[15.10675,39.0245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.359875,51.328875],[-5.280875,51.475687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.080938,49.982313],[0.669,50.041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.0155,39.81875],[11.1785,39.52075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.395578,60.034437],[20.28,60.15775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.750953,42.840031],[8.674312,42.70125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.375125,39.399687],[25.1865,39.36075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.477,67.725],[9.573,67.798]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.896,45.943],[-0.938,45.944],[-1.11575,45.9715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.544219,51.431562],[1.640156,51.30475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.436188,45.1285],[14.625875,44.79225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.705844,53.926219],[8.60725,54.06425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.944187,63.182125],[18.444,62.853],[18.055,62.776],[17.924969,62.803875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.028,48.148],[-48.828,48.899]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.607,54.194],[-164.472,54.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.195,39.823],[3.195,40.031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.859523,51.49709],[0.729,51.49875],[0.61625,51.50225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.176,42.329],[15.385,42.2565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.0055,5.052],[155.088,5.124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.9525,47.60375],[-6.889,47.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-50],[-94.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.451,-19.269],[156.042,-19.177]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.654,53.7245],[2.085,53.797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,30],[139.417,34.162]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.225828,50.785375],[1.305336,50.890065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.5085,21.3435],[-156.872,22.132],[-154.6295,24.9085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.473,20.933],[-158.052,19.384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.7045,44.886844],[14.606563,44.994031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.8425,56.068],[6.880937,55.903312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.747133,41.83657],[9.50575,41.53925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.156,59.947],[-81.943,61.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.28,53.38725],[-3.149953,53.494234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.814625,37.765],[15.9425,37.828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.823531,38.982125],[-9.83275,38.746875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.94375,35.4515],[27.167,35.406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-10],[-22.806,-12.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.09975,57.083],[19.411875,57.094813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.973,60.94],[20.832812,60.783469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.412,53.18],[5.258,53.198875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.42225,-46.9955],[-58.875,-45.733]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.941,39.505],[121.095,40.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.135,60.055],[4.984438,60.133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.852,31.248],[-24.496,32.557],[-21.368,33.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.239,66.36725],[-23.271,66.561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.178,-9.889],[137.148,-9.738]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.615,62.873],[20.75475,62.53275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.609633,42.895539],[16.725,42.822],[16.823156,42.681648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88,21],[83.657,17.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.9755,38.4465],[4.077,38.393],[4.397,38.377]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[61.107,-28.954],[64.471,-25.776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.3565,39.8545],[0.148094,39.671781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.0645,57.835],[6.21925,57.7415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.777297,36.300844],[22.064375,36.371125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.752141,57.860664],[10.73557,57.980012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.45,53.9395],[8.236625,54.069906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.219,44.315],[-7.846,44.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.026,2.003],[67.532,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-50],[-120,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.75,23.877],[-24.3685,25.8585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.435766,40.569461],[14.43725,40.338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.535312,36.193156],[24.479688,36.063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.259,38.249],[-71.43,38.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.527125,35.095375],[26.588,34.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.818875,55.517125],[14.833406,55.412844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-20.729,39.327]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.296,53.81425],[-4.182,53.726],[-4.067,53.6655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[152.147,17.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.832,56.229],[6.486,55.741]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.329,0],[-141.814,0.576]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.949,37.77275],[27.00825,37.67925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.738,55.842],[1.552,56.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.342375,58.375],[18.45,58.307]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.968,39.1375],[9.794,39.124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.525625,41.264],[18.645,41.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.888,-45.403],[-120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.746,-23.542],[-119.999,-23.133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.363,66.053],[10.787,66.101]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.626312,57.555813],[17.694992,57.363352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,17.058],[-170,18.081]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.59,34.39],[139.3445,34.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.120647,35.925677],[-7.475563,35.964687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.1,-17.848],[122.06175,-11.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.869,-50.861],[-63.103,-53.008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.3305,37.554],[6.85,37.42575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.8755,21.836],[-84.971,21.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.705,64.583],[9.803,64.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.497473,37.191895],[26.359,37.154125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.449,59.08475],[-2.0995,59.7035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.469,18.039],[140.01075,17.68825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-40],[41.644,-40.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.075875,41.67475],[16.984906,41.55782]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146,-44],[143.168,-47.04],[140,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.503812,57.258313],[16.572688,57.138312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.927,54.366],[6.899,54.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.641,54.82],[5.51,54.866]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.766,27.976],[-85.7515,28.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,0],[-41.321,1.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.5705,52.5285],[-5.814641,52.630781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.06975,58.33125],[21.052625,58.21275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,60],[-6.039,58.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.5775,49.83],[-7.676,49.827437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.9965,69.66825],[18.613,70.021],[18.725,70.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.289313,39.073],[23.453,39.016],[23.585,38.953],[23.935,38.785],[23.954,38.776],[24.122578,38.783789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.086,59.404],[5.949,59.297],[5.868,59.090656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.783,55.983],[-0.166,56.556]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.076,2.768],[70,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.176,61.436],[19.450031,61.446969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.225,56.070875],[20.137,56.2355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.097,38.956875],[12.987,39.301375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.668891,37.886359],[24.56984,37.861602]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.379469,51.685312],[2.014828,51.457344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.407,19.615],[-133.158,20.0185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.058625,53.893563],[1.164,53.825],[1.37825,53.71425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.756,1.622],[109.934,7.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.412,42.593625],[10.307125,42.51975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.903813,55.244687],[17.000625,55.193375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.6375,58.141],[4.046,58.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.5735,48.60675],[-6.57375,48.27575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.5305,55.3685],[17.741,55.561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.888,11.354],[-89.597,10.124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.319,51.961],[-20.002,52.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.2155,57.352],[17.295219,57.249313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.51,60.993],[17.433125,60.818125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-3.281],[-14.2795,-7.9615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.482734,66.103766],[-18.392562,66.210797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-30],[-89.998,-36.324]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.022125,58.040625],[19.828187,58.286062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.118,54.651],[6.0985,54.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.963531,56.821156],[11.210094,56.756406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-10],[-131.405,-11.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.301125,39.56325],[25.418625,39.611625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.726,40.244],[0.815,40.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.52675,51.96125],[3.673344,52.042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.70175,37.131],[-69.88,37.096]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.7305,61.341],[18.744,61.1695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.851922,50.612422],[-1.983,50.712]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.291312,50.692563],[-0.1315,50.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.253,36.829],[-7.846406,36.884875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.42,27.703],[-74.07,27.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[175.538,-42.975],[177.232,-46.048],[-180,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.082,7.348],[-79.956,7.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.275859,51.113109],[-4.22675,51.25825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.157,36.6035],[35.634,36.296]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.946,28.828],[-71.81,29.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.619375,43.390875],[28.7465,43.7345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.694,71.112],[19.639,70.972]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.63275,38.44775],[12.4585,38.4735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.045,44.772],[-8.047,47.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.146,40.743],[-69.773,40.487]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.648,55],[17.766,54.988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.668,33.938],[19.488,34.2305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.807,51.453],[1.912875,51.426563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.899,39.7605],[-10.87025,39.95175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,5.057],[-110.953,0.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.001,-38.7],[144.3,-39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.615,60.1165],[27.368,60.204]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.173125,55.031188],[-5.0345,54.9465],[-5.116875,55.138109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.022,14.962],[41.442,15.907]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.057,37.5065],[-0.4705,37.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.550547,43.312297],[9.551836,43.171375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.692164,42.73807],[9.842281,42.673063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.84,27.17],[-76.461,27.338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.449,54.455],[10.893,54.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9545,56.176],[-1.703125,55.893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.168,-28.269],[-30,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.236,53.17],[-10.2975,53.4695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.111,42.624],[7.494,42.734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.676,14.838],[-55.4615,15.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,4.783],[72.076,2.768]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.97125,40.524],[23.831,40.518]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.453,58.3585],[24.088,58.19],[23.458004,58.565945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[97,11.125],[95.292,10.706]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.645,11.8085],[43.703,11.542],[44.995,10.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,0],[-175,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.6235,54.3405],[15.62875,54.51575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.0765,52.177375],[-6.248781,52.253125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.741,57.932],[-162.092,56.731]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.627875,42.037047],[16.68575,42.14675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.8225,46.443],[-4.584,47.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-20.001,43.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.550141,42.856656],[10.344367,43.149219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6055,54.544],[5.564,54.726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.462312,56.352656],[7.613766,56.199719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.109,-45.405],[40,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.87575,49.202375],[-3.503,49.4345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.9645,38.946],[2.862,38.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.95,-5.4],[116.408,-5.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-50],[150,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.079594,41.96375],[16.1125,42.07025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.667,58.041],[19.608062,57.901125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.761,43.9825],[12.908,44.0985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.995469,54.163219],[7.192063,54.184531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.49,33.125],[124.644,32.434]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.029,38.876],[10.398,38.887]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.738,55.842],[3.61325,56.10125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.471586,59.474203],[10.530898,59.382117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,-40],[125,-40.107],[120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.628,34.242],[23.035,34.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.397195,37.265648],[24.488828,37.066336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.3885,49.804812],[-3.10875,49.89325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.356,35.865],[23.475133,35.751766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.8,55.1],[-167,55.427]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.381,37.076],[-10.413,37.18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.55,70.204],[57.965,70.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.5375,27.85875],[-91.733,27.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.94525,37.9905],[-14.37,37.359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.837,36.586],[31,36.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.5215,58.2635],[19.661375,58.28575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.790875,32.940375],[32.055375,31.709125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.708922,54.714859],[-5.562057,54.684709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.551836,43.171375],[9.556641,43.06575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.572,22.583],[-66.321,20.154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.045574,42.939012],[5.16,42.968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.071,71.185],[-142.636,72.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1335,52.85625],[4.242,52.804125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.51,44.848],[-15.919,45.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.641,41.23],[5.8315,41.2835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.452625,39.15675],[3.563,39.062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.359938,37.590219],[10.959688,37.590812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.297,59.803],[-1.9815,59.394]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.886,-18.472],[168.073,-18.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.535,47.884],[-9.12,47.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.893,54.711],[2.358,54.479]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.213156,54.943031],[8.227922,54.829687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.632,35.96],[26.339,35.812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-30],[-43.78,-30.267]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.817,54.9705],[5.70875,55.473]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.451,63.449],[20.570812,63.52575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5,-25.277],[-4.412,-24.677]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.596719,36.353],[-2.952,36.419]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.498375,56.226125],[4.929,56.152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.055,14.512],[-80.5,14.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.352,11.99],[-80.934,12.357]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[77,8],[75.3,9.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.9515,28.3825],[-15.84,28.3385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[151.14,41.972],[148.972,40.823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.221,36.57025],[-8.444063,36.576813],[-8.623,36.61075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.933,41.615],[16.240687,41.79975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.085,53.797],[2.2215,53.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.354328,51.25282],[-4.535,51.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.645,30.264],[-75.318,30.302]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.214,59.5285],[-1.08525,59.9725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.799844,54.771531],[12.761906,54.963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.694,-7.292],[116.831,-6.279]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.981125,40.983875],[19.142,40.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.911,-20.733],[166.314,-22.4065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.028,58.55],[-134.573,58.204],[-134.147,58.171],[-133.818,57.825],[-133.792,57.203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.719156,52.181344],[1.8545,52.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.157,-32.824],[120.877,-34.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-39.123,40.982]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.381,45.077],[12.518703,45.136062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.088,65.693],[-18.13,65.798],[-18.25775,65.9295],[-18.393469,66.001937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.675,42.504188],[14.5495,42.757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.113,9.132],[158.3535,8.38625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.654891,57.282262],[10.475,57.061]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.841,33.589],[-67.811,33.344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,30],[-178.5,28.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.75,17.5],[-71.138,16.439]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.551,69.516],[16.38,69.334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.09,64.67],[35.468,64.873],[35.023,65.254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.136,48.725],[-6.189,48.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.814062,36.692281],[25.766711,36.886488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.236,37.956],[17.019,38.552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.903,-4.64],[116.408,-5.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.3,-4.2],[43,-1],[45.6,1.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,0],[57.544,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.192,60.985],[18.233,60.818]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.965,57.343],[20.853125,57.20875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.895,58.016],[20.6975,57.72375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.9245,51.2465],[2.956828,51.375391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.706809,57.743219],[10.752141,57.860664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.933375,41.962781],[15.88975,42.1645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.971,47.38375],[-4.921594,47.532438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.007,33.372],[124.319,33.892]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.685,42.592],[-35.109,45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.01,41.599],[11.121,41.560625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.749,64.329],[-4.501,64.263]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.153977,51.413375],[2.049148,51.229781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.52625,37.5765],[15.814625,37.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.465227,36.639328],[25.402727,36.842187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.8545,38.676],[-10.446,38.642],[-10.319,38.6405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.724,35.532],[35.591,35.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.578789,55.280547],[14.657687,55.1635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.614125,60.8495],[4.6715,60.750375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.54,57.724],[16.780188,57.689125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.3035,37.0535],[21.309,36.79125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-30],[75,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.859562,44.733937],[14.738992,44.657469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-10],[-5,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.519,-34.913],[-149.998,-34.051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.435,51.902],[-8.332,51.865],[-8.317,51.84],[-8.253219,51.73225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.573,22.015],[-86.056187,21.765438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.008375,41.3605],[8.814062,41.470312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18,21.001],[-21.295,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.562,54.638],[-132.311,54.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.015,-28.169],[5.891,-30.077]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.834,55.801004],[15.968562,55.866688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-20],[-80,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.872,51.56175],[2.014828,51.457344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.995,70.059],[-128.383,70.668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.494,54.093],[0.9255,53.926]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-40],[-173.465,-36.802]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.589,51.897],[4.684,52.017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.080813,36.912281],[24.86725,36.909336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.478188,42.446594],[10.307125,42.51975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.858937,35.888188],[12.975875,36.46325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.059,53.791],[-152.324,53.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.557,-5.612],[165.866,-5.099]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.32525,42.0665],[15.497625,42.175156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.301738,38.272168],[13.218281,38.426297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.983,40.461],[1.1415,40.8395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.785,52.293],[-32.597,52.706]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.604,50.460875],[-0.678891,50.605625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.923,38.818875],[14.78675,38.803]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.988,66.807],[35.456,66.101]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.668,56.964],[4.64,56.828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.834906,43.888906],[8.881109,44.035281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.678,37.901],[8.064,38.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.905,48.093],[-4.798641,48.058188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.705188,59.993406],[19.617594,59.841656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.669,20.051],[-140,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-21.41],[80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.991,57.523],[5.911,57.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.7785,57.6795],[19.873,57.516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.1325,44.136844],[9.257094,44.096219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.417,34.162],[139.59,34.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[87.411,-17.548],[89.512,-19.537]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.317125,36.608187],[21.12475,36.388]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.574938,39.23257],[23.372,39.20225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.798375,53.92875],[-4.296,53.81425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.071562,61.531188],[21.22232,61.4235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.8755,21.836],[-81.229,18.846],[-78.712,17.954]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.138,37.104],[-135.767,38.272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.507,62.95],[19.459,62.7485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.58975,43.5425],[-3.76282,43.569477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,40],[-139.4385,40.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.8375,52.8025],[2.117,52.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.417,-30.083],[-100,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.209063,66.200938],[-23.239,66.36725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.912,-23.657],[169.996,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.011,27.798],[-76.461,27.338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.19275,50.0275],[-0.254125,50.21425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.896,30.975],[-140.001,31.389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.033,59.379],[16.933,59.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.66275,57.729375],[8.509,57.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.882,-45.737],[-55.264,-45.741]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.722125,67.638625],[13.44,67.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.713,29.434],[-16.158,29.067]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.906547,43.517922],[16.042969,43.42407]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.088035,49.877716],[-4.954,49.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.66125,38.470312],[24.782625,38.671406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.404,46.193],[-9.385,46.758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.843063,41.006312],[2.987,40.9215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9885,39.896],[4.749,39.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.002,52.691],[-40,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.724,29.648],[-74.576,29.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.711118,37.566561],[23.703,37.77025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.900781,58.931719],[10.003281,58.918906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.3,27.331],[-73.86375,27.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.392,59.829],[23.569781,59.857125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.7945,50.366],[-7.684,50.159]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.411812,45.124281],[13.219891,45.249109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.586,60],[-32.728,60.892]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.126,-46.517],[-130,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.68075,40.573],[10.514531,40.822406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.3655,54.654375],[12.34675,54.536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,10],[-100.69,10.788]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.4795,49.7435],[-1.36875,49.81375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.962,42.954],[28.128,42.440875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.6765,35.9635],[-12.501,36.132]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.833563,55.30441],[-6.038125,55.41625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.78925,36.71375],[-7.554,36.768]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.54,43.284],[-63.5,44.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.373,36.6625],[14.513,36.624]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.409562,43.420125],[-8.729125,43.4265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.910328,42.985254],[9.830586,43.152195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.542,-45.73],[-58.875,-45.733]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.324188,41.017313],[13.3785,40.857062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.493625,63.190883],[20.4455,62.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.580813,63.26475],[19.441,63.278]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.112,57.844],[-6.264,57.754],[-6.389,57.717],[-6.548,57.70425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.7685,39.876],[12.636406,39.944312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.082875,49.795625],[-4.1355,49.899156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.162313,38.649938],[-9.936,38.729]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.151,37.842],[12.162812,37.692531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.5995,59.4905],[26.5465,59.56225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.7585,42.87625],[5.865656,42.697406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.181,59.129],[-1.229,58.726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.96,43.55375],[-2.076188,43.530625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.358,65.006],[10.077,65.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.947062,53.079391],[-5.909016,52.970562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.022187,49.350313],[-4.12475,49.33025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.195,63.468],[20.331,63.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.738125,58.169813],[8.771062,57.953812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.001,-38.7],[135.084,-38.32],[129.253,-37.651],[123.499,-36.694],[118.001,-35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.095,56.24],[4.13525,56.39575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.281656,49.501211],[-0.375781,49.598094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.623,44.6505],[-1.892,43.921]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.798391,36.547055],[24.826781,36.368094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30,-50],[25.11,-45.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.763,-0.246],[-89.103,-0.099]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.936625,58.022125],[7.795,57.985],[7.651,57.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.28918,37.929301],[23.443984,37.825055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.007188,38.90075],[8.01225,38.7795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.21575,43.642],[-3.314,43.824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.949,7.953],[110.202,10.417]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.457,47.323],[-122.355,47.383],[-122.458,47.608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.04,57.359],[4.02375,57.04825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.707,11.95],[-130,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.593469,58.146406],[17.5345,57.91325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.80375,42.980375],[8.95625,42.9535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.21925,57.7415],[6.0555,57.6415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.435,8.466],[-137.76,10.016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.127,65.896],[43.665,66.561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.316,39.103],[5.527,38.939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.748455,37.943438],[20.5735,37.804875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.476125,36.591625],[21.317125,36.608187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.580719,36.035313],[23.649,36.154],[23.724812,36.342438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.039188,40.063938],[24.876469,40.019656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.947219,59.497953],[23.81175,59.435125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.08425,38.042],[25.141,37.91325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-30],[60,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.880016,54.607469],[7.745688,54.37375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.643625,57.86225],[-1.81575,57.98175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,40],[-49.417,40.653]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.364,29.657],[-160,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.02225,10.00675],[-50.001,13.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.970297,53.366312],[-5.032,53.1915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.678,56.7105],[20.814687,56.695625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.641,41.23],[5.809,40.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.211125,43.996375],[15.1745,43.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.548821,36.637965],[26.599719,36.778969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.246625,38.70375],[13.236,38.599]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.895,54.797],[18.925219,54.655281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.714125,46.733063],[-2.811375,46.65775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.315,37.275],[-122.9,37.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.448,40.6315],[18.546594,40.587594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,50],[-137.542,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.695688,37.982687],[11.481,38.108]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.7395,58.6435],[-5.642,58.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.922516,43.046828],[5.921875,42.861625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.179625,33.617],[33.064,33.309]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.142937,41.267531],[2.031125,41.131]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.727,45.214],[-5.841,45.159]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,60],[-7.684,61.894]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.70175,37.131],[-69.683,36.538]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.145,33.419],[-41.285,31.398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.9075,55.2505],[14.746152,55.300796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.66,-14.828],[64.733,-14.902]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.583,47.198],[-1.69,47.202],[-2.241125,47.234375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.689,24.657],[-16.094,25.752],[-15.233,27.336],[-15.384313,28.145375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.3265,35.767125],[23.475133,35.751766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.722,9.293],[140.42,9.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.946,0.058],[104.137,-0.587],[105.063,-2.169],[105.686,-2.346],[105.905,-2.892],[106.1,-3],[106.8,-5.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.706,-6.348],[-160,-1.919]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.875,-45.733],[-56.927,-43.896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.089152,62.212629],[20.861,62.06975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.376688,21.308563],[-153.961,23.648],[-153.635,23.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.126,69.493],[14.79,69.716]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.561875,54.698719],[-3.48,54.82575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,5.057],[-120,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.25825,37.08725],[-10.149,37.094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.001,43.639],[-19.9655,47.29275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.998,-35.845],[-159.999,-32.943]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.238,52.393],[3.306,52.773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.029625,54.566875],[13.848451,54.48759]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.651,45.042],[-2.615,45.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.302,36.021],[22.029,36.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.609,32.912],[-120.667,33.189]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.378,0.553],[104.909,0.697],[104.988,1.008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.206,36.022],[15.95,36.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.01975,19.973625],[-60.001,22.772]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.595,7.643],[-35.958,9.9915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.07,50.217125],[0.2265,50.350313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.423,5.494],[168.093,7.111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.151,37.842],[12.034,37.8625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.763,40.292],[-68.895,40.2935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.841,36.8605],[0.51875,36.50425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.51875,36.50425],[1.045,36.759],[1.841,36.8605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.175891,59.425],[5.34725,59.24175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.365,55.809],[17.113,55.831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.575,54.791],[-8.451,55.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.861813,37.206406],[26.901875,37.10975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.7,-5.85],[122.802,-6.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.487906,54.9175],[11.5035,55.045875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.604,37.012],[-12.625,36.776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.228,25.712],[120.292,25.842]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.395,1.277],[3.769,1.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.8135,53.7255],[-3.916,53.729]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.9735,56.535],[20.836,56.362]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.097,38.956875],[12.96525,38.81575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.992,58.00925],[9.987586,57.908125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.48,54.82575],[-3.4,54.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.43,64.018],[22.487125,63.902125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.762875,36.295375],[25.638969,36.126844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.112,-45.403],[90,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-101.837,-11.929],[-102.005,-11.494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.460875,55.291625],[19.27225,55.127469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.574336,37.448672],[23.751042,37.436962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.114,29.885],[-78.222,29.662]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.903,-42.55],[-57.026,-43.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.747,-20.37],[10.73,-22.113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.596312,54.684687],[8.723,54.60825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.3445,50.6435],[-8.135,50.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.917,22.25],[-73.1405,23.2035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.001,32.278],[-60.001,31.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.257469,59.677742],[23.265313,59.50125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.397938,41.180969],[2.297246,41.344242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.894,-22.368],[7.224,-23.063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.373,52.4085],[-10.197,52.4485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.000625,55.193375],[17.1385,55.134]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.196375,60.391813],[5.266563,60.510062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.503375,36.86575],[24.361391,36.752797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-7.344],[71.147,-6.068]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.4135,40.9095],[8.5,41.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.497687,38.230871],[25.360312,38.260813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.177031,54.10407],[5.1775,54.1035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.795844,49.741437],[-6.71525,49.869875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.045,10.642],[-82.8965,10.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.995687,43.5465],[-3.118859,43.526453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.727,45.163],[29.5915,44.73925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.075,15.244],[-134.966,15.2035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,30],[143.754,26.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.148094,39.671781],[0.753,39.594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60.4,22.7],[59.001,24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.643,63.622],[10.099742,63.466625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.339625,55.3235],[4.8645,54.6055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.908625,42.902125],[15.838797,42.578672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.895656,56.986219],[11.944,56.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.405,-11.475],[-132.478,-12.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.268,-35.633],[-155,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.86075,38.8845],[12.790188,39.014688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.266375,44.164],[14.125203,44.1815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.703125,55.893],[-1.597109,55.773531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.124,0],[-42.984,-0.086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.90675,57.777],[20.827063,57.636688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.218438,43.126688],[9.321,43.058125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.369687,36.318625],[14.557,36.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.797406,39.02825],[14.915859,38.930516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.14,66.412],[-18.392562,66.210797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30,-50],[20,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.8635,34.787],[26.706,34.842]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.142,44.0915],[30.04,43.8005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.039,58.3],[17.8465,58.1685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.682,59.155],[20.5635,59.075375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.197,10.228],[-111.134,12.652]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.413812,60.001],[26.615,60.1165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.869,61.062],[1.17,60.943]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.23075,58.204],[21.296437,57.999188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.576,47.505],[-5.398,46.939],[-5.592,45.619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.926625,51.317281],[-5.815688,51.500125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.113,71.027],[29.145,71.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.411719,38.901266],[8.323,39.059125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.6615,-15.071],[-144.147,-16.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.901,51.3015],[-9.61775,51.339]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.078305,38.55825],[15.045064,38.408082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.471625,59.77],[26.5855,59.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.382625,58.650625],[23.458004,58.565945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.571437,54.234938],[15.4885,54.398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.13,36.33],[15.213625,36.4225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.6655,36.365],[21.59425,36.52275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75,-35.386],[70,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.14475,41.34625],[17.018578,41.432406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.8545,65.1155],[-24.116,65.0035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.27475,11.658],[-70.64,12.842]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.221,56.395],[-131.971,55.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.514,30.065],[-156.57,29.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.484,47.633],[-143.741,46.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.469,39.950625],[6.215,39.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.349195,54.779453],[16.514,54.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.2775,42.1305],[11.175875,42.13775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.166,56.556],[-0.965,57.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.3035,28.42],[-89.9,28.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.439,36.489],[13.563375,36.461875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.554563,39.140563],[24.618437,39.248312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.06,59.17],[23.276992,59.333898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.965,16.192],[155,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.12525,54.292687],[6.995469,54.163219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.326,25.039],[-80.029,25.115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.010063,36.171625],[-5.149312,36.059062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.592,15.573],[-145.4,15.565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.668,29.453],[-93.668,29.132]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.211,36.466],[-40,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.57,29.59],[-156.874,27.047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.92975,57.38025],[18.745,57.183]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.07125,59.727875],[22.492,59.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.72,70.921],[19.547,71.089]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.0475,40.32075],[24.9575,40.232125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.636656,37.207937],[26.568037,37.037578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.74975,53.0515],[1.842,52.954],[2.005,52.8665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.075,52.273],[-5.972016,52.231766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.219,41.182],[17.32,41.223]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.947281,42.268563],[10.120438,42.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.004344,40.877812],[12.797687,40.844813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.633555,61.056664],[18.7325,60.902]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.8145,54.60525],[11.671484,54.520078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.6845,43.186],[3.8595,43.1855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.655,43.319375],[14.75225,43.4335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-12.163],[91.525,-11.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.064172,40.707727],[12.948,40.688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-40],[85,-40.107],[80,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[46.492,67.157],[47.881,68.376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.90025,37.57616],[24.7825,37.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.002,-36.621],[66.837,-37.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.35825,41.65725],[8.218,41.7215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.07,-53.908],[-36.288,-53.69],[-40,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.179,49.6595],[-5.2985,49.6765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.514,38.13],[7.508,37.804]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,0],[152.1365,2.1595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.074,63.846],[11.056,63.818],[10.994,63.766],[10.876,63.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.629,37.352],[18.02825,37.3595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.362,38.533],[14.385375,38.39125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.159,2.65],[-27.042,2.553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.955,36.318],[26.0105,36.424],[26.074063,36.502156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.3075,47.6105],[-4.248188,47.74675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.685,15.481],[-155.203,14.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.398,47.694],[-3.8335,47.7205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.365375,35.48075],[-8.46725,35.31525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.4895,40.8185],[27.949,40.368],[28.664,40.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.927,46.151],[141.746,45.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.922438,50.531938],[-2.0695,50.406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.695,44.5645],[12.675125,44.706625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.415,25.571],[123.594,25.549]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.8765,40.8155],[25.639578,40.049898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.608875,43.185562],[7.725687,42.979563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.79275,39.80475],[9.758,39.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.225828,50.785375],[1.286406,50.68193]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-50],[60,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.368117,50.268758],[-0.216875,50.345875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.603,32.717],[30.790875,32.940375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.576,38.814],[14.041,38.824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.90725,59.3835],[18.9485,59.276]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.141,43.237],[4.959625,43.261375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.0895,64.786],[22.794375,64.834375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-10],[-135,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.796,45.557],[-3.963,45.5505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.966328,37.293547],[24.120941,37.270809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-40],[80.002,-34.797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.17,28.271],[-69.00175,29.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[74.343,-35.992],[75,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.349195,54.779453],[16.246422,54.970922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.41375,55.7645],[18.6535,55.6385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.415,68.433],[17.301,68.434],[16.87,68.43425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.22675,51.25825],[-4.0095,51.38025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.375,35.925],[11.805,36.795],[11.944375,36.861875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.46675,36.75575],[-6.352844,36.565609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.911,44.038],[-8.160375,44.033375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.5945,66.034],[-20.49625,66.1105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.585,36.321],[-72.701,34.893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.25225,51.48425],[3.274,51.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.315375,38.36275],[25.237,38.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.848451,54.48759],[13.958,54.373563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.3165,-10.549],[177.594,-11.106]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.665,37.52825],[24.514453,37.487023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[97,13.788],[97.61,13.416]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.642,58.3975],[-2.447,58.239]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.3335,38.78825],[26.436,38.731]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.6175,52.0285],[-5.56875,51.8795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,28.672],[-58.995,28.773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.304,21.766],[-74.1065,21.0735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.802795,54.899248],[17.55075,54.91325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.212156,57.092328],[12.239437,56.945688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.478031,54.635594],[8.354,54.719],[8.227922,54.829687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.001,48.695],[-31.783,48.397]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.739352,57.566789],[7.624656,57.279063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.235687,36.193938],[14.348312,36.107188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.347,41.851],[-169.39,41.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.165,54.0585],[14.299422,53.977562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.911102,41.74726],[11.781938,41.724312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1,4],[0.339,4.383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.742,-20.038],[86.99,-17.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.304328,37.265297],[25.16417,37.260051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.798,69.919],[16.551,69.516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.414875,50.408125],[-3.415,50.202875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.539,-54.669],[-57.858,-52.548],[-57.6315,-51.4805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,20.51],[-25.484,24.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.331537,37.454645],[15.3595,37.4415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.623812,48.989594],[-5.752187,48.922906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.974,0.143],[172.71,0.766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.445383,43.100578],[9.321,43.058125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.28325,40.59875],[18.181063,40.69975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167,55.427],[-171.666,56.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.2,35.2],[33.819,34.539375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.147,10.023],[-35.958,9.9915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.068,27.086],[-85.213,26.913]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-20],[4.225,-19.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.674672,56.071289],[16.7465,56.2005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.083,15.253],[64.736,14.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.254188,42.212844],[8.489227,41.981977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.462,-12.57],[-77.511,-12.451]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,2.174],[-40.257,2.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.448813,57.452945],[21.331,57.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.823125,51.924625],[-6.613,51.9355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.065,55.644],[5.282,55.731]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.05525,37.15075],[3.01,37.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.129,48.856],[-6.257,48.736]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.902,0.384],[172.616,-0.647]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.793,35.509],[-75.0865,35.628125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.886,34.514],[34.681,34.719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.822,-4.977],[54.578,-3.971]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.595,-41.573],[10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.079,3.12],[52.301,11.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.737563,50.055656],[-1.841031,49.984406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.669,-41.302],[-62.8755,-41.8965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.891,27.093],[-76.019,26.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.475563,35.964687],[-7.378031,36.212187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6725,56.3195],[6.881906,56.361031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.79325,70.05525],[30.944,70.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.868,54.2],[13.98675,54.238094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10,-40.707],[8.595,-41.573]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.899,3.437],[-180,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.545481,18.741766],[-76.391,18.718]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.029,55.944],[20.065,56.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.028195,59.747914],[19.040625,59.444125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.474625,53.615375],[-5.302,53.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.302125,67.72325],[14.1215,67.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.57475,-7.0675],[126.507,-6.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.6695,38.146],[11.593,38.317]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.7945,50.366],[-6.8195,49.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.86,59.117],[38.167,59.065],[38.497,59.22],[38.489,59.62],[38.087,59.918],[38.132,60.025],[37.193,60.283],[37.108,60.774],[36.875,60.9],[36.204,61.142],[35.697,61.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.879,36.896],[-11.213,36.8015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.171,41.806],[10.069187,41.938125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.046,39.553],[2.331437,39.515187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.9475,57.1615],[-1.382188,57.299813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.814,37.454],[10.683625,37.49325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.835344,40.158781],[18.689,40.374]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.17375,54.925406],[4.966,55.058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.618891,55.258641],[13.822063,55.28275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.250375,38.670625],[15.261312,38.501312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.30375,36.56925],[13.147625,36.622125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.750258,50.333555],[-0.616695,50.238164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-106.117,3.931],[-105.001,5.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.73557,57.980012],[10.568594,57.987469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.131,36.041],[-9.259,36.044]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.283672,55.005711],[-5.173125,55.031188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-40],[-25,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[63.1405,72.01],[65.668,69.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.104,44.634],[-124.4,45.3],[-124.9925,45.628]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.882,40.164],[145.022,38.435],[141.3,35.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.8595,32.6085],[-75.4485,32.907]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.744,0],[-1.109,-1.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.552,26.854],[-77.823,27.118]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.211375,54.429625],[-5.340438,54.457469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.23875,51.02725],[-8.183,51.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.894938,60.026063],[5.031062,59.847594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.359,24.734],[-73.478,23.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.5355,38.678],[10.024,38.332]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.982656,53.751188],[5.882,53.699062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-30],[-5,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.169125,66.565125],[-15.774,66.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.074,33.288],[27.8835,33.199]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.32,55.056],[1.58,55.503]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.469,39.950625],[5.246187,40.040219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.8495,41.5255],[2.637,41.389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.542,-45.73],[-60.903,-42.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.944,40.166],[14.043023,40.375594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.843,35.642],[34.682,35.671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.927,-43.896],[-55.99,-44.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.445375,44.310875],[14.39825,44.21375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.643,58.368],[-165.59,56.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.3325,26.57925],[-73.178,26.561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.080938,49.982313],[0.951906,50.026156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.874273,50.62893],[0.967812,50.461156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.46,-11.935],[127,-13.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.937,50.5525],[-5.092875,50.8015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.026938,62.43725],[5.91425,62.432375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.99,66.584],[-21.159,66.737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.22367,42.828633],[15.99325,42.63725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.211375,54.429625],[-5.135187,54.614219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.605,54.465],[10.893,54.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.460469,39.418156],[1.6795,39.3255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.744,38.088],[8.064,38.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.678,-10.427],[105.545,-9.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.87375,39.907],[13.944,40.166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.498,58.0105],[19.56275,58.10175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.0345,56.705],[16.807,56.313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.960125,48.668156],[-4.859375,48.492125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.055,40.295],[-68.904,40.413]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-20],[-15,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.36875,49.81375],[-1.482875,49.87325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.997,55.60775],[18.903,55.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.57025,39.951344],[24.405625,39.9515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.697,56.8975],[20.814687,56.695625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.973,36.005],[22.302,36.021]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1955,59.6395],[3.805,59.448],[3.635,59.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.3815,55.2525],[13.618891,55.258641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.279688,59.704375],[22.184,59.674]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.426,55.215],[13.2825,55.17125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.095,56.24],[4.209,56.274]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.693,58.474],[-1.589,58.6165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,30],[-177.48,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.457,41.7075],[10.336469,41.665875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.204,42.159],[131.816,41.969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.998,-35.024],[-15.384,-35.018]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.09725,40.44025],[8.015125,40.298375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.059,27.349],[-94.568,26.163]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.0345,56.705],[17.0185,56.57525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.909016,52.970562],[-5.8465,52.78125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.3335,38.78825],[26.344,38.667]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.5,37.4],[7.759,37.5805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.703,-18.3575],[178.99,-13.906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.616375,36.217125],[27.70075,36.381625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.492125,35.21],[23.503,35.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.309875,54.976125],[15.428125,54.877531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.1,-37.7],[151.5,-34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.312875,61.169125],[19.264,61.0215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.907094,58.345531],[10.824063,58.20675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.676813,54.235062],[6.899,54.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.7835,49.326],[-3.87575,49.202375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.46925,51.608875],[1.624,51.536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.2985,49.6765],[-5.491375,49.795438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.938859,57.578352],[11.01575,57.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.682,29.092],[32.829,29.073]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.483,53.256],[8.527375,53.519125],[8.42125,53.672031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.085,36.059],[16.727,36.087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.6925,36.747],[18.352,37.207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.96625,40.99175],[10.769813,40.779313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.642477,55.288227],[12.488875,55.328594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.3105,28.157],[-85.766,27.976]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.614,51.582],[-7.54375,51.34625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.05325,37.9965],[-8.911703,37.915875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.6205,38.1095],[25.596625,38.007312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.06375,39.069203],[9.031281,38.956594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.03075,44.0175],[12.908,44.0985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.8835,57.739656],[22.379,57.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.667,38.215],[-70.526,37.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,20.001],[126.822,19.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.888,-45.403],[-110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.714125,59.0385],[21.54525,59.088219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.47375,58.609],[-1.3675,58.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.584,35.165],[-8.921,34.708]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.834,34.152],[-8.20725,34.602375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.48,33.946],[28.976,33.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.857,-35.011],[124,-34.1],[126.1,-32.6],[129.1,-32.1],[131.157,-32.824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.3445,34.844],[139.146,34.603],[137.288,34.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.056,54.4755],[13.04675,54.646]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.541125,56.63725],[7.570156,56.535844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.621906,58.036484],[6.560937,57.934938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.086,57.245],[19.411875,57.094813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.191,55.453],[4.136,55.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.179469,53.560531],[-0.2,53.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.672,66.076062],[12.541,66.0095],[12.311,65.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,-5.057],[-133.851,-3.899]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.291312,50.692563],[-0.191719,50.766719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.884687,42.735141],[18.049031,42.630125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.231625,54.403687],[-0.461063,54.628125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.550375,57.671125],[19.68825,57.74475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.868,0.015],[0,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[63.382,-43.612],[66.651,-43.751]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.242,26],[-96.99,26.0255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.243562,36.1335],[25.041844,36.399219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.622445,-10.108843],[43.371,-11.979]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.508516,36.843312],[25.465227,36.639328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,39.341],[-60.503,39.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.369,57.70275],[-1.366,57.581]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.929,67.013],[41.598,67.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17,32],[15.463,32.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.667,-20.1995],[114.5,-20.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.87425,63.90875],[-23.5,64.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.360312,38.260813],[25.431312,38.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.713,26.461],[50.5,26.5],[49.519,27.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.674,61.688],[-5.106,61.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.69575,61.374875],[20.778625,61.193875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.114562,53.977125],[-6.169062,53.733187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.594,50.157],[156.90225,50.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.07825,41.38225],[-71.004,41.454],[-70.741,41.596]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.59425,36.52275],[21.728,36.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.843063,41.006312],[2.938875,41.14975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.799,28.196],[-69.862,28.766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.789,-13.552],[170.0035,-9.993]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.1015,57.56575],[-4.212,57.506]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.472,42.4145],[3.446,42.276]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.077,3.886],[-78,3.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.307,12.958],[-103.665,13.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.355625,38.634625],[20.28425,38.16775]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-104.946,74.319],[-111.296,74.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.3755,55.04625],[8.213156,54.943031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.4385,40.012],[-139.833,40.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.13,11.145],[-61.268875,11.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.129969,40.136344],[13.34825,39.93975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,10],[-26.85,12.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.94375,53.539875],[1.2695,53.2485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.460153,56.16288],[12.305188,56.185594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.181625,54.881],[18.480375,54.814172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.519,43.924],[14.386258,43.984094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.178,26.561],[-72.396,26.7005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.179625,33.617],[31.371,33.836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.999016,51.063203],[-5.941,51.1665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4,4],[-7.518625,3.509375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.056938,56.292625],[16.82525,56.18975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.057,33.215],[130.094,34.304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.254,20.27],[-33.854,24.086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.84,14.317],[-137.254,12.874]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55,35.386],[-55.869,34.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.069,35.92],[-7.262,35.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.620699,58.013418],[18.4595,57.8915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.469,42.281],[-10.822,41.979]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,0],[131.4,-3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.538,40.251],[-73.78075,40.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.4305,36.4035],[15.2715,36.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.064625,59.397875],[23.265313,59.50125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.776875,49.154],[-2.78125,49.274687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,-50],[150,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175,15.17],[-172.369,12.705],[-170,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.03825,48.98025],[-5.06025,48.81825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.488875,55.328594],[12.58675,55.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.924937,40.236312],[11.808,40.437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.973,44.937],[-7.581,44.649]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.441516,51.824656],[1.4545,51.7085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.09625,37.6275],[0.057,37.5065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.449,-6.502],[-10,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.675,54.6525],[5.666,54.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.7535,49.327],[-5.681625,49.108625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.193945,36.375039],[23.367672,36.441352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.564031,55.702922],[10.47,55.6645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.55675,37.588125],[10.347812,37.55925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.544,65.808],[-14,65.9755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.448,37.497],[2.236,37.491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.225,29.837],[122.366,30.149]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.331375,43.614375],[14.468312,43.437344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75,-15.17],[70,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.10875,49.89325],[-2.988812,49.803875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.035,52.40575],[2.890125,52.232375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.830828,51.997047],[3.673344,52.042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.887,24.089],[57.1,25.5],[56.731,25.975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.316,40.773],[12.51175,40.59175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.54525,59.088219],[21.46975,58.725672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.073,-18.34],[168.527,-18.019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.941,64.554],[9.815,64.391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.67125,38.844],[13.74725,39.38525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.417075,18.877696],[-77.731721,18.92657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.670625,44.65625],[-8.846,44.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.423,40.50975],[2.305813,40.422359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,30],[159.998,34.382]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.616687,49.755812],[-6.17575,49.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.798031,37.177859],[25.620797,37.164937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.289,-5.055],[125.23,-4.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.172969,35.561266],[25.361,35.556]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.102,57.536],[-20.002,57.344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.10725,53.48225],[-4.220406,53.539359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.238844,36.939406],[26.041,37.040719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[102.893,1.498],[101.974,2.023],[101.149,2.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.609,57.284],[-1.521,57.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.73775,52.553125],[-9.846,52.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.592,-11.504],[150,-12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.843,31.985],[-76.42,31.518]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.86425,36.047],[14.163,35.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.333,38.83],[-72.510625,38.706875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.368625,50.495],[-2.4195,50.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.454422,52.444984],[4.267687,52.380437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.450672,36.049],[27.3545,36.1685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.2735,58.9055],[5.250344,58.687391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.011,41.602594],[12.145,41.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.922,-9.526],[131.8,-10.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-8.282],[-117.177,-7.228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.813418,37.781859],[25.780949,37.976156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.208,31.821],[-74.749,31.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.42,31.518],[-75.318,30.302]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.643766,62.349859],[17.731125,62.23775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.913,-5.002],[129.665,-5.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.301,11.6],[54.665,8.897],[56.17,6.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.337,57.826],[-1.369,57.70275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,16.669],[147.933,15.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.123,16.035],[135,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.765,56.462],[6.589875,56.393375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.612,59.135],[-166.588,57.605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.131,36.041],[-9.163937,36.269188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.274,17.057],[-67.079,16.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.46925,51.608875],[1.424238,51.448891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.832125,37.323375],[-10.57275,37.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.198,33.395],[17.44,33.877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.678437,41.862938],[8.689344,41.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.05525,37.15075],[3.544,37.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.501,66.334],[-14.426,66.426]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.405719,35.342953],[26.382,35.234],[26.3455,34.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.481,68.626],[-19.24,70.804]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.697344,36.851469],[23.539695,36.797211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.865,-20.053],[-122.039,-22.0965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.048,20.787],[-67.189,19.819]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.25175,38.560375],[10.2875,38.2405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.067937,41.153672],[11.073563,41.45425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.623188,38.008844],[24.56984,37.861602]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.77925,54.7095],[19.551312,54.743437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.423,40.50975],[2.44575,40.680125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.635563,54.569938],[-8.77625,54.59675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.061625,57.933375],[9.155938,58.25475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.557,55.55875],[10.564031,55.702922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.62,47.1905],[-2.867719,47.237125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1335,52.85625],[4.118875,52.629625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.9,37.7],[-122.643,37.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.999,-15.929],[-160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-50],[5.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.739125,-14.418875],[-170.597,-14.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.033,36.387],[15.4305,36.4035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.553187,39.416438],[2.76175,39.108]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.089062,37.707969],[24.051451,37.548637]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.73575,55.82675],[14.575281,55.729094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.70175,41.1815],[-8.804,41.061]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.892,38.214],[12.756689,38.228457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.44175,55.905875],[17.113,55.831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.8445,-14.548],[176.9,-18.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.289094,57.821469],[18.362625,57.921062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.6,3],[105.713,4.885],[106.469,5.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.127625,57.972062],[5.923063,57.919531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.4935,53.823],[8.42125,53.672031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.0455,-10.924],[127.357,-8.821],[127.45,-8.317]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.810187,59.548],[24.193,59.714188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.107781,52.790656],[-5.284,52.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.663,42.937],[15.93775,43.027563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.261875,43.049625],[5.16,42.968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.780344,55.927063],[14.946219,55.885438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.118,39.813],[-71.031,39.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.089,33.786],[-69.517,33.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.574,-32.005],[-49.913,-32.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.725062,59.536187],[19.604,59.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.20975,35.32325],[28.35425,35.3735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.895,40.2935],[-69.121,39.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.502,55.201],[18.499625,55.4135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.7395,58.6435],[-6.0265,58.6295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.680375,42.874688],[9.643016,42.992141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.882,73.669],[139.277,73.124],[149.71,72.881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.465,42.635],[34.964,42.709],[34.5425,42.7585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.908,54.456],[-165.066,54.468]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.75175,38.451],[8.978375,38.415469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.420875,54.87],[14.375625,54.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.0455,-10.924],[129.494,-10.629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.022,42.282],[4.813,42.188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.165,57.613],[-0.826,57.239]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.70875,55.473],[5.579,55.491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.6235,40.48025],[10.471,40.313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.702,57.448],[-135.473,57.595],[-135.711,57.347],[-135.547,57.075],[-135.837,56.741]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.20925,58.237813],[10.1325,58.114875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.576812,56.035563],[15.60525,56.14575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.048,39.776],[10.908,40.098],[10.8035,40.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.921375,55.959125],[-1.9545,56.176]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,30],[157.015,33.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.005,28.711],[-78.818,28.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.373,-10.184],[142.756,-10.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.491938,40.297187],[-71.031,39.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.881813,56.794063],[-1.722,56.369]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.2415,37.6335],[7.3305,37.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.258625,56.124625],[14.918719,56.112078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.001,28.033],[-140.915,28.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.3275,60.784],[21.151,60.705688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.645,-20.037],[-6.153,-17.264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.391,21.312],[-84.971,21.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.029,48.807],[-7.159,48.819]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.663125,60.19175],[4.487125,60.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.188875,40.913562],[12.179,41.12775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.944,70.224],[31.0985,70.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.21475,60.0645],[26.346,60.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.933187,40.113875],[18.835344,40.158781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.318219,37.858234],[26.1395,38.17925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.682125,-17.353625],[-155.332,-24.658]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.06025,48.81825],[-4.960125,48.668156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.6915,65.0555],[21.98675,65.00225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.695875,38.392375],[23.795313,38.350875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165,35.386],[166.316,36.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.809,51.62975],[2.998203,51.880914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.926687,42.302437],[-9.074,42.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.798,-55.936],[-64.181,-55.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.753,38.1865],[13.813875,38.304375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[99.9,-1.4],[96.716,-4.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[92.978,10.139],[91.173,9.696]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.786,38.898],[26.881,38.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.022125,58.040625],[20.010844,57.876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.429,59.173],[2.3475,58.942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.227922,54.829687],[8.686,54.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,10],[141.388,10.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.341961,39.129945],[25.39425,38.94475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.0015,69.006625],[15.246,69.0305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.728,60.862],[0.165687,60.515812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.359938,37.590219],[11.565,37.376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50],[-16.723,50.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.153625,53.091875],[1.0795,53.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.356,37.564],[12.341563,37.663094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.116,33.95],[35.497,33.9235],[35.2,34.199]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.813,38.502],[-10.8545,38.676]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.79199,40.292594],[11.8045,40.2845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.522313,43.238125],[14.655,43.319375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33,35.8],[31.639,36.413]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.799,28.196],[-69.416,27.233]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.003281,58.918906],[10.028375,58.819312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.89,-14.506],[-180,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.059,37.67175],[-11.49925,38.24975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-7.344],[70,-9.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.031625,44.250141],[9.004,44.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.451,34.839],[-50.002,35.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.74625,50.163313],[-3.869531,50.101469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.352844,36.565609],[-6.283,36.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.389375,58.667938],[-2.493,58.7145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.676605,36.988188],[13.418625,36.985625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.80325,58.08],[6.845844,57.967062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.0385,36.08175],[33.713,35.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.666,48.686],[-2.293,48.697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10,-50],[0,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.634,53.057],[4.494438,53.131156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.513,39.7925],[0.753,39.594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.348,49.687],[-20,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,3.289],[60,4.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.7,46.8],[-52.5,47.7],[-52.5,49.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.788375,43.8085],[9.802719,43.645828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.781,-0.212],[-42.582,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.513,60.358],[19.505,60.091]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36,-24],[41.7,-15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36,-24],[36,-20],[41.7,-15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.928875,36.426625],[14.706484,36.403008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.422125,51.954],[-5.56875,51.8795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.349,48.593],[-6.424,48.494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.749,53.933],[3.91975,53.831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.0135,55.25525],[16.160484,55.483516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,30],[-174.279,34.652]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.012125,43.311875],[15.867625,43.353875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.148,35.97375],[26.242,36.130625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.547,35.927],[-13.244,35.928]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.833,60.855],[1.901,60.737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43,-26],[40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5,-35.386],[-5.389,-35.013]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.307,12.958],[-105.5,18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.158125,61.129375],[18.449,61.129562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.802,48.027],[-6.697,48.078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.19,38.436],[120.886,38.627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.185,-53.755],[-63.103,-53.008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.574336,37.448672],[23.73993,37.28957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.318,41.932],[-16.177,41.207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.836,-22.385],[111.66,-22.217]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.587,43.542],[-10.055594,43.343344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.921047,55.630969],[10.803432,55.565219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.224,63.021],[-18.544,63.291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.324,-11.39],[-12.528,-10.019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.34,28.538],[-60.224,29.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.315,58.938],[19.227,58.8255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.14775,58.519188],[11.066281,58.405984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.878,56.763],[6.6375,57.03375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.822,25.023],[128.3,24.9995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.73575,55.82675],[14.818531,55.748875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.996438,52.000344],[3.830828,51.997047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.822,-16.967],[-12.089,-20.029]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.98525,-10.1215],[160,-10.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.796552,53.753253],[4.69025,53.571062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.841437,36.615871],[26.72025,36.530187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.510625,38.706875],[-72.534,37.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.758,-35.162],[-44.991,-35.378]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.255437,39.833188],[25.181562,39.72475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.377,53.038],[2.496,53.083],[2.6455,53.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.045477,58.70118],[10.096687,58.556562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.423719,50.409594],[-1.633469,50.502023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.832,56.341],[19.389406,56.289125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.886,43.994],[33,43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.991375,38.028625],[26.104125,37.996625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.001,-32.435],[2.577,-32.802]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.211875,49.594375],[-3.279844,49.687828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-40],[75,-40.107],[70,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.14275,38.0085],[11.203,37.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.896,58.523],[4.6735,58.321]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.0035,35.914],[24.203875,35.832875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.251,-26.294],[-39.817,-26.511]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.7,65.318],[24.13,65.412]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.99725,36.06675],[-74.905,36.274]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.706484,36.403008],[14.635687,36.517281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.926,43.638],[-5.464,43.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.685,57.833],[0.816,57.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.574,40.098],[-50.587,40.588]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.613625,58.325875],[8.756016,58.328711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.706809,57.743219],[10.806719,57.722094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.778625,61.193875],[21.127313,61.156312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.447,58.239],[-2.3145,58.13725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.162,-14.028],[174.13,-13.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40,-40],[32.766,-37.447]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.94991,55.082172],[7.919,54.957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.036375,53.953719],[-3.171094,53.926219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.636656,37.207937],[26.497473,37.191895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.969938,55.804187],[-1.825875,55.820125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.53575,37.455],[-9.526,37.298]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.175812,54.2445],[11.186016,54.361187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.04475,43.060625],[9.218438,43.126688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.956,7.141],[-80,7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.187687,42.506812],[17.056781,42.458625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.744,61.1695],[18.868203,60.951344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.342,39.60025],[18.1965,39.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.720328,55.036125],[-5.645406,54.935109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.28,53.38725],[-3.627719,53.392437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.394,38.753],[3.169,37.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.897875,70.72],[20.797,71.151625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.1065,21.0735],[-73.86075,20.976375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.79575,50.55075],[-0.756875,50.435437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.887,64.057],[-14.29475,64.38125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.04525,42.33075],[15.176,42.329]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.116,33.526],[15.2,33.026]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.516,41.219],[5.57375,41.32575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.637625,58.2825],[9.6585,58.153]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.084,25.484],[-74.574,21.858]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.097,20.352],[-89.8,22.1]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[113.894,75.247],[114.167,75.99],[114.241,76.783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.948094,60.237562],[22.148625,60.188094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.22,50.038],[-16.134,49.872]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.360312,38.260813],[25.364375,38.108953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.619375,43.835906],[-8.4805,43.931]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.406781,38.693469],[0.3085,38.6065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.92725,37.891],[11.7995,37.939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.593281,50.174094],[-4.715641,50.09257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.687,35.751],[-8.7725,35.911]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.217,37],[-70.3745,37.14625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.734,-20.2],[159.749,-19.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.291,42.442],[-130.001,41.408]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.29,27.3],[123.195,27.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0755,40.187],[8.21,40.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.934,19.531],[-66.776,19.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.796375,58.65925],[9.6905,58.6615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.082891,38.777516],[14.923,38.818875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.425,65.418],[-23.8545,65.1155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.899031,59.475344],[19.747,59.344625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.689,24.657],[-15.384313,28.145375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.7445,62.01],[20.920625,61.952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.54,36.18225],[14.655,36.21975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.239,25.047],[-58.676,23.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.538,30.4665],[-71.59975,30.13275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.781813,56.536],[7.805,56.413]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.456,26.456],[53.9805,26.373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.945,-44.212],[0,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.865,65.313],[4.889,65.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.0695,33.191],[137.288,34.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.335125,52.962187],[3.175125,52.7395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.893,47.672],[-5.8175,47.8135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.110125,42.131375],[17.158,42.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.775875,45.926],[-7.871,45.518],[-7.671,45.218]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.469,36.894],[-1.672187,36.804]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.83,-33.447],[-145.346,-33.164],[-141.995,-32.169]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.762875,36.295375],[25.625422,36.369031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.0385,36.08175],[34.404,35.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.033,42.2205],[-9.83,42.684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,50],[-149.889,51.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.4595,57.8915],[18.362625,57.921062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.002094,43.844172],[8.079,43.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.5075,46.1365],[-4.839,46.673]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,0],[145,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.593312,68.221625],[14.375,67.894]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.608,47.655],[-143.741,46.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.4625,1.6555],[104.6,3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.104125,37.996625],[26.1395,38.17925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-40],[73.589,-43.829]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.528125,56.24425],[-2.714,56.1705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.943109,54.001172],[10.8575,54.084],[11.043125,54.133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.794,15.93],[-159.309,16.029]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.528313,41.390375],[12.292,41.483]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.676,-22.281],[177.105,-20.708]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.368,33.15],[-20.001,33.408]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.786,55.14],[10.83575,55.258875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,25.337],[119.421,24.718],[118.4495,24.3335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.753,34.081],[-137.778,32.416]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.192063,54.184531],[7.39025,54.168062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.375625,54.6225],[14.671,54.721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.913,41.987625],[10.069187,41.938125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.0665,48.661],[-2.23575,48.702375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.817594,37.051125],[25.798031,37.177859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.192,59.395625],[21.95,59.279125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.05025,57.465],[18.075875,57.366438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.002,34.891],[-20.001,33.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.9565,40.45625],[-8.9985,40.68925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.305125,39.391562],[0.4265,39.3425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.082,42.463],[8.304,42.583]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.205,65.525],[11.782,65.097],[11.28,64.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.996438,52.000344],[4.1335,52.053062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.753,22.456],[120,22.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.282656,55.106125],[15.36025,55.290125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.536,59.001],[19.37,58.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.77375,48.609],[-4.7145,48.721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.74,-31.323],[-49.574,-32.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.779438,38.804688],[24.911,38.809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.8185,67.727],[13.44,67.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.267687,52.380437],[4.2605,52.213375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.637,41.389],[2.53875,41.25775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.894,45.215],[-3.197,45.616]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,-25.277],[-124.857,-25.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.06,59.17],[23.0855,58.9995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.995,28.773],[-58.729,28.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.5045,56.395],[-7.295,56.688],[-7.1965,56.750875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.8735,7.208],[-81.4,6.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.376562,41.400156],[16.3005,41.716375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.377,40.948],[1.67475,40.81775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.049,50.703],[-140.852,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.466039,55.658266],[-1.42525,55.514031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.425,-25.532],[10.33,-26.537]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.903,55.648],[18.963,55.778125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.299,64.1895],[-15.2005,64.2395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.676605,36.988188],[13.592,37.111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.7085,38.8815],[12.615,38.846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.269281,55.231125],[15.36025,55.290125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.8,-29.6],[-74.255,-24.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.706625,54.952625],[-0.648383,54.80768]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.219,26.185],[-91,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.273,38.442],[-13.755,38.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.101,57.998],[-137.513,57.878]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.856094,39.632188],[14.9145,39.9265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.136,27.799],[-94.416,27.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.218,50.912],[-30.001,50.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.028,57.874],[23.766937,57.968063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.599,54.643],[-0.419375,54.467625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.564703,38.197852],[12.536625,38.329625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.376188,43.007688],[8.458,42.82525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.432,33.734],[23.942,33.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.935,42.771],[15.838797,42.578672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.648,-10.092],[162.748,-10.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.001461,43.321117],[10.11375,43.244625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.038885,45.242312],[13.219891,45.249109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.7015,41.465],[11.45575,41.3615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.431375,18.567875],[-75.884049,18.638186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.472125,39.507562],[25.375125,39.399687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.385,46.758],[-9.225,47.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.949,59.174],[-19.994,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.62875,54.51575],[15.654125,54.696687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.6525,35.4995],[12.917,35.611]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.166,21.054],[67,22.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.887,22.079],[-85.97675,21.97175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.8995,55.495625],[15.775625,55.49725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.379,54.449],[5.345,54.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.5775,49.83],[-10.6925,49.914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.306,58.274],[21.362,58.154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.5435,36.8875],[21.456625,36.946]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.31975,53.6265],[0.249,53.8105],[0.01875,54.0905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.338,-35.069],[-160,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.580813,63.26475],[19.7305,63.3545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.9565,40.45625],[-8.88625,40.770875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.017969,51.501],[-4.11725,51.391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.611937,39.130188],[14.797406,39.02825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.207812,40.832594],[13.188,40.58225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.787,-12.916],[-89.999,-14.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.0265,58.6295],[-6.489,58.641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.44025,21.20575],[-74.702,21.902]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.42959,48.744031],[-5.36025,48.551969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,36.4],[130.1345,36.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.782,51.898],[-5.671625,51.894875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.568037,37.037578],[26.497473,37.191895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.632375,43.698],[13.7705,43.336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.236,34.092],[-30.001,33.36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.912,23.8015],[-73.883,25.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.298031,55.545687],[15.144344,55.565469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.713023,42.646078],[16.86825,42.487547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.892469,49.848457],[-2.042078,49.697828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115.441,0],[-111.984,-2.013]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.475,35.387],[24.255281,35.512906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.3585,37.255],[12.87075,37.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.072,34.625],[123.007,33.372]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.532187,36.11375],[29.781,35.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.336,38.2],[1.569,38.308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.832,56.341],[19.858,56.19025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.556,50.69],[-6.5465,50.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.000188,51.699687],[-5.192016,51.640203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.320094,54.841844],[13.172453,54.831187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.429,17.566],[-46.037,18.239]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.331714,42.155052],[28.128,42.440875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.37925,55.527],[19.479,55.499781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.102,57.536],[-23.465,56.984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109,16.1],[112.047,16.953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.844,40.8305],[-10.496,41.112],[-10.0965,42.00925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.404,64.322],[-4.749,64.329]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.883437,49.86675],[-4.954,49.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.76,37.8285],[26.4135,37.912625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85.156,14.422],[82,16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.767188,55.361438],[7.544531,54.906031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.861813,37.206406],[26.913266,37.335828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.4435,71.1135],[26.3,71.268]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.369,57.70275],[-1.18325,57.69425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.358,36.408],[27.292922,36.264656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.357438,57.459688],[-1.18325,57.69425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.153437,49.54475],[-5.30225,49.300625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.4,9.1],[170.957,6.078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.8175,51.854875],[-7.519,51.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.895,37.876],[-71.7925,37.587]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.284,63.632],[21.3855,63.6495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,50],[-33.785,52.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.215,42.3325],[17.468,42.202]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.757,61.6395],[21.071562,61.531188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.036687,49.745063],[-0.125375,49.736375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.999,15.069],[150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.07675,57.820687],[11.105902,57.64757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.99725,36.06675],[-74.831,35.7905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.143,25.8],[-85.213,26.913]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.433,-39.167],[148.3,-38.4],[150.1,-37.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.624,52.588],[-9.73775,52.553125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.788,44.085],[29.74,43.882]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.5485,43.6635],[-8.673,43.537]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-30],[80,-21.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.998,-36.324],[-90,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,30],[-120.609,32.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.382031,43.517719],[9.284562,43.64225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.683,36.538],[-69.9255,36.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-40],[95.112,-45.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.391812,41.269125],[5.904,40.813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.042078,49.697828],[-2.145,49.59075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.722125,65.969375],[-20.569625,65.921875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.3395,57.45825],[7.484187,57.39625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.214375,53.652],[1.37825,53.71425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.583625,50.356625],[-1.633469,50.502023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.3,-8.9],[177.589,-10.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.342,50.1905],[-2.563477,50.067563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.2155,58.5015],[0.738,58.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.813,35.959],[14.93,36.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.6315,40.3185],[0.43575,40.10225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.3,-2.907],[5.423,-3.254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.565875,59.18375],[18.168,58.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.445375,60.297312],[26.298188,60.334375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.527,-35.872],[-110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.6245,29.3],[-94.99575,29.69425],[-95.285,29.747]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.018,57.11475],[6.895,57.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.721,-17.318],[140.6,-16.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[62.292,2.325],[64.733,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.249,55.431],[-23.465,56.984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,4.193],[-37.595,7.643]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.953,-37.275],[45,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.341,44.029],[13.1265,43.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.613,55.70225],[16.764375,55.57025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.559875,38.549625],[14.576,38.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.161438,56.555562],[19.194,56.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.518,52.144],[2.375125,52.03625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.74975,41.790813],[16.8445,41.7405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.214,55.648],[18.997,55.60775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.747,59.344625],[19.555,59.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.822688,38.526875],[-9.697312,38.561875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.8,-5.25],[-31.512,-8.11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.983578,35.662859],[25.701406,35.484406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.087,43.188],[-10.562,43.542]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.533,16.234],[-58.676,14.838]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.753,34.081],[-135,35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.787,-5.049],[125.289,-5.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.203,17.297],[-30,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.880156,57.838547],[-1.842453,57.702484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.258,53.198875],[4.979375,53.474625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.296437,57.999188],[21.529875,57.969375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.235,25.469],[-73.99,25.264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.148875,53.67825],[6.045344,53.659875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.1045,37.404],[-10.901,37.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.168719,58.582125],[5.172625,58.456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.813418,37.781859],[25.75025,37.608086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.943,21.512],[38.855,21.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.713,1.737],[-42.878,2.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.14425,56.12275],[16.080562,55.967969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.002,34.309],[-30.001,33.36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.193,59.714188],[24.0795,59.5895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.723,26.778],[-77.552,26.854]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2105,43.502],[14.111,43.466]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.903,32.416],[-13.056,34.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.778,32.884],[122.18,33.043]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.754891,56.695094],[11.886,56.762438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.401125,38.806063],[2.030938,39.152375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.170828,49.970023],[-0.726344,50.178594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.752359,57.575352],[-1.71725,57.714875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.484063,55.252078],[-5.322094,55.174047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.509125,59.37325],[23.391,59.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.0805,58.149],[-2.97825,57.921625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.685,61.166],[1.002,61.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.97,64.941],[39.595,64.684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12,68],[12.8185,67.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.933309,40.764412],[13.977313,40.664906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.900187,53.406937],[3.252,53.177]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.689,36.3035],[34.0385,36.08175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.0475,39.62],[0.939312,39.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.19,38.436],[122.173,38.322]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178,58],[-173.66,58.868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.8415,42.834],[8.037,42.891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.361,48.38],[-13.148,48.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.519375,54.60625],[15.62875,54.51575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110,-40],[105,-40.107],[100,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.756689,38.228457],[13.039625,38.267437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.978195,50.7655],[-1.106688,50.7695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.016,13.776],[144.8,13.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.411719,38.901266],[8.26625,38.835375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.254,62.208],[20.378,62.176]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.275812,48.1095],[-5.32575,48.0045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.813,26.685],[-91.219,26.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.7,-5.85],[121,-5.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-50],[-89.998,-46.441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.569,57.0855],[-1.664,57.00225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.302,32.694],[14.506,32.769]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.207812,40.832594],[13.3785,40.857062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.574,-10.019],[-103.814,-6.771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.043094,57.403391],[8.166625,57.291313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,30],[-134.794,30.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.432,45.547],[-8.337,45.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.656,37.741],[-25.9265,37.9065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.715641,50.09257],[-4.853578,50.114625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155,35.386],[150.941,39.132]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.143,55.133],[13.01425,55.0485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.578875,49.9645],[-0.726344,50.178594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-5.126],[-137.396,-4.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.97075,51.525688],[3.109625,51.73475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.054,42.858],[-10.055594,43.343344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.023,32.419],[-70.215,32.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.98425,50.81275],[-5.856625,50.363937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.4705,37.3125],[-1.752,36.68025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.509,57.7525],[8.3755,57.552844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.355,48.017],[-10.535,47.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.83625,53.406227],[4.66375,53.405641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.9725,47.2625],[142.927,46.151]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.559766,49.923234],[-3.3885,49.804812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.312,34.962],[147.668,37.848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.781,-5.072],[125.1,-3.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.593312,68.221625],[14.953625,68.253375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.406,26.452],[-75.122,26.213]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.082891,38.777516],[14.915859,38.930516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.36025,55.290125],[15.482688,55.224187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.196,39.618],[2.046,39.553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[86.061,69.459],[85.878,69.211],[86.082,69.048],[85.91,68.812],[86.266,68.649],[86.588,68.241],[86.392,68.024],[86.548,67.888],[86.265,67.675],[86.571,67.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.996125,40.46475],[18.934,40.3385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.735,-5.321],[176.173,-3.8745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-109.833,21.395],[-107.1945,19.33525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.944,56.853],[12.022469,56.730469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.554,56.1665],[6.011,56.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.2455,53.95],[-6.169062,53.733187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.201375,37.474625],[16.06825,37.381]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.9055,24.34],[-73.1405,23.2035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.744563,60.670875],[19.874875,60.618875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.915437,55.128125],[16.042125,55.0455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17,32],[19.372,32.409]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.755,31.203],[29.889,31.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.232891,36.472391],[26.28375,36.7175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.7605,52.923],[-5.607,52.89125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.568,26.163],[-94.242,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.761375,52.509625],[-5.702219,52.418563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.839,53.048],[2.6455,53.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.187,53.5535],[4.965219,53.57975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.4955,55.4355],[-7.771,55.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.219016,43.358938],[10.099937,43.349375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.405,41.51825],[8.701,41.484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.416,34.223],[-67.841,33.589]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.232891,36.472391],[26.074063,36.502156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.244,35.928],[-12.80925,35.90075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.706484,36.403008],[14.655,36.21975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.21,36.323],[-8.5595,36.356]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.19,51.081],[1.305336,50.890065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.49425,60.75125],[4.6325,60.336875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.486156,55.085469],[7.399141,55.309422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.957219,37.721516],[16.423875,37.7135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.575063,56.531188],[11.419773,56.585188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.8,3.7],[109.69,2.769],[109.101,2.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.766063,51.692312],[-7.357,51.803]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.368,7.12],[171.353,7.139],[170.957,6.078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,51.3],[176.09,47.682]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.8925,66.486],[-15.7225,66.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.135,31.387],[126.705,32.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.001,32.278],[-63.143,32.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.74975,41.790813],[16.611359,41.91252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.792,52.314],[-144.049,50.703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.627,-12.174],[-77.699,-12.002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.209812,57.838719],[9.383016,57.757641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.101,2.245],[109.8,3.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.694102,42.070801],[11.396,42.216]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.553187,39.416438],[2.342,39.426],[2.2305,39.437875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.89075,39.952],[17.679,40.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.25,54.702],[19.096688,54.63125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.225875,51.56375],[-8.173,51.354]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.197,51.004],[-5.137,51.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.819,35.526],[-130.002,35.613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.674,19.8],[-68.899,19.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.783,38.66],[7.614,38.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.317813,50.068906],[-4.226,50.123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.411,60.692],[-1.2495,60.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.544,40.582],[-30,40.531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.474625,53.615375],[-5.37,53.617],[-5.186,53.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.958,37.25],[-6.929,37.185],[-6.875125,37.101]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.753531,49.47975],[-3.7835,49.326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.589,-43.829],[75.111,-45.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.506,50.987],[-130,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.396,-32.831],[-39.999,-32.717]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.045344,53.659875],[5.9165,53.6335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.71975,38.425125],[11.5895,38.60175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.01625,41.074],[10.514531,40.822406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.826,57.042],[5.665,56.8305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.718375,41.537062],[9.892188,41.504453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.42,-9.431],[165.557,-5.612]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.863375,54.368875],[-4.014,54.472]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.2715,38.46075],[0.17425,38.0435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.484,45.966],[-2.499,45.798]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.177,53.632],[-3.149953,53.494234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75,-53],[-76.179,-54.832]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.697,42.774],[170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.803,65.126],[24.529,65.182],[24.338,65.145],[24.25425,65.1305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.85,41.633],[-158.468,41.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.78425,39.4815],[13.862,39.634]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.6045,-9.0895],[115.705,-9.1],[116.68,-9.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.6615,57.019],[16.359875,56.628875],[16.334063,56.520812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.103,35.57525],[26.134,35.715875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.0435,43.469406],[10.001461,43.321117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.145109,41.333125],[11.228125,41.423687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.889,-23.186],[54.973,-24.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,50],[-136.903,51.619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.794,30.09],[-138.819,28.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.8,-20.2],[-71,-18.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.301375,37.367719],[25.201125,37.355313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.41275,36.003187],[25.286062,36.011562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.5375,27.85875],[-91.815,27.897]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.718375,41.537062],[9.623188,41.456219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.088035,49.877716],[-4.990125,49.567187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.67,69.532],[54.412,69.697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.722,-8.823],[176.556,-9.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.569,38.349],[-9.50125,38.4285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.85,33.135],[-72.898,32.578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.924937,40.236312],[11.8045,40.2845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.38,-2.7475],[107.3,-1.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.347188,43.719],[15.1745,43.844]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-70.57,-52.962],[-70.7115,-53.442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.07,50.217125],[-0.051,50.198]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.3285,56.291],[-2.528125,56.24425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.861,38.028188],[21.012969,38.074219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.059,53.791],[-152.454,53.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.846406,36.884875],[-7.78925,36.71375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.966625,48.740125],[-4.223,48.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.164813,58.435437],[18.342375,58.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.7005,66.57775],[12.6445,66.2155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.072,34.625],[121.468,34.767]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.58675,55.142],[12.594953,54.939547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.9095,59.5445],[22.752,59.524]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.563,39.062],[3.817,38.9955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.3035,37.0535],[21.456625,36.946]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.165,38.866],[21.138,38.911],[20.998,38.94625],[20.8165,38.95575],[20.671937,38.898688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.676625,59.22],[4.71975,59.117234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.4625,64.7145],[23.6245,64.96375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.550141,42.856656],[10.444109,42.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.1385,55.134],[17.238,55.114]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.54025,39.7745],[18.385406,39.761953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.024188,49.587063],[-4.28825,49.666]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.608875,43.185562],[7.407,43.12975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.438375,36.958625],[12.3555,37.10975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.365844,54.531406],[16.12575,54.61325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.96,12.621],[-100.307,12.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.727,45.163],[29.794,44.961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.7575,43.988],[8.881109,44.035281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.391438,49.57325],[-4.531297,49.444938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.663,58.345],[-5.8,58.24],[-6.0275,58.081]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.709031,36.578938],[23.875875,36.610687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,18.081],[-171.685,18.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.3,71.268],[27.1,71.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.785188,43.467188],[15.643461,43.293953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.27,36.733],[-12.2175,36.945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.558,-20.592],[161.911,-20.733]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.973,36.005],[22.2815,35.6445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.582,41.595],[7.576,41.297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.843063,41.006312],[2.7165,40.9285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.636,36.764],[12.264781,36.874156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.4305,36.4035],[15.213625,36.4225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.868125,35.259625],[27.028,35.256]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.581,44.649],[-7.782,44.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.611359,41.91252],[16.628469,41.767062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,20],[-130,19.557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.907,47.484],[-7.5025,47.67775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.912,23.8015],[-73.891,22.55],[-73.88475,21.62225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.595,44.578],[12.695,44.5645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.551687,48.709125],[-4.77375,48.609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.981,31.108],[-40,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.472,28.476],[-92.4095,28.881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.565151,55.007522],[14.78225,55.00575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.58975,58.35325],[10.506812,58.233125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.185484,36.698141],[14.1195,36.57825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.394,41.263],[19.074,41.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.996125,40.46475],[19.1475,40.1945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.231,18.794],[-64.3405,18.893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.80925,35.90075],[-12.727,36.138]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.37,69.994],[57.55,70.204]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.561,32.171],[-77.021,32.031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.73,-22.113],[10.425,-25.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.276,44.342],[15.225,44.296],[15.16,44.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-30],[-29.999,-33.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.918,-6.021],[53.822,-4.977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.93775,43.027563],[15.890125,43.116125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.197,49.37],[-3.87575,49.202375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.546,-40.032],[173.75,-39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.758,49.544],[-0.281656,49.501211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.337141,55.427813],[15.399875,55.542375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.319777,54.745898],[10.447998,54.726195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.603,44.128],[-8.754,44.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.673,39.0175],[0.588062,39.093312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.16525,42.1755],[4.342,42.089]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.713,1.737],[-41.486,2.063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.292844,41.374625],[12.145,41.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.086,54.184],[-0.419375,54.467625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.66,30.031],[141.104,31.201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.002,34.891],[-18.195,33.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.3895,49.796],[-4.410312,49.677875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.15,63.2],[-23.298,63.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.832344,44.290719],[28.718625,44.313125],[28.707656,44.083062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.2655,-17.0765],[170.0035,-9.993]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.2255,37.161],[25.048098,37.050152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.371625,53.150438],[3.335125,52.962187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.946,47.2],[38.8185,47.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.4905,57.77225],[-1.357438,57.459688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.79,69.716],[15.458,69.941],[15.7565,70.0365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.042078,49.697828],[-2.432,49.604]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.811125,43.367094],[7.043,43.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.8645,39.3795],[23.773,39.334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.194,34.834],[-8.46725,35.31525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.862,20.145],[136.997,20.042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.96,64.13],[-7.028,62.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.301738,38.272168],[13.039625,38.267437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-148.674,60.78],[-146.949,60.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.833563,55.30441],[-5.929,55.508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.425,45.0695],[-8.4755,44.975125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.56,54.273],[-162.094,54.332]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.202,7.664],[-78.054,7.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.450672,36.049],[27.31343,36.005234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.830938,54.952],[19.056625,55.026859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.265,53.752],[3.227,53.724],[3.149,53.666],[3.097,53.605],[3.002,53.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.61775,51.339],[-9.749,51.278]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.942,40.278141],[1.10975,40.393375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.39,43.204],[-64.2,42.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.524,35.949],[-2.33457,36.37425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.434617,39.246836],[25.598969,39.381262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.361,60.937],[19.222,60.9305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.904,54.006],[156.677,50.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.121,32.349],[-71.495,32.083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.627,-20.025],[-30,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.121,41.560625],[11.073563,41.45425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.41275,36.003187],[25.378188,36.126438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.415,24.68],[167.48325,19.464875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.262,11.985],[110.088,11.868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.831,29.681],[-15.322,29.443]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.043,41.272],[3.237,41.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.29,40.215],[5.097625,40.112875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.76475,43.9355],[9.584484,43.894141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.396313,52.1615],[-5.231,52.07975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.7,24.3],[-85.887,22.079]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.9,46.25],[30.949,46.528],[31.861,46.587]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.304,28.389],[-76.03,27.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.9905,38.111],[11.84425,38.17075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.3675,58.603],[-1.24675,58.373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.438094,63.345781],[20.344,63.246],[20.264188,63.044219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,20],[69.166,21.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.46975,58.725672],[21.155563,58.563688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.564,53.5],[3.422,53.2395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.5,8.6],[-79.719,7.899]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.45175,58.21875],[20.34775,58.2245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.7845,57.281],[5.923063,57.919531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.539,33.433],[15.116,33.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.846,44.26],[-8.857,44.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.1745,43.844],[14.999375,43.83025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.448,57.03],[11.490312,57.152625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.744,36.738],[-73.824,36.671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.271,-9.1],[121.528,-9.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.658,26.347],[-75.592,26.129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.24625,57.42375],[19.086,57.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.0395,43.885],[8.975734,43.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.73,0],[150,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.797687,40.844813],[13.064172,40.707727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.445,54.758],[-10.5,54.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18,18.022],[-18,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.834906,43.888906],[8.938125,43.935781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.74975,41.790813],[16.858719,41.863641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.002,34.927],[-130.001,31.339]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.299656,56.545609],[12.155812,56.310563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.3435,41.774687],[11.4615,41.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.603562,56.827281],[18.799563,56.712313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.326438,39.083188],[9.181641,39.024703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.456,26.456],[53.914,26.459]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.54,-34.385],[152.636,-34.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.6925,49.914],[-10.672,49.652]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.49425,53.83175],[6.399,53.978]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.627625,47.370625],[-2.3445,47.160375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.585,56.015],[-1.5405,55.875],[-1.466039,55.658266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.804,42.877],[6.614,42.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.59334,58.182074],[8.738125,58.169813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[145,25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.344367,43.149219],[10.2275,43.113875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.326,25.085],[125.437,22.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.2465,36.04875],[-6.209781,35.9375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.656,13.9785],[-79.929,10.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,51.3],[174.381,50.316]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.405719,35.342953],[26.367,35.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.65375,57.411687],[20.6345,57.294]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.0025,-6.292],[112.651,-6.938],[112.175,-6.279]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,21.289],[-150.001,24.693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.22575,59.944875],[5.08775,59.9665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.103,65.071],[39.5555,65.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.056,54.4755],[12.8565,54.547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-179.469,50.255],[-176.996,50.559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.288,33.041],[-15.859,33.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.257,35.154],[13.73,35.396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.146,53.878],[2.2215,53.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.163,-23.83],[167.652875,-23.02875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.868,0.015],[3.395,1.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.01375,61.01725],[5.0955,61.0835],[5.2085,61.0955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.094,34.304],[129.2,32.9],[128.9,31.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.96,49.5905],[-2.823,49.6955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.527,11.744],[-30,13.366]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.6915,47.801],[-5.8175,47.8135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.723844,58.005],[9.5705,57.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.382,39.691],[1.537,39.659]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.044125,55.693125],[14.946219,55.885438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.192445,36.411152],[22.064375,36.371125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.20975,37.28275],[23.591125,37.244969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.495,69.281],[14.256,69.516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.422,34.519],[33.634,34.448]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.279,-34.435],[-58.387,-34.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.069,8.107],[-105.001,5.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.687,41.243],[-124.181125,38.49725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.41275,41.799],[17.561063,41.506625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.983,36.866],[-7.846406,36.884875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.606,47.657],[-4.705,47.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.808,39.015],[-73.028,39.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.434,32.566],[-18.802,29.691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.641,36.829],[30.837,36.586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.7,-15],[43,-12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.994469,42.64625],[17.094,42.8075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12,-9],[8.614,-12.263]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.992875,54.742188],[18.925219,54.655281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.8755,21.836],[-85.79,21.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.478563,51.326],[1.640156,51.30475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.205,43.603],[8.41625,43.609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.454,60.7385],[3.277,60.642]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.318219,37.858234],[26.254,38.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.603,38.131],[-123.96925,38.28475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.649125,36.286375],[15.539,36.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.251,54.098],[-6.162,54.054],[-6.114562,53.977125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.0685,54.0015],[3.749,53.933]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.057,43.264],[3.732125,43.37075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.78725,40.66125],[-8.88625,40.770875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.958,48.379],[-6.779,48.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.608156,55.73575],[15.483469,55.693687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.811312,43.297313],[8.679906,43.340594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.866,40.569],[-8.9565,40.45625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.240258,36.166695],[27.292922,36.264656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.529875,57.969375],[21.6055,57.881],[21.751,57.747],[21.91875,57.678]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.846875,38.019562],[24.724312,38.045328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.478,19.888],[-66.29,19.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.042334,56.518523],[10.81,56.804937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.2575,39.2385],[1.361,39.307]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.953946,55.845714],[10.958,55.849]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.74775,60.29725],[29.013,60.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.343,48.141],[-4.47375,48.13525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.0095,63.7755],[-22.7565,63.839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.79875,36.8085],[12.564125,36.8805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.573383,37.237562],[24.54525,37.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.502,57.752],[-162.092,56.731]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.607,37.6575],[20.78275,37.4845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.538,20.533],[-92.325,21.041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.8,3.7],[109.934,7.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.584,-18.62],[153.016,-18.491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.293062,58.015375],[6.4905,57.8555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.3495,34.09],[-15.3895,34.2655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.813,43.15775],[6.42275,43.077]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.3135,33.346],[-77.032,33.711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.399,44.722],[36.4,45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.748455,37.943438],[20.483156,38.049844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.488,46.876],[-6.9525,47.60375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.647,36.111],[14.874,36.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.248,40.4505],[3.0765,40.52625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.841,-37.507],[112.97,-34.641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.2565,45.7295],[-8.176,45.849],[-8.10475,45.9665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.844188,41.195719],[12.376188,41.221563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.6255,58.0665],[4.789,58.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.4755,44.975125],[-8.3475,45.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.92725,54.964],[17.1185,55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.553,35.006],[-50.002,34.829]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.126625,59.117875],[4.997,59.115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.120812,38.87675],[24.8155,39.07775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.7655,55.59375],[6.7225,55.4545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.55,36.49975],[-2.596719,36.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.766313,54.523844],[18.925219,54.655281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.177,34.526],[124.319,33.892]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.952,36.419],[-3.15749,36.356752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.691,26.184],[-91,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.616,36.403],[28.110809,36.492992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.562156,44.333625],[14.445375,44.310875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.830828,51.997047],[3.6775,51.7775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.7,56.2],[142.146,55.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.416,28.907],[-93.862,28.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.6,-6.3],[122.802,-6.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.359,61.723],[4.175,61.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.931188,57.114],[18.603562,56.827281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.09,47.682],[176.939,46.372],[177.958,44.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.389406,56.289125],[19.248,56.435],[19.161438,56.555562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.881344,40.604789],[13.707706,40.727291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.28,5.941],[-46.847,10.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.086688,47.818812],[-4.248188,47.74675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.142,32.541],[33.904,33.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.254,38.137],[26.4135,37.912625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.719,7.899],[-79.202,7.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.965,44.356],[-8.999,44.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.3,-11],[122.362,-11.439]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.819,8.365],[70,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.426,-54.622],[-62.539,-54.669]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.151,42.934],[-10.109,43.026]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.713,52.9865],[4.634,53.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.924734,50.048328],[-2.860348,49.971363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.91975,44.3725],[12.69525,44.439875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,9.752],[-78.032,9.538],[-77.076,8.615],[-75.729,10.891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[79.62,6.141],[79.567,5.951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.680563,56.1585],[11.385,56.071]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.6095,38.57],[10.392,38.658]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.5805,35.0075],[30.8295,35.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.268,-31.379],[-115,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.863,58.896],[-155.409,57.277],[-156.747,55.941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.985047,56.042883],[11.0505,56.215063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.928812,59.969875],[26.21475,60.0645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.067,59.416],[3.181,59.334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.768125,36.398812],[26.579297,36.488062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.5455,38.8035],[13.74725,39.38525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.456,49.7165],[-0.618375,49.669375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.5585,42.6005],[5.558875,42.49275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.996,38.283],[14.10575,38.21125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.519,43.924],[14.537562,43.803438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.566,60.251],[20.28,60.15775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.824063,58.20675],[10.709203,58.213766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.01125,40.086],[14.0395,40.2235],[14.043023,40.375594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.564,56.853],[20.61725,57.082688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.0965,42.00925],[-10.033,42.2205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.714336,57.812898],[9.90075,57.728063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.450672,36.049],[27.666,36.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.83,38.63725],[15.691,38.583625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.036,22.082],[-35,25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.3565,39.8545],[0.437,39.925],[0.566,40.011],[0.625,40.051125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.638,21.629],[136.862,20.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.8175,47.8135],[-5.778,47.647]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.605922,54.988219],[11.5035,55.045875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.914398,39.395555],[24.78375,39.332875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.1145,59.968],[25.304,59.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.8,-20.2],[-74.255,-24.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.52175,38.380344],[15.669117,38.353867]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.638875,42.48],[16.522625,42.642375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-106.834,-3.208],[-105.37,-2.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.1235,36.56425],[-9.188875,36.739812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.0755,12.525],[-69.98425,12.99075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-117.107,17.249],[-115,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.76,10.016],[-140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-40],[95,-40.107],[100,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85,-35.386],[-88.17,-38.311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.575,40.65925],[1.48725,40.60825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.383016,57.757641],[9.194125,57.71575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.7515,22.1825],[-92.744,22.308],[-91.835,24.234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.461,70.0155],[31.366,70.3685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.36775,37.50575],[16.52325,37.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.743,66.855],[-20.819,66.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.935,51.527],[-4.749937,51.477312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.486836,53.93818],[-5.427,54.163]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.018937,62.395094],[20.157,62.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.325,36.009],[166.316,36.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.120647,35.925677],[-7.262,35.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55,45],[-54,46.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.561063,41.506625],[17.391,41.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.405563,62.363109],[17.36875,62.47],[17.4785,62.475625],[17.643766,62.349859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.357,51.179],[2.135187,51.086938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.22367,42.828633],[16.112625,42.917938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.3565,48.98475],[-2.4475,49.17025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.9955,37.929],[-30.001,36.448]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.641375,58.169719],[5.438,58.115],[5.185,58.0405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.695,21.942],[-85.8755,21.836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.612,28.689],[-130,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.376,15.466],[-155.203,14.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.297406,56.292187],[7.383313,55.997875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.928,18.4805],[-67.825,18.513]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.6395,38.879],[22.839688,38.824313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.249,51.8],[154.489,54.771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.709,40.289],[10.417,40.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.877,0.889],[-30,2.733]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.8985,36.70325],[-8.8,36.722],[-8.556375,36.747]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.114,34.748],[25.333,34.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.77825,66.22925],[-18.620094,66.146922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.105,37.214],[2.651,37.131]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.286062,36.011562],[24.964,35.8595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.01325,54.81875],[15.055813,54.9415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9265,57.008],[-1.881813,56.794063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.392781,37.305688],[11.159,37.4445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.3,37.9],[129.5315,38.021]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.59675,-34.271125],[17.343,-34.178]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.81575,57.98175],[-1.9585,57.96775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.209,55.466],[-14.038,56.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.586,38.761],[18.667,39.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.53,50.548],[-20,50.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.134,36.717],[-11.342,36.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.217,64.99575],[25.119,65.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.136688,39.241187],[10.1695,39.107]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.289313,39.073],[23.372,39.20225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.79,-33.033],[-37.396,-32.831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.865,46.9165],[-2.994,47.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.369875,40.806375],[3.665,40.72475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.66,40.19],[3.599,40.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.686,61.095],[-2.861,61.219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.703,16.063],[39.899,15.922],[39.551,15.656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.417625,56.110875],[18.959125,56.402125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.227,53.953],[-4.296,53.81425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.475062,42.2835],[7.644594,42.228906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.3555,37.10975],[12.083938,37.123469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.648805,38.133055],[24.623188,38.008844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.8035,40.3525],[10.7895,40.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.109625,51.73475],[3.19,51.91775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.50575,41.53925],[9.718375,41.537062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.4665,43.5815],[-9.640875,43.356125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.90825,40.885],[2.0035,40.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.6915,40.9335],[28.593,40.893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.564,-51.944],[-75.196,-52.636]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.44975,55.49825],[16.336,55.514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.5,5],[3.087,4.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.857,0.723],[-90.396,1.31],[-92.511,2.548]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.398,38.887],[11.02525,38.69325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.1845,40.39125],[-9.206,40.366],[-9.261,40.274],[-9.36,40.09925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55,-35.386],[60,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.113,45.402],[-154.651,44.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.002,43.617],[-45.319,45.217]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.05525,65.543],[-21.081,65.757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.378,66.123],[32.988,66.807]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.5785,45.7045],[-2.106,45.719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.022,37.366],[-6.02,37.337],[-6.35,36.823],[-6.46675,36.75575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.61625,37.5905],[7.759,37.5805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.624,37.788875],[26.4135,37.912625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,10],[69.6745,8.6815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[148.248,14.532],[147.933,15.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.519,51.844],[-7.03975,51.93075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.666,54.888],[14.5405,54.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.387,61.0135],[17.53475,61.186359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.622,61.109],[3.356,61.017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.926687,42.302437],[-8.835625,42.21625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.713875,49.333188],[-4.8655,49.4095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.562094,55.989156],[7.524188,55.865313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.5265,57.7595],[6.437125,57.663875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.7995,37.939],[11.695688,37.982687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.558625,60.958],[19.311906,60.771219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.7685,-18.776],[173.284,-20.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.919719,60.131031],[19.08075,59.86525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.40025,51.67625],[4.65,51.717]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.32575,38.696],[-28.21,38.679],[-28.3005,38.593]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.299922,42.778953],[17.232875,42.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.62575,49.34825],[-5.664375,49.23075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.74275,38.1785],[22.631336,38.342301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.959125,56.402125],[19.057125,56.24225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.001,36.448],[-33.977,36.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,6.324],[72.273,5.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.606,-35.007],[4.106,-34.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.295719,37.563],[26.396453,37.483766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.048891,56.557531],[17.768812,56.5435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.56425,38.18125],[6.765,37.973]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.07,27.349],[-74.057,27.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.5865,-16.4795],[146.882,-16.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.1295,38.545],[9.289,38.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.405625,39.9515],[24.199188,39.952063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.494438,53.131156],[4.50025,52.78525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.136,51.934],[-54,52.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.153,-20.617],[116.555,-19.077]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.140875,56.603187],[18.702,56.451]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.5235,50.0915],[-5.50625,49.928562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.259,15.65825],[-72.043,15.592]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,30.806],[-40.574,30.624]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.0495,50.13675],[1.020375,50.358375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.3525,26.02325],[-76.238,25.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.31,40.6845],[18.181063,40.69975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.781688,36.602187],[-3.49425,36.581375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-3.168],[-110,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.539281,40.203156],[14.43725,40.338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.28632,39.449203],[-0.06,39.183],[0.11825,38.9955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.930719,57.919812],[7.863875,57.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.03075,44.0175],[13.231,44.084]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.619062,-14.248125],[-168.3335,-11.7495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.223,-8.801],[-160,-8.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.54025,39.7745],[18.812375,40.032813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.392,4.97825],[45.759,1.647]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.943531,50.01925],[-2.005125,50.132875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.905,36.274],[-74.491,37.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.4,60],[21.193,59.9485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.1805,40.038],[25.039188,40.063938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.202,10.417],[110.329,11.897]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.996,-54.411],[-79.996,-54.774]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-30],[-109.999,-32.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9535,36.561],[-2.174,36.45325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.235,24.49],[-157.5085,21.3435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.493688,40.443703],[18.57,40.29875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.77893,59.713926],[19.930844,59.65625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.497859,54.259535],[8.455625,54.064375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.469,39.950625],[5.193,39.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.815102,36.763],[24.958703,36.849672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.376,48.431],[-5.385,48.321]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.112,34.53],[23.821,34.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.107781,52.790656],[-5.45975,52.27725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.510375,63.660875],[21.305,63.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[62.906,7.145],[63.99,8.569]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.758258,41.651336],[9.876875,41.803938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.26675,42.311625],[18.4135,41.831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.772,35.527],[28.168,35.6615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.375781,49.598094],[-0.486,49.625],[-0.618375,49.669375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.56875,51.8795],[-5.496,51.787],[-5.356766,51.684719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.06325,54.242375],[5.177031,54.10407]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22,33.3],[20.148,34.337]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.001,-38.7],[140,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.002,46.037],[-160.001,42.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.610125,35.743625],[24.67975,35.640094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.2655,-17.0765],[173.162,-14.028]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,0],[0,-3.091]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.48,35.8],[29.67725,35.84575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.29025,60.96875],[17.36,61.113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.464687,60.453016],[21.46925,60.35075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.797,39.16425],[14.828,39.26875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.1235,54.886125],[-0.9815,54.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.375688,37.894719],[12.13752,37.961805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.071,36.999],[-10.938,37.1905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.022469,56.730469],[11.886,56.762438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.494,36.464],[-12.608,36.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.36175,39.533281],[24.4065,39.4365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.981,37.297],[16.06825,37.381]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,0],[53.079,3.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.703,37.77025],[23.596937,37.815609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.935,31.747],[29.455,31.788]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.1525,61.9975],[17.9175,62.0295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.028,10.173],[109.949,7.953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.95825,41.044],[1.90825,40.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.5,37.4],[9.532,37.462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.337,36.631],[-75.074,35.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,8.88],[140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.856,26.188],[-89.871,26.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.676,39.86775],[25.68875,39.76825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.8735,7.208],[-82.082,7.348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.574,35.383],[22.2815,35.6445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.216,49.47325],[-2.145,49.59075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.479125,62.294875],[19.498,61.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.4835,63.6295],[9.124,63.509]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.227859,37.204313],[12.385,37.164],[12.581445,37.077711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.127031,57.969063],[11.211383,58.103047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.584281,51.740625],[2.379469,51.685312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.0975,69.6785],[43,69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.707,43.635],[7.828375,43.611688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.927,46.151],[143.09,45.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.71725,63.51225],[20.902,63.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.371,33.836],[33.064,33.309]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.8805,55.671875],[8.016813,55.50325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,35.386],[-160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.679172,42.509359],[6.49075,42.71425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.702,37.379],[-122.643,37.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.67975,35.640094],[24.8625,35.616],[25.007984,35.585289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.06025,48.81825],[-4.948,48.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.225,25.348],[-15.384313,28.145375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.207,20.84],[-48.192,20.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.001,-14.889],[0,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.449,56.615],[-6.798,56.513]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.288,40.394],[25.375,40.312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.55125,25.853],[121.668,25.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.1405,60.2145],[20.997,60.296]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.371,28.584],[133.395,27.951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.995687,43.5465],[-3.06275,43.382937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.956172,36.944266],[14.16175,36.8465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.00875,26.148],[-130,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.304,-16.456],[-149.893,-17.372]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.3215,27.4185],[-79.5955,26.7635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.035,9.712],[-90.812,8.98]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.7585,42.87625],[5.921875,42.861625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.30225,49.300625],[-5.380375,49.082875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.571,43.888],[38.191,43.781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.7,-15],[42,-23],[43,-26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.890875,61.60175],[4.4705,61.47825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.651,42.499],[4.887,42.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.3215,14.918],[-71.738,14.512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.868203,60.951344],[19.012375,60.984875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.297,47.224],[-5.454,47.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.628469,41.767062],[16.74975,41.790813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.777687,60.865812],[19.941,60.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.127125,53.823289],[6.84375,53.8065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.619062,-14.248125],[-170.902,-14.326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.087,4.787],[8,3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-40],[-153.872,-36.427]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8,0],[8,0.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.206125,57.692437],[10.268039,57.791641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.650125,53.747875],[0.8485,53.642625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.456,49.7165],[-0.578875,49.9645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.49,56.634],[-0.82925,57.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.71025,39.93775],[9.79275,39.80475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.91925,37.83375],[20.861,38.028188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.376,59.326],[18.565875,59.18375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.842,41.209],[-10.822,41.979]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.264,61.0215],[19.012375,60.984875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.341328,54.389234],[11.46,54.334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.193812,43.917844],[9.099016,43.969094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.27325,37.58575],[16.52325,37.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.490508,43.093109],[5.350734,43.1385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.8175,47.8135],[-5.98725,47.8615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.127,56.182],[5.107,56.079]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.8185,47.0625],[40.23,47.231],[40.447,47.466],[40.987,47.619],[42.04,47.556],[42.833,47.831],[43.453,48.584],[44.024,48.657],[44.124,48.602],[44.495,48.421],[44.448,48.624],[44.961,49.169],[45.423,50.028],[45.879,50.375],[45.692,50.658],[46.08,50.862],[45.838,51.239],[45.972,51.494],[46.187,51.535],[46.297,51.758],[46.734,51.729],[47.729,52.027],[48.169,52.412],[48.486,53.004],[48.468,53.085],[49.09,53.239],[50,53.155],[50.181,53.308],[49.898,53.455],[49.028,53.495],[48.924,53.943],[48.455,54.145],[48.467,54.425],[48.863,54.693],[48.898,54.99],[49.382,55.2],[49.083,55.443],[49.027,55.784],[48.525,55.824],[47.963,55.984],[47.878,56.12],[47.018,56.162],[46.566,56.357],[45.978,56.12],[44.716,56.038],[43.962,56.326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.412,-31.535],[57.365,-30.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.762,30.418],[-71.458,30.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.761812,55.220062],[-6.656219,55.284625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.227,36.317],[28.110809,36.492992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.587,43.542],[-9.640875,43.356125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.145,58.324],[18.21,58.0305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.589,58.6165],[-1.4245,58.776875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.278492,57.636105],[11.105902,57.64757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.573,55.787],[18.417625,56.110875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.028195,59.747914],[18.90725,59.3835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.303,60.933],[-5.84,60.721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.853938,32.354],[-67.531,33.247]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.4905,62.74475],[20.75475,62.53275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.158,5.822],[-55.091,5.856],[-55.108,6.04575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.216203,56.968812],[7.275,56.82575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.959125,56.402125],[19.389406,56.289125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.0945,9.9615],[-110.197,10.228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.306,58.274],[21.23075,58.204]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.9985,40.68925],[-9.074,40.596]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.594,28.239],[-19.9605,29.97825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.187906,38.037906],[24.293,38.042],[24.318828,37.996062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.755,38.065],[-9.68325,38.161]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.0035,35.914],[23.926188,36.072688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.550187,38.285062],[13.422781,38.184656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.106688,50.7695],[-1.060047,50.623906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.284,48.231],[-13.703,48.116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.788,17.153],[-61.777,17.164],[-62.026,17.298]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.661,61.90475],[20.920625,61.952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.381727,57.740961],[11.373734,57.904672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.475563,35.964687],[-7.5575,35.8275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.416,34.223],[-69.089,33.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.780062,59.664125],[23.643375,59.616844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.09825,36.6245],[-7.021656,36.719547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.959641,36.079094],[22.5575,36.08125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.2475,56.7045],[-6.5945,56.94075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.59975,30.13275],[-71.253,29.502]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.5,39.677],[25.472125,39.507562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.1175,37.24],[-10.938,37.1905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.406,58.5545],[21.249,58.37325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[112.047,16.953],[113.262,17.292]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,12.449],[-110,12.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.169688,54.784375],[16.066813,54.710938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.028,66.331],[8.676,66.898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.425,26.558],[-96.967,26.552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.162,33.47],[31.56,34.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.421875,56.718688],[10.363563,56.961953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.42825,51.517],[-8.334,51.334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.2375,32.5435],[15.463,32.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.079406,59.485641],[24.193,59.714188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.077625,49.415055],[-0.136047,49.512703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.488828,37.066336],[24.503375,36.86575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.397,58.362],[-160.845,58.364]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.3545,36.1685],[27.292922,36.264656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[83.979,11.557],[85.156,14.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.918,-37.307],[40.001,-39.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.685,32.422],[-16.604,31.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.265,54.215],[8.125719,54.198719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.314,68.389],[-95.423,68.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.074,39.4815],[20.04875,39.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.781438,49.663469],[-4.675625,49.74425]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-70.57,-52.962],[-70.452,-52.754],[-70.271,-52.707],[-69.719,-52.597],[-69.397,-52.41],[-68.915,-52.414],[-68.499,-52.471],[-68.001,-52.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.8,-0.9],[-84.676,-4.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.517516,54.009156],[7.519008,54.151023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.436781,37.155094],[15.611,37.170625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.454,-54.03],[-83.866,-54.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.507,-18.151],[159.749,-19.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.716375,42.049],[9.747133,41.83657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.210703,36.538219],[27.057719,36.526059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.011,56.246],[5.926,56.491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.16425,36.405188],[12.975875,36.46325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.5865,36.87825],[-9.6035,37.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.428,65.265],[22.302,65.177]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.507,-18.151],[159.506,-11.18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.344,61.467],[-2.861,61.219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.6805,48.9415],[-3.934781,48.869406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.001,32.969],[-27.091,33.163]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.012875,54.0385],[1.169,53.9455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.032,33.711],[-77.8,34.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.76175,43.48225],[-2.995687,43.5465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.837125,49.055563],[-5.752187,48.922906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.532,-23.506],[168.546,-22.802]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.7715,36.4095],[-8.221,36.57025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.586453,38.055121],[15.604422,38.213969],[15.669117,38.353867]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.420563,36.5375],[26.333969,36.419]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.831,40.812],[9.896625,40.681125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.002,-36.286],[158.55,-36.509]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.764,6.792],[160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.661,29.006],[-57.915,27.9665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.895,37.876],[-71.93825,37.46175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.241,49.851],[-4.329156,49.909594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.58,49.738],[-16.888,48.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.875133,58.064367],[18.706937,58.325312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.6875,64.6715],[-13.726,64.484],[-13.893,64.162]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.948,50.94],[143.432,54.574],[142.331,55.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.70875,55.473],[5.991,55.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.110809,36.492992],[28.3,36.6],[29.998,36.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12,-9],[7.602,-9.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.677,50.785],[156.90225,50.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.9,31.3],[123.223,30.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.360563,54.301414],[8.401,54.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.62,-6.007],[-144.137,-5.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.559313,58.235813],[20.3925,58.337625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.366,36.672],[-0.137,37.131]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.706023,39.078133],[25.593719,39.019594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.393,15.631],[-71.138,16.439]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.295,37.477],[3.05525,37.15075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.550187,38.285062],[13.456188,38.359125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.92475,40.2505],[22.9945,40.0215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.8,-27.15],[153.4,-24.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.410312,49.677875],[-4.5225,49.75725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.381875,52.661125],[2.852,52.832]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.334,68.527],[14.0605,68.7865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.071,47.45],[-60.2,47.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.045,1.826],[73.113,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.4195,50.39],[-2.563477,50.067563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.611359,41.91252],[16.722,41.8905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.255,29.16],[-89.433,28.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.534063,53.675375],[-3.530828,53.493547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,40],[-169.524,41.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.755,62.988],[7.2445,63.032]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.248141,50.527687],[-1.423719,50.409594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.864,57.21375],[18.956125,57.266875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.8,-5.25],[-38.152,0.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.2,58.7],[-4.889,58.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.264,63.161],[19.132,63.008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.562,41.506],[18.602,41.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.161453,39.414422],[20.11575,39.31975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.875,38.365],[-28.5755,38.543625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.919633,42.400891],[11.079219,42.322922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.14949,18.992057],[-75.095,19.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.55075,54.91325],[17.845,54.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.958,37.3725],[20.78275,37.4845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.105,14.132],[-68.316,13.76]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.6,-6.3],[121.7,-5.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.224,47.41675],[-3.6535,47.638]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.9945,44.2065],[13.126625,44.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.18525,42.3465],[5.276,42.237]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.7515,28.85],[-86.3105,28.157]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.85375,39.1165],[23.62875,39.09075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.893,47.672],[-5.794,47.133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.279,49.829],[157.116,50.019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.22425,50.18675],[1.0495,50.13675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.705,-16.45975],[116.725,-9.459]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.776,19.353],[-66.473875,19.311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.470125,57.394125],[-1.609,57.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.61725,57.082688],[20.504625,57.129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.74625,52.283687],[2.890125,52.232375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.0065,10.9975],[-55.547,10.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.669344,37.348992],[26.636656,37.207937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.440866,11.49069],[-61.574125,11.637812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.076406,56.69125],[11.210094,56.756406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.7305,61.341],[18.99125,61.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15,64],[-15.655,63.476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.188875,36.739812],[-9.02568,36.730164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.391,-33.924],[40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.939625,43.833375],[14.037641,43.936484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.325,52.066],[-141.171,52.348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.031,59.511],[-146.769,60.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[61.555,23.457],[64.14,22.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.133,34.493],[-149.194,30.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.268187,37.387125],[26.167406,37.277938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.331,63.385],[20.438094,63.345781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.752,40.299],[13.616,40.261]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.29,60.187],[22.365187,60.104875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.109,45.405],[-47.121,47.296]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.344,-23.655],[-122.039,-22.0965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.535,51.375],[-5.137,51.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.529406,40.493094],[13.3895,40.4175],[13.287602,40.316414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.8965,10.0025],[-83.032,9.991]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.432156,50.575094],[-0.575,50.60225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.863,39.128],[-138.556,38.667]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.15749,36.356752],[-3.2425,36.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.782219,36.822125],[13.8035,36.7185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.231,34.976],[130.161,35.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-50],[-79.998,-47.119]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.789,32.746],[-9.822,33.488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.765,53.684],[4.853,53.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,0],[-38.152,0.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.161453,39.414422],[20.225,39.30825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.98,35.742],[-11.8145,35.9215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.487,38.892],[6.536,38.757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.11825,38.9955],[0.333937,38.828812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.371,36.889],[-22.487,36.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.67,36.427],[-10.514,36.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0165,-30],[156.554,-31.408]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.240875,36.694375],[-0.135,36.704],[0.384,36.784],[0.814,36.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.489,-7.176],[72.568126,-7.144806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.714336,57.812898],[9.64175,57.707063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.963531,56.821156],[11.042334,56.518523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.9545,60.271125],[-4.617,60.9005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.228125,41.423687],[11.3155,41.3365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.489,54.771],[150.638,58.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.002125,38.15475],[-72.534,37.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.135,6.905],[133.636,6.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.220656,39.039656],[8.150078,38.904078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.432156,50.575094],[-0.604,50.460875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.87375,53.285],[-5.032,53.1915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.543859,37.880766],[15.6745,37.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.564125,35.614563],[24.402188,35.598812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.197,28.729],[-73.712,28.524]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.86525,38.955],[25.731883,38.950109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.004437,42.9335],[7.095,42.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.001,47.579],[-50.001,48.263]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.51,63.063],[19.507,62.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,40],[-29.175,39.382]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.701,38.985],[118.99,38.729]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.606219,35.3665],[26.405719,35.342953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.54,43.284],[-65.39,43.204]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.323148,45.536664],[13.454773,45.46168]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.418625,36.985625],[13.679688,36.879063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.77825,57.569],[11.858,57.407],[11.901625,57.223375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.153734,36.263531],[27.123125,36.415875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.654125,54.696687],[15.428125,54.877531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.215,39.644],[6.304,39.399]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.851,14.306],[-150.001,14.997]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.001,24.914],[-58.676,23.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.90225,50.6475],[154.646,50.062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.567907,50.289996],[-4.463375,50.21625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.369375,58.096125],[4.582,58.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[63.99,8.569],[65.037688,10.012625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.724,39.5465],[23.8645,39.3795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.229,58.726],[-0.535,58.734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.934625,55.349438],[16.0135,55.25525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.976,35.364],[-150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.908,16.961],[-75.801,16.923]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.11,-45.405],[10.42,-40.448]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.973449,43.527437],[-10.062,43.412]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.001,37.491],[-132.09,38.071]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.766937,57.968063],[23.68975,57.8705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.034688,44.483469],[13.090375,44.612375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.834,40.889],[-132.291,42.442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,0],[47.0435,-1.286]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.264188,63.044219],[20.4455,62.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.530812,60.227469],[21.356812,60.36925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.229875,51.3815],[-4.11725,51.391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.077,65.415],[10.787,66.101]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.837,7.134],[-79.202,7.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.374234,54.029688],[11.308344,54.149055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.2725,41.525875],[16.376562,41.400156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.786,-16.993],[118.6,-19.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.411,-31.534],[-1.98,-32.153]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.469,5.727],[104.708,1.7735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.899,19.75],[-67.331,19.129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.878,56.763],[5.826,57.042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.3515,29.281],[-89.12,29.492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.581,35.4315],[29.014,35.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.675,35.481],[-12.595,35.706]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.914094,58.455031],[-2.642,58.3975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.6315,43.72],[8.625,43.832]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.6295,24.9085],[-150.922,29.287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.981,42.261],[-148.928,41.201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.168,-28.269],[-20.627,-29.408]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.1085,52.0605],[-5.986406,52.129875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.080938,49.982313],[1.0495,50.13675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.211383,58.103047],[11.249312,57.976813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.194,27.03],[-88.637,27.227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.9745,53.991375],[-5.5835,53.9915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.299656,56.545609],[12.203125,56.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[102.606,7.812],[102.708,7.569],[103.95,4.569]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.90625,56.33675],[17.026969,56.404344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.842,40.697125],[10.96625,40.99175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.922,54.621],[20.476,54.704]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.427,55.252],[-1.42525,55.514031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.914109,55.239125],[-7.102,55.371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.383047,53.934812],[7.15825,53.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.69025,64.834],[22.314,64.8995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.192,35.917],[-8.16875,35.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.013,60.239],[20.16,60.165],[20.28,60.15775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.268,32.3085],[-74.8595,32.6085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144,-42],[146,-44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.752,51.654],[-9.891313,51.476594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.547,55.37925],[16.619922,55.17168]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.638,36.925],[0.814,36.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.9,47.118],[-6.8195,47.18975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.099,66.964],[12.514,67.102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.436,3.783],[119.257,4.485],[119.504,6.593],[119.968,7.312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.18,44.414],[-7.125,44.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[150,16.669]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,20],[-144.592,15.573]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.006375,56.871688],[8.893,56.793]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.848,15.413],[-71.557,16.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.6245,64.96375],[23.771,65.009]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.5345,50.453625],[-3.155,50.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.408,-9.422],[3.74,-9.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.903,37.617],[17.021,37.592],[17.352,37.517],[17.631,37.453],[17.741,37.428],[17.804,37.414],[17.867,37.4],[18.02825,37.3595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.578812,56.433813],[-2.528125,56.24425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.168426,40.741285],[14.083219,40.662633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.637625,58.2825],[9.769,58.29175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.783125,59.925],[22.492,59.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.275812,48.1095],[-5.3065,48.2945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.648,-10.092],[162.278,-10.017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.541,32.109],[-127.349,30.881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.117568,50.834391],[1.225828,50.785375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.082187,56.717187],[8.08525,56.5205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155,5.057],[-160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.926,37.622],[7.2415,37.6335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.7,46.8],[-50,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.354,35.607],[26.339,35.812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.799836,54.459984],[12.023195,54.421016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.456422,59.020891],[10.615795,59.285332]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.853938,32.354],[-65.801,34.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10,-40.707],[10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33,43],[32.602,43.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.753531,49.47975],[-4.024188,49.587063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.095148,57.475766],[17.226156,57.496313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[96.716,-4.2],[95.348,-5.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.105902,57.64757],[10.962883,57.725977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90.002,-16.097],[88.654,-16.852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,0],[-158.408,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.408062,41.516797],[9.526563,41.411]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.167,50.407],[-16.447,50.4765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.391812,41.269125],[7.576,41.297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.903,-43.469],[160.003,-44.371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.766,53.587],[2.133,53.5055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.814563,36.16925],[26.616437,36.258125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.4015,39.074438],[24.554563,39.140563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.29025,60.96875],[17.387,61.0135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.136,-2.703],[152.58,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.884,21.24775],[-157.639563,21.207063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.013375,37.744625],[20.91925,37.83375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.8095,53.85425],[13.954,53.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.880937,55.903312],[7.024344,55.9795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.801,34.142],[-66.515,35.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.974,37.27],[-15.088,37.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.675906,43.631531],[14.555813,43.693922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.459375,44.802906],[13.559125,44.77125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.724312,38.045328],[24.648805,38.133055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.098125,37.256125],[26.913266,37.335828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.10975,40.393375],[1.371,40.548]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.16025,58.0615],[8.2545,58.0265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.78225,55.00575],[14.9195,54.919875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.01075,17.68825],[140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.522234,43.606953],[15.422688,43.642125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.454469,54.302594],[7.39025,54.168062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.24525,51.617438],[1.424238,51.448891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43,69],[45.498,69.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.851,28.666],[-92.4095,28.881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.013,64.135],[-4.404,64.322]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.133,57.601],[-6.782594,57.578156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.876875,41.803938],[9.92725,41.702375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.61625,66.533812],[-16.387,66.839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.25,7.251],[82.132656,6.798531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.90075,57.728063],[9.84723,57.855687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.095148,57.475766],[17.2155,57.352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.2055,40.2865],[1.892,40.07875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.29215,40.781631],[14.168426,40.741285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.525625,41.264],[18.3745,41.2245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.011,55.475437],[15.8995,55.495625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.524,56.83],[149.614,58.413]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.593,40.893],[28.675,40.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.3785,40.857062],[13.305,40.754812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.409,61.8605],[21.371938,61.606813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.668,53.744],[-129.468,52.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.824625,44.215563],[12.684,44.30575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.98075,41.019875],[-9.363,40.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.155,51.765],[1.9,51.718]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.591125,38.638125],[-9.607875,38.47475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.109,45.405],[-24.15575,46.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60.002,-43.304],[63.382,-43.612]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.222,-31.5435],[153.479,-32.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.066906,39.810875],[23.957875,39.671375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.551,-7.715],[119.644,-9.087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.14,22.908],[61.653,21.501]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.269,58.1505],[24.2245,57.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.5215,42.94825],[15.554156,42.821313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.809563,55.387188],[13.618891,55.258641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.180867,57.926906],[6.963875,57.974125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.179,-54.832],[-76.303,-55.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.116375,59.861187],[25.1145,59.968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.255,-32.224],[-49.5,-30.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15,-25.277],[-10,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.2395,46.63],[-7.329,46.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.3775,63.4075],[6.466,63.062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[97,16],[94.871,15.084]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.498,35.892],[-11.8145,35.9215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.7765,47.1735],[-4.95,47.109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.50025,52.78525],[4.424094,52.6015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.236125,36.335],[24.132,36.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.61232,54.719742],[10.434313,54.599125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.92,32.922],[15.2,33.026]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.74675,55.739875],[15.6885,55.868688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.917,35.611],[12.802,35.7655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.764,60.541],[-146.339,60.447],[-146.949,60.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.926625,51.317281],[-5.941,51.1665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.814,42.67],[136.009,43.553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.164,20.058],[-114.699,21.318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,17.058],[-170,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.977,36.33],[-35,35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.598375,42.457594],[15.629129,42.695691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.792,-4.237],[72.489,-7.176]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.651,57.96],[7.485867,57.924367]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.089906,37.972094],[24.089062,37.707969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.265,31.81],[28.596,32.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.731,-8.756],[66.03,-6.084]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.460469,39.418156],[1.291062,39.408125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.512,46.634],[-2.45825,46.474875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.45125,41.823125],[16.474734,41.922687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.225,57.764],[8.275625,57.603875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.958,44.088],[-7.37575,43.98975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.8205,49.9535],[-4.78325,49.835938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.819,64.18525],[-23.0525,64.1395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.511437,37.485563],[26.485094,37.327984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.763789,44.097516],[8.7575,43.988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.103,39.80675],[0.148094,39.671781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.2555,36.778],[15.386314,36.822074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.707,31.671],[32.055375,31.709125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.102375,54.561813],[7.959781,54.419438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.89175,41.38325],[-8.70175,41.1815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.305,31.4365],[-71.458,30.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[86.455,13.773],[84.777,11.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.289,-24.368],[-126.498,-23.712]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.111,61.723],[17.228,61.696],[17.249,61.691],[17.28,61.653],[17.3,61.615875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.633813,54.423781],[11.46,54.334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.90225,50.6475],[157.116,50.019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.106,34.429],[33.63275,34.32225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.08175,49.885469],[0.294469,50.076906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.057719,36.526059],[27.027812,36.308605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.302,65.177],[22.112,65.054],[21.98675,65.00225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.2,33.026],[15.2375,32.5435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.822125,59.054375],[21.714125,59.0385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.414,41.74],[-160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-106.346,0],[-110,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.187,53.5535],[4.979375,53.474625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.375625,60.084125],[19.513219,59.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.1945,19.33525],[-105.5,18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.50475,53.89825],[7.517516,54.009156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.099,55.698],[-165.284,54.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.5095,58.731],[23.382625,58.650625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-60],[-34.915,-55.068]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.183,37.816],[120.48,38.101]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.556641,43.06575],[9.643016,42.992141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.333,34.743],[26.656,34.712]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.268,13.112],[141.388,10.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.7305,63.3545],[19.84525,63.1775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.001,27.283],[-54.685,25.303]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.8455,56.454],[5.23675,56.376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.485867,57.924367],[7.436063,57.685312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.114562,53.977125],[-6.045937,53.884125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.86,55.245],[-5.0125,55.247]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.024188,49.587063],[-3.639953,49.750961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.915,51.6375],[-10.223,51.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.772,-8.975],[133.007,-8.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,20],[-171.685,18.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[112.8035,-25.018],[112.7,-26],[114,-29]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.495,47.923],[-122.828,48.193]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.68,-9.135],[116.673,-7.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.602,43.617],[33.886,43.994]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.73,1.069],[173.0245,1.169]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.256,56.011],[5.107,56.079]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.42625,55.798875],[6.316,55.694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.11875,39.6085],[24.0285,39.4135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.176,60.128],[28.0355,60.15975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.577375,39.563375],[19.57175,39.43075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.381,20.656],[-140,20.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.3,-11],[124.0455,-10.924]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.194,-14.81],[152.879,-16.231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.074,40.511],[0.983,40.461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.6735,58.321],[4.72275,58.498]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.493422,36.511016],[25.465227,36.639328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.9785,47.4705],[-3.106625,47.4005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.725625,39.76425],[14.856094,39.632188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.465,25.096],[-84.277,25.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.062,57.1075],[-1.317,56.823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.676313,35.7485],[23.777125,35.745937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.862258,53.790398],[7.776219,53.958375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.6735,58.321],[4.369375,58.096125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.052805,43.031813],[10.015738,42.886645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.411875,57.094813],[19.5855,57.081938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.392,4.97825],[52.301,11.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.606109,57.893906],[10.752141,57.860664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.827063,57.636688],[20.738,57.531],[20.65375,57.411687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.339,16.018],[154.486,14.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.604,37.794],[-10.435,37.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.43575,40.10225],[0.197,40.0055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.618,20.8825],[-73.837688,19.982813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.675,54.6525],[5.6055,54.544]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.043641,36.978828],[12.083938,37.123469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.102375,54.561813],[8.122,54.4145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.181125,38.49725],[-123.603,38.131]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.5255,36.691],[13.30375,36.56925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.79275,68.481625],[14.32,68.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.781,62.473],[-81.943,61.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.728145,49.875125],[-1.892469,49.848457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,-15.17],[-110,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.525,37.454],[6.259,37.344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.9945,37.4105],[2.9675,37.51475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.002,52.186],[-20.003,56.534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.346187,44.948625],[14.334934,44.560594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.789,67.3915],[13.358,67.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,-60],[-44.75,-55.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.62275,48.976375],[-4.739906,49.082062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.27325,37.58575],[16.423875,37.7135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.379,35.923],[12.375,35.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.110125,42.131375],[17.136,41.9055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.8325,61.018],[18.233,60.818]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.954625,50.379375],[-1.97725,50.255875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.405,42.106562],[11.4645,41.97425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.277719,36.044219],[23.292113,36.209797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.763,41.146],[11.657187,41.106875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.499,45.798],[-2.702,45.774]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.223,64.652],[36.09,64.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.558,25.916],[-91,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.2455,36.38575],[27.210703,36.538219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.831875,37.66025],[15.4945,37.2965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.73368,38.316016],[25.623,38.347375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.617,60.9005],[-3.887,61.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.317,29.95],[-88.07375,30.10275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.913,51.893],[0.978875,51.767437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.27225,55.127469],[19.1525,55.3495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.503625,54.865125],[13.7,54.69625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,0],[99.9,-1.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.322,42.111],[5.38,41.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.82975,46.003875],[-5.043,46.638]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.905,58.345],[11.875,58.334],[11.811,58.311],[11.832,58.252],[11.8005,58.0785],[11.707937,57.976375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.9375,55.80975],[17.618,55.828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.596312,54.684687],[8.478031,54.635594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-10],[-30,-7.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.456,42.238],[140.176875,45.08725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.945,38.833],[26.786,38.898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.592422,57.555328],[10.653526,57.429626]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.050719,44.805062],[14.237156,44.597531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.707,43.635],[7.600777,43.526945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.8495,74.0635],[134.638,73.669],[136.882,73.669]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.61,39.8795],[-140,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.889,65.799],[6.467,66.461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.833,40.144],[-140,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.073,-18.34],[168.063,-18.461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.385,-55.361],[-73.14,-55.241]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.176,60.128],[28.108,60.032]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.672875,56.284438],[-5.809,55.7815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.819,34.539375],[33.422,34.519]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.865,48.792],[-6.771,48.829]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.399875,55.542375],[15.507531,55.478125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.933309,40.764412],[14.083219,40.662633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.61625,37.5905],[7.478,37.60525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.336008,38.551061],[25.431312,38.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.817,-26.511],[-36.79,-26.968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.782812,39.842437],[25.88575,39.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.731,34.98],[33.663,34.903125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.091,58.314],[17.056625,57.749625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.056625,57.749625],[17.344,58.00775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.853,60.50725],[-168.734,59.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.782594,57.578156],[-6.664,57.616]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1055,61.7375],[4.1305,61.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.763875,64.873109],[-13.573,64.761]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.801,58.44],[1.551,58.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.531297,49.444938],[-4.439375,49.223875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.246875,41.291],[30.474,42.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.964926,55.675785],[-4.859875,55.520125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,-5.057],[-160,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.795,49.367],[-1.848,49.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.08175,60.105656],[19.08075,59.86525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.085,36.922],[-7.021656,36.719547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,0],[78.36,0.939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.822,64.3935],[23.871,64.59275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.7885,39.774062],[18.68275,39.77375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.001,55.0165],[-0.356,54.896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.509,50.531],[-20.942,50.981]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.801,64.414],[21.801,64.258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.33575,60.18075],[26.298188,60.334375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.108853,41.49247],[29.112813,41.234719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.795844,49.741437],[-6.616687,49.755812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.50525,42.98875],[14.78,43.083625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.620699,58.013418],[18.53425,58.1305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.284,3.327],[135,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.498375,56.226125],[4.191,55.453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89,28.8],[-89.009,28.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.292,26.467],[128.782,26.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.054,36.918],[1.841,36.8605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.273,24.529],[143.742,25.647]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.955,45.106],[-7.125,44.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.78,43.083625],[14.892,42.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.556,71.253],[20.716,71.27075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.588156,58.875719],[-2.471,58.872]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.866594,58.323113],[5.782125,58.455625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.873219,52.440906],[1.90425,52.560187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.596937,37.815609],[23.62393,37.715352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.621,41.361],[11.073563,41.45425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.948125,39.674809],[25.181562,39.72475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.0645,57.835],[6.0555,57.6415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.339,16.018],[153.965,16.192]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.638,32.641],[30.790875,32.940375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.815688,51.500125],[-5.957,51.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.347,2.69],[-110,9.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.002094,43.844172],[7.795,43.807]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.944375,55.63025],[12.866844,55.739516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.133,-34.533],[111.295,-30.696],[108.885,-28.723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.352937,53.182125],[-9.428,53.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.97,64.941],[40.137,64.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.255,25.567],[-78.145,25.595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.732,39.376],[2.553187,39.416438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.7925,37.587],[-71.93825,37.46175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.627,59.783],[17.612,59.735],[17.812,59.36],[18.167875,59.338],[18.3485,59.4035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.681,41.125],[2.038,41.22]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-50],[-24.89,-45.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.20525,56.54725],[4.8455,56.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.76825,55.82075],[7.8805,55.671875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.185,65.85],[13.156,65.877],[13.06,65.921],[12.89025,65.97275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.763312,39.652125],[25.763141,39.488523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.2045,58.697633],[-3.453,58.8155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.901,36.55],[-10.6655,36.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.759,37.5805],[10.075,37.5635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.722562,41.376844],[9.718375,41.537062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.641188,59.016695],[5.50975,58.87125],[5.44325,58.742625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.0375,70.631],[32.6785,70.542]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.7605,52.721312],[1.8375,52.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.897,64.265],[179.642,63.513],[179.722,62.672],[179.614,62.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.986,49.3995],[-2.216,49.47325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.782,32.9665],[35.027,32.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.628469,41.767062],[16.622687,41.567281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.001,-31.786],[0,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.643766,62.349859],[17.773,62.36775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.324,55.4995],[5.17375,54.925406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9415,57.9345],[4.6815,57.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.021609,42.014109],[-9.093,41.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.488828,37.066336],[24.35275,36.97275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.797406,39.02825],[14.817625,38.910875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.5,45.9],[-62.344,46.026]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.28375,36.7175],[26.12975,36.701797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.675906,43.631531],[14.5935,43.573813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.123,32.92],[135.0695,33.191]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.899031,59.475344],[19.725062,59.536187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.027,42.99525],[16.78675,43.0515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.464,36.749],[-2.51025,36.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-119.999,-24.322],[-116.769,-26.951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.229984,45.702668],[12.89,45.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.12175,41.51675],[3.363,41.548]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.31,33.482],[34.497,33.0425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.164,13.697],[-74.971,13.668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.847875,48.8505],[-6.129,48.856]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-119.999,-23.133],[-120,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.333,65.166],[-23.489,65.058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.3125,36.6435],[27.437883,36.621586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.332,44.366],[37.5115,44.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.750969,43.460469],[9.6795,43.3735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.438,58.637],[13.299,58.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.939375,36.260625],[-4.66925,35.99725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.32,21.287],[123.594,25.549]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.0465,36.943],[13.2485,36.9335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.233531,45.409594],[13.038885,45.242312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.1295,54.8555],[8.0635,54.7685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.257469,59.677742],[23.153719,59.551219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-119.2,-0.811],[-120,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.222562,58.61375],[11.223039,58.342094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.5935,43.573813],[14.57,43.388]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.246,-27.355],[160.0165,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.261312,38.501312],[15.451637,38.456365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.1015,57.56575],[-3.984687,57.661875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.832125,37.323375],[-10.901,37.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.667375,55.756125],[19.55325,55.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.8995,49.0385],[-5.03825,48.98025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.607,20.303],[111.35,20.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.894,36.694],[13.001,36.6805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.919,45.67],[-14.893,46.811]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.9,46.25],[30.555,45.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.965,42.04625],[11.070766,41.926359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.911102,41.74726],[11.759313,41.905906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.749,59.573],[26.5465,59.56225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.514719,54.380844],[8.497859,54.259535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.821,22.882],[-109.394,24.597],[-111.5,27.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.203,36.956],[12.043641,36.978828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.415781,54.933609],[-5.3965,54.7765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.16675,54.982062],[19.27225,55.127469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.352914,37.560074],[25.342,37.73075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.75,-55.43],[-42.838,-53.311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.4765,43.165],[4.648,43.203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.934781,48.869406],[-3.835,48.851]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.6775,51.7775],[3.492125,51.66425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.9425,37.828],[16.092906,37.788031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.213461,41.962656],[16.1125,42.07025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.649,60.713],[17.38875,60.717125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.5995,59.4905],[27.7625,59.4775],[28.108,60.032]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.513,64.97],[39.103,65.071]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.869,34.499],[-54.451,34.839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.7015,35.80725],[22.968,35.911]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.007984,35.585289],[24.852359,35.743156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.20975,37.28275],[23.313875,36.956375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.815812,50.458],[-1.851922,50.612422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.709,-3.334],[66.03,-6.084]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.513219,59.995],[19.617594,59.841656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.998,27.486],[-67.444,27.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.1985,41.6105],[10.088094,41.582906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.048,39.776],[11.10025,40.5655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.769,63.212],[-20.006,62.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.836,56.362],[20.743063,56.151656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.209,58.086],[6.293062,58.015375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.534,-7.517],[-100.647,-8.562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.265,0.016],[3.868,0.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.462,39.117],[17.443,39.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.8685,44.4765],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.575063,56.531188],[11.875656,56.348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.43925,59.948],[5.22575,59.944875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.577,65.306],[22.399094,65.462063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-12.163],[90.002,-16.097]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.627,67.14],[12.544,66.714],[12.7005,66.57775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.11575,60.165125],[4.984438,60.133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.578,45.885],[-4.6385,46.0665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.18275,55.4065],[17.316,55.3625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.901535,59.690625],[23.808625,59.80775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.522,69.137],[15.4,68.886]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.63716,44.425438],[14.562156,44.333625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.056,51.4805],[-10.1755,51.3055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.6785,37.505],[2.076,37.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.095,58.484],[9.206,58.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.167,46.426],[-3.519,46.0415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.992,58.00925],[10.102,57.981]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.402,22.141],[-76.45,23.348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.50125,38.4285],[-9.38,38.256]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.31,40.6845],[18.394,40.5285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45,-35.386],[42.878,-33.129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.223219,49.133437],[-5.380375,49.082875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.773,50.963],[-10.754,50.708]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.875875,36.610687],[24.006125,36.64475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.719,51.518],[-8.501125,51.638312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.182156,58.209859],[6.293062,58.015375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.355,-15.396],[54.936,-17.107]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.901,41.139],[-138.266,41.189]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.858719,41.863641],[16.839344,42.003937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.4085,38.6375],[8.518625,38.61025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.284,33.027],[27.8835,33.199]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,13.267],[-38.257,11.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.77,4.079],[-46.401,2.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.4215,56.8835],[11.32925,56.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0165,-30],[160.002,-33.482]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.162812,37.692531],[12.034,37.8625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.369687,36.318625],[14.348312,36.107188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.428672,44.054469],[8.498344,44.260625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0275,39.185],[7.729,39.0915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.972625,39.941094],[24.948125,39.674809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.9255,42.5555],[-9.110813,42.446813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.837977,55.960992],[11.680563,56.1585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.8085,57.46],[21.059781,57.520688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.487125,63.902125],[22.497,63.74325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.394375,54.535219],[15.34625,54.40375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.56,34.144],[30.838,34.448]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.145109,41.333125],[11.073563,41.45425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.450031,61.446969],[19.677,61.398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.359,50.873],[4.3525,51.266],[4.17675,51.374],[4.0205,51.4075],[3.848625,51.372312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.5285,39.795219],[24.39675,39.8115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.172125,61.551312],[21.071562,61.531188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,4.499],[60.529,3.997]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.165,38.416],[24.990063,38.303562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.070594,51.584297],[-8.225875,51.56375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.292113,36.209797],[23.176,36.185375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172,-40.5],[171.139,-39.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.702,35.7385],[27.581,35.677],[27.495,35.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.0345,38.1545],[25.360312,38.260813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.747813,54.142844],[-3.798375,53.92875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.471,-25.776],[70,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.182,27.4675],[-78.755,28.024]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18,-35],[17.59675,-34.271125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.350625,40.890625],[12.47125,40.87125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.315,37.2935],[-11.1045,37.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.722859,41.281063],[16.622687,41.567281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.568,-36.967],[150.357,-37.766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.132344,36.812094],[24.201375,36.731938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.074,58.716],[20.17725,58.648125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.948812,43.112],[15.089797,43.182266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.071984,38.668828],[25.883766,38.665375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.444688,43.3345],[8.35625,43.219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.79275,68.481625],[14.334,68.527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.777094,35.966875],[-7.475563,35.964687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.76275,49.82525],[-5.909195,49.889227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.827,39.393],[14.8635,39.52825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.88932,43.614086],[14.887352,43.367371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.982656,53.751188],[5.9485,53.868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,0],[62.292,2.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.6315,40.3185],[0.726,40.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[89.512,-19.537],[90,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.706,56.416],[7.613766,56.199719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175,5.057],[-180,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.489227,41.981977],[8.542,41.8305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.97,32.125],[-77.021,32.031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.3155,57.931],[10.268039,57.791641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.028,40.535],[-74.0385,40.66225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.252,-34.632],[165.74,-34.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.901,49.39275],[-5.869625,49.220375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.118,42.195],[-69.701,41.848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.420563,36.5375],[26.548821,36.637965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.045,13.361],[118.162,16.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.896,69.775],[54.357,69.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.575281,55.729094],[14.715969,55.6495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.048672,55.312602],[11.126734,55.214766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.085,36.922],[-6.875125,37.101]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.34775,58.2245],[20.3925,58.337625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.990125,49.567187],[-5.051312,49.472781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.833563,55.30441],[-5.8075,55.13525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.0965,5.3055],[-11.398,5.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.202,21.697],[-71.705,20.817]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.002,-34.562],[160.002,-35.616]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.796,43.087],[30.592,43.651]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.567,66.232],[-20.447,66.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.35875,54.260125],[-5.340438,54.457469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.159,2.65],[-27.268,2.358]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.555,10.547],[-80,9.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.153977,51.413375],[2.584281,51.740625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.879,37.69],[4.056,37.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.225,43.084],[4.4855,43.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.96575,61.44125],[21.046391,61.372875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40,-40],[45.109,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.948125,39.674809],[25.014375,39.588313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.862,20.145],[136.747,20.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.175,74.468],[4.152,70.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.681,41.125],[2.031125,41.131]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.48,-47.734],[-82.878,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.216,55.198],[12.168,55.212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.941,42.073],[-34.864,42.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.3435,-23.608],[163.979,-24.218]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.777,42.899],[28.994187,42.495688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.573,55.696],[-134.366,55.716],[-134.253,55.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.905875,56.514875],[11.8545,56.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.543,30.214],[131.43,29.926]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.808,26.131],[-76.984,25.881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.773,62.36775],[18.1715,62.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.295,52.927],[1.778578,52.525672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.24575,43.78075],[9.3835,43.6835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.733,37.3455],[16.36775,37.50575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.334937,38.390125],[13.218281,38.426297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.626,59.243],[3.9625,59.297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.639,66.385],[-19.667,66.303]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[114.241,76.783],[119.013,75.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.616687,49.755812],[-6.268,49.589]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.984,-3.172],[-32.849,-3.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57,54.6],[-63.7295,60.3865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[92.842,16.3195],[94.871,15.084]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.2,53],[-10.236,53.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.071875,43.207687],[16.154375,43.354875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.865,43.7255],[7.828375,43.611688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.58,55.503],[2.738,55.842]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.669,20.051],[-139.381,20.656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.161313,41.523086],[17.271711,41.397918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.892,42.962],[15.292125,42.721125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.682125,-17.353625],[-149.549,-17.288]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.974375,55.829125],[16.808,55.81475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.72375,42.275375],[9.781844,42.169281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.00375,35.958875],[-6.2465,36.04875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.10775,37.20425],[11.392781,37.305688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.655,36.21975],[14.928875,36.426625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.122297,35.373719],[25.007984,35.585289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.302,49.3655],[-2.216,49.47325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.5725,43.9135],[13.632375,43.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.815,25.79],[-79.5835,26.0805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.893,66.0435],[-24.3625,66.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.666625,59.755875],[4.5485,59.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.67475,40.81775],[1.825125,40.679375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.5855,59.996],[26.413812,60.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.78825,18.2635],[-64.732,17.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,0],[-120,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.996,-30],[160.0165,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.706,34.842],[26.743,34.939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.909195,49.889227],[-5.881875,50.019656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.00425,49.214875],[-3.7835,49.326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.591,42.72],[-10.176,43.257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.803,33.889],[31.179625,33.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.8455,36.176],[33.887,36.301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.657187,41.106875],[11.3155,41.3365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.771,30.079],[-67.401,30.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.786,50.154],[160.925,48.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.70425,35.60425],[-7.5575,35.8275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.383,65.374],[-23.333,65.166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.192,56.046312],[-3.0585,56.0545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.4675,40.012],[12.288656,40.061469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.3995,51.282],[141.224,50.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.600039,40.952727],[9.782406,40.969906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.946,13.088],[-59.7395,12.9925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.37675,45.8435],[-4.448,45.991]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.001,53.8],[-156.384,53.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.2245,57.755],[23.967,57.793]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.001,37.783],[-14.89,37.416]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.833117,51.853805],[1.786938,51.699687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.161,35.632],[134.084,38.211],[138.07,40.452]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.42875,61.177063],[4.2645,60.9155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.669344,37.348992],[26.656375,37.4955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.03025,59.858],[20.002375,59.752625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.775625,55.49725],[15.812328,55.619172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.0745,39.97075],[4.583875,39.728437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.001,12],[54.2,16.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.678,-10.02],[-131.405,-11.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.383,58.611],[-90.654,59.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.4655,53.029938],[3.94925,52.9315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.245156,41.879453],[11.070766,41.926359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.007,38.526],[20.088,38.421]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9535,36.561],[-1.5805,36.4615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.802,48.874],[-30,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.6885,55.868688],[15.608156,55.73575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.635687,36.517281],[14.27325,36.578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.204,42.496],[-17.318,41.932]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.447656,44.963156],[13.2635,44.880875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.609375,38.91375],[25.423,38.83525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.798,9.583],[-82.22,9.942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.574,38.781],[-69.605,38.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-14.492],[-180,-17.821]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.384,32.965],[26.148,33.297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.082625,36.22475],[23.035125,36.354312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.353,43.915],[8.193891,43.80825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.9,38.9],[-25.3,38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.4335,38.5745],[-9.591125,38.638125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.336469,41.665875],[10.287,41.492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.4785,44.03925],[-5.698,43.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.895,21.968],[-74.44025,21.20575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-10.695],[159.791,-10.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.44175,55.905875],[17.618,55.828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.6255,34.0145],[29.48,33.946]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.32,43.37],[-125.515,42.838],[-125.197,41.997],[-125.199,41.58],[-125.194,40.758],[-124.9805,40.07925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.818,66.16],[12.6445,66.2155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[147.375,16.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.394,64.981],[36.468,65.624]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.643,25.167],[-86.308,23.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.494438,53.131156],[4.3085,53.1015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.229984,45.702668],[13.368313,45.661125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.048969,58.610875],[4.896,58.523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.131688,38.157562],[24.187906,38.037906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.397609,57.386562],[20.45,57.674]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.074625,58.621],[10.890566,58.507941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.901625,57.337312],[10.766,57.352937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.8135,53.7255],[-3.831844,53.561281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.746,-43.645],[80.002,-43.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.859,33.331],[-17,33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.938,11.418],[-75.753,11.4935],[-75.27475,11.658]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.213,26.913],[-85.625,26.42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,50],[-176.7,51.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.514,67.102],[12.45,66.952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.543188,59.177234],[5.34725,59.24175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.326,25.085],[127.822,25.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.189,19.819],[-67.674,19.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.602,-9.404],[8.614,-12.263]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,10],[-180,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-10],[-180,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.921125,44.238812],[8.942656,44.383891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.866,36.771],[-9.02568,36.730164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.297,66.326],[-21.284,66.319],[-21.205,66.275],[-21.0655,66.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.265313,59.50125],[23.276992,59.333898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.571,-11.743],[153.748,-13.127]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.107,35.95],[23.172,35.80525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.8755,21.836],[-86.056187,21.765438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.84075,37.0625],[12.904,37.049],[13.127375,37.039187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.613,34.743],[-64.853938,32.354]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.892,40.07875],[2.220125,39.832125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.094875,57.59975],[17.956422,57.596609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.416,37.499],[6.687,37.663]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.019,39.227],[138.32,40.878]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.543,66.011],[-81.763,65.629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.841,36.8605],[2.495,36.948]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.899,19.75],[-67.181,19.429]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.782219,36.822125],[13.5745,36.8305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.3895,49.796],[-4.241,49.851]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.677,28.749],[-13.97,28.7845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.22232,61.4235],[21.434125,61.403375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105,-15.17],[-101.837,-11.929]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.116,52.94475],[0.214438,52.812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.0625,60.309375],[22.148625,60.188094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.6365,36.335],[-3.834281,36.283469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.525,-26.958],[-169.999,-27.257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.858719,41.863641],[16.8445,41.7405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.974,61.436],[4.80218,61.269719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.596,32.64],[28.284,33.027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.25,30.005],[-150.126,30.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.930719,57.919812],[8.090375,57.911875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.28,64.87],[11.131,64.809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.4275,43.6615],[-10.233,43.988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.0065,54.07925],[5.9485,53.868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.804312,41.211062],[9.955953,41.245672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.161,33.562],[23.942,33.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.57,51.106],[-4.764,50.997]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.181562,39.72475],[25.214,39.6155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.2,-3.536],[5.423,-3.254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.49075,42.71425],[6.40425,42.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.973,62.811],[19.638,62.636]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.169062,53.733187],[-6.066,53.606],[-6.055,53.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.554,56.1665],[5.575875,55.811]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.455,31.788],[29.265,31.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,40],[-55,35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.762977,59.489383],[24.613297,59.490648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.938438,47.132688],[-3.1,47.118]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.59,36.708375],[24.718953,36.683297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.5835,55.13],[11.605922,54.988219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.097,-13.446],[152.72,-13.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.931188,57.114],[19.0205,57.164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.505937,59.709625],[24.394,59.679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.056625,57.749625],[17.415,57.868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.498344,44.260625],[8.002094,43.844172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.0055,-9.99425],[54.286,-10.031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.667125,58.501375],[5.535094,58.613656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.1,-26.4],[53.81,-23.097]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.382613,43.609586],[7.707,43.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.5025,53.88275],[-3.442594,53.802406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.0185,56.57525],[17.026969,56.404344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.556031,61.746641],[4.395,61.654]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.087625,42.570625],[9.937078,42.383441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6055,54.544],[5.512,54.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.72475,62.21775],[20.7445,62.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.458,42.148],[-9.748,41.9725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.255,-24.09],[-75.294,-20.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.387625,41.58325],[11.45575,41.3615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.7,56.2],[137.967,56.119]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.290781,49.913063],[-1.482875,49.87325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.816,62.547],[-8.128,62.0715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.751042,37.436962],[23.711118,37.566561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.104,55.474],[5.817,54.9705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.254,58.4715],[-2,58.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.114,29.885],[-77.879,29.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.501125,51.638312],[-8.42825,51.517]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.9,31],[128.9,31.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.344,28.516],[-77.23125,27.989]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.8035,40.3525],[10.68075,40.573]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.13675,47.736],[-5.162449,47.89148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.835625,42.21625],[-8.73,42.241]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.284,-20.786],[168.548,-22.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.85875,35.7305],[25.983578,35.662859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.459,24.727],[-157.5085,21.3435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.5925,41.309125],[17.38325,41.431125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.031,59.511],[-138.9,53.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.141312,37.48075],[15.2565,37.712625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.777297,36.300844],[19.1895,36.3565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.76875,54.178875],[7.770469,54.076375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,0],[-154.564,4.618]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.507531,55.478125],[15.337141,55.427813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.776,38.485],[121.19,38.436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.378,46.48],[-13.986,45.724]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.919,46.2],[-1.854875,46.0455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43,-12],[43.12,-11.678]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.929,67.013],[41.929,67.562],[42.294,68.052]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.644,43.1015],[5.027742,43.146727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.411719,38.901266],[8.150078,38.904078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.5945,40.452],[-71.689,40.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.771531,37.319719],[25.620797,37.164937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.69,2.728],[-100,3.288]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.948,40.688],[12.936,40.513]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.497633,43.934609],[8.326625,43.986062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.48,38.101],[120.776,38.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.546,51.262],[-176.7,51.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.826781,36.368094],[24.639344,36.376688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.072,26.289],[-150.001,24.693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-116.621,13.52],[-120,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.004,38.295],[10.492,38.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.148,35.936],[-67.057,35.103]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.626563,48.837094],[-2.030375,48.788125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.898,41.91],[8.00325,41.54275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.3,46.1],[-60.217,45.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.162,-14.028],[173.094,-13.942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20,-40],[11.108,-40.024]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.2535,38.9945],[0.333937,38.828812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.630594,38.774281],[0.743875,38.873375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.3965,48.123375],[-5.275812,48.1095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,50],[-30.1375,50.1055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.8195,47.18975],[-7,46.975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.113,38.915],[19.99275,39.06625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.217,29.254],[-92.4095,28.881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.537,-21.629],[-1.148,-21.216]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.683,37.611],[-74.531,38.308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.90025,38.70575],[9.009,38.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.564,28.596],[-96.364,28.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40,-40],[40.001,-39.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.769625,53.588031],[6.74775,53.742875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.77825,57.569],[11.654469,57.646875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.2375,32.5435],[14.506,32.769]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.5125,65.51375],[-24.9,65.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.0705,49.00275],[-7.029,48.807]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.64,62.793],[-165.692,62.391],[-166.3,61.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.04875,39.585],[19.9585,39.66825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.17,54.124],[1.4165,54.092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.175,35.527],[-8.168,35.381]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.99,52.488],[-130,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.9875,39.214],[17.896,39.107]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.305,40.754812],[13.462375,40.718906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.27075,17.0405],[-64.181,17.157]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.869,61.062],[1.002,61.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.532,0],[65.021,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.9425,42.22775],[10.732531,42.291219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.943,57.286],[8.84,57.2805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.925,36.483375],[21.59425,36.52275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.5655,59.91625],[22.31625,59.8845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.138,56.841],[-5.119,56.823],[-5.259,56.703],[-5.406625,56.604875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.990547,54.009406],[8.096453,54.026688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.891,27.093],[-75.789,26.774]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.9,52.6],[167.871,51.061],[160.925,48.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.591789,59.890969],[25.586,60.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18,-35],[13.909,-32.534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.906547,43.517922],[15.867625,43.353875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.286406,50.68193],[1.407969,50.850938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.112,57.844],[-6.16625,57.983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.4435,71.1135],[24.510156,71.015938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.725719,47.313563],[-6.915,46.906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.39675,39.8115],[24.36175,39.533281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.69,-17.066],[122.06175,-11.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-14.492],[180.754,-15.795],[-180,-17.821]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85,-15.17],[-80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.934,34.3615],[35.073,34.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.807625,54.413125],[14.628,54.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.112875,43.403375],[7.852,43.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.5905,15.75075],[-73.3215,14.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.603,50.673],[-10.754,50.708]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.429,11.4945],[120.05,8.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.376,-34.639],[152.54,-34.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.088,5.124],[157.241,7.29]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.426,60.948],[-64.5,61.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.464344,37.906844],[25.488766,37.681125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.687,41.243],[-127.67,42.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.7,46.8],[-53.06,46.606]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155,35.386],[160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.88475,37.031375],[11.719938,37.163031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.404,39.78525],[13.295,39.793]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.368117,50.268758],[-0.19275,50.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.225,56.070875],[20.029,55.944]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.605922,54.988219],[11.872,54.725],[11.8145,54.60525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.907094,58.345531],[11.001219,58.291938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75.3,9.7],[74.3,12.4],[73,15.3],[72.4,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.948,34.405],[-155,35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.264625,38.748],[10.25175,38.560375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.50125,38.4285],[-9.607875,38.47475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.877,26.436],[-73.3325,26.57925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.7865,57.316],[20.6345,57.294]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.415,48.906],[-6.035234,49.205703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.175,64.111],[-15.299,64.1895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.45025,56.354375],[-2.384,56.611031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.938438,47.132688],[-2.994,47.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.2155,57.352],[17.175875,57.011625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.963688,43.633125],[8.800363,43.646438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95,-35.386],[-99.98125,-39.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.315,37.2935],[-11.78,37.4195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.252438,50.074],[-1.290781,49.913063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.751,58.8205],[-3.222,58.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.165,60.359],[19.972,60.424]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.243063,56.447688],[20.1155,56.3765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.819,48.314],[-5.7805,48.216]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.234,64.748],[21.9895,64.50825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.581,38.92],[24.779438,38.804688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.06775,36.97475],[2.182,36.678],[0.51875,36.50425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.333,34.743],[25.64,34.797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.311,-38.168],[166.669,-38.794]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.861125,52.4445],[2.890125,52.232375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.311,51.105],[-10.773,50.963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.896,39.107],[16.862,38.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.091,29.844],[124.891,29.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75,-53],[-75.492,-52.704]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.7045,44.886844],[14.625875,44.79225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.687,70.758],[4.152,70.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.086,52.773],[-10.373,52.4085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.483,58.275],[0.801,58.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.272,60.552],[-165.39,60.376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.568,46.255],[-160.58,42.439]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.608562,41.1935],[13.496125,41.155375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.905,39.207],[12.378,39.8945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.009,32.825],[34.782,32.9665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.028,28.116],[-87.734,27.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.6915,47.801],[-5.778,47.647]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.618313,57.603188],[-1.51975,57.5545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.93675,52.1415],[3.153,52.3015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.203,37.918],[11.327,37.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.923,44.301094],[13.6335,44.21175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.994,47.025],[-3.02925,46.86475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.28425,38.16775],[20.383469,37.928031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.692,33.729],[-8.397,34.267]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.85575,65.947],[-23.486,65.876],[-23.747,65.932],[-23.85575,65.947]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.504,-8.533],[-165,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.6655,40.587],[-10.543,40.848],[-10.375,41.251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.486,54.257],[0.064,54.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.732,51.1485],[2.9245,51.2465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.906,54.483],[11.001008,54.403805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.3215,36.9595],[-12.395,36.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.4685,39.2315],[1.661,39.196],[1.82,39.176],[2.030938,39.152375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.685,15.481],[-156.376,15.466]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,7],[-81.646,5.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.813,-33.771],[115.133,-34.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.264,64.918],[-24.9,65.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.087,43.188],[-10.67,43.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.752,51.654],[-9.898,51.642],[-9.913,51.635],[-9.915,51.6375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.346,55.1575],[18.3315,55.449875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.649891,36.446328],[23.827125,36.454781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.013,5.294],[128.359,4.048],[127.586,2.888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.394,-28.425],[100,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.061625,57.933375],[9.209812,57.838719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.5075,46.1365],[-4.448,45.991]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.189,52.548],[2.33525,52.56475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.342,54.284625],[11.308344,54.149055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.273,36.750625],[-7.78925,36.71375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.349,48.593],[-6.26125,48.4115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.817,38.9955],[3.947,38.824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.73975,64.621],[22.193,64.873]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.083047,39.066297],[8.150078,38.904078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.137,56.2355],[20.243063,56.447688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,40],[-140,40.202]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.9485,59.276],[19,59.048]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.568,26.163],[-91.9205,26.21525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.20975,35.32325],[28.881,34.656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.622188,37.603781],[26.475707,37.775152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.851922,50.612422],[-1.582625,50.663031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.1795,42.94],[15.324727,42.953508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.979688,38.186562],[11.74975,38.2715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.072969,36.014047],[26.799813,36.065156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,12.135],[-110,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.8215,57.0355],[20.814687,56.695625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.71,-6.685],[-80.841,-6.527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.011,5.368],[128.378,7.877],[130,9.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.598,-20.05],[-2.645,-20.037]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[79.567,5.951],[75.956,6.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.938875,41.14975],[3.002,41.072]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.413,44.412],[13.341,44.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.666,4.756],[125.768,5.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.001,43.639],[-22.458,42.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.073,32.487],[143.1,33.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.593,49.552],[-5.62575,49.34825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.311906,60.771219],[19.152625,60.6845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.767,38.272],[-137.201,37.417]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.998203,51.880914],[2.628,51.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.031,57.631],[22.8835,57.739656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.892,6.947],[121.762,8.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.155,28.718],[-14.954,28.334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.611,37.170625],[15.981,37.297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.99125,61.414],[19.007,61.559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18,21.001],[-19.939,22.492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.578,61.65275],[17.722,61.484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.693,58.474],[-1.778,58.673]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.707,31.671],[31.4535,31.7185],[30.087,31.744]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.001,33.632],[-40.001,31.604]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.001,31.389],[-137.778,32.416]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.0675,42.089],[19.0095,41.9535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.231,52.07975],[-5.422125,51.954]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.423,51.262],[-6.123,50.798]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.761,-0.772],[-100,-0.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.667,30.202],[-70.592,30.034]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.666625,59.755875],[4.711344,59.493687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.073,28.188],[-95.101,28.746]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.310437,36.650125],[25.465227,36.639328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.269,44.009],[28.9945,43.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.89,43.04925],[4.644,43.1015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.335,44.621],[-152.342,42.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.411812,45.124281],[13.319562,45.058781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.321125,60.134563],[21.242,60.3765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.482,45.205],[-14.289,43.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.788,45.126],[14.828469,44.979125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.208,13.491],[-161.27,16.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.35275,36.97275],[24.310875,36.852719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.59,48.57],[-150.001,48.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.949,53.373],[1.0795,53.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.639375,44.56475],[14.43557,44.48393]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.478,1.442],[104.591875,1.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.541,70.88],[-147.183,71.016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.176,42.329],[15.390937,42.396812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.84,57.2805],[8.742,57.23725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.081,61.929],[4.773984,61.835141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.675,35.481],[-12.8725,35.468]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.186,56.805],[19.154062,56.9635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.085875,42.980563],[3.45425,43.04375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.50275,51.828812],[2.155,51.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.711844,45.123281],[13.038885,45.242312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.781938,41.724312],[11.759313,41.905906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.593625,64.693375],[22.246,64.5555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,-25.277],[-125.15,-25.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.375125,39.399687],[25.31725,39.29175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.7865,57.316],[20.853125,57.20875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.321,22.752],[-86.165375,22.086781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.821,49.522],[-6.806,49.336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.215,42.3325],[17.312594,41.849781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.78,52.446],[-149.696,53.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.57,59.807875],[24.673938,59.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.087,42.536],[29.439,42.614]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.448219,36.698781],[23.585266,36.680078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.147,-16.012],[-144.063,-16.094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.49475,56.37125],[-0.166,56.556]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.068172,43.096422],[16.117,43.111],[16.165,43.116],[16.221594,43.099391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.0475,40.32075],[24.898125,40.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.483469,55.693687],[15.58575,55.59375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.929971,18.801602],[-76.665109,18.760476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.000625,55.193375],[17.008,55.3205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.806,0.7485],[50,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.693,0.922],[-89.594,2.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.399875,55.542375],[15.298031,55.545687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.523,10.65],[-61.786,10.65],[-61.7985,10.6865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.166625,57.291313],[8.04525,57.22125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.732742,37.148824],[24.622062,37.143313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.772625,54.616875],[13.848451,54.48759]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.6685,65.542],[39.103,65.071]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,49.813],[-140,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.718,34.692],[-72.85,33.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.001,-27.124],[0.001,-25.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.115,55.834],[7.0165,55.547187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.304,21.766],[-73.88475,21.62225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.519,67.755],[14.434,67.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.2555,36.778],[15.436141,36.939063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.886,56.762438],[11.928,56.839],[11.944,56.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.134,12.652],[-112.56,16.222]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.646,50.062],[149.093,48.49],[146.516,47.513],[145.9725,47.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.298,63.71],[-23.0095,63.7755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.865,46.9165],[-3.02925,46.86475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.562156,44.333625],[14.43557,44.48393]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.3515,29.281],[-89.255,29.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.889,39.529],[-9.95,39.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.558,-20.592],[160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.356344,42.7935],[6.244656,42.836906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,-35.386],[-130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.998,-33.533],[-23.139,-33.412]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.148,34.337],[21.469,34.553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.321188,42.005],[11.074531,42.170063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.175,64.111],[-15.147,63.971]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.261,70.047],[18.725,70.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.619875,61.102125],[19.462,61.169]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.715969,55.6495],[14.73575,55.82675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.641,39.408],[-29.9785,39.00525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.196094,59.917375],[24.193,59.714188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.901,37.585],[-10.703,37.724]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.004,44.147],[8.881109,44.035281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.038625,56.14575],[15.819687,55.97925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.637,37.786],[8.130125,37.831125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.44975,55.49825],[16.547,55.37925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.076,10.029],[-35.958,9.9915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,-60],[-61.193,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.592,43.651],[31.699,43.352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.963188,56.625062],[7.934,56.01675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.214,43.747],[-9.755,44.017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.9415,36.116],[26.799813,36.065156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.214,20.058],[130,20.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.868109,42.674766],[8.906,42.841]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.8,26.3],[-77.723,26.778]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.832,55.579],[12.944375,55.63025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.83,33.92],[-14.737,31.675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.06275,43.382937],[-3.205,43.455],[-3.375,43.5385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.46325,36.31475],[-4.506,36.301],[-4.657,36.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.946,58.301],[-1.883,58.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.24507,57.844516],[11.127031,57.969063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.76575,59.85875],[19.867,59.754]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.014,60.267],[-0.933,60.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.788375,43.8085],[9.9175,43.7535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.192812,37.770094],[24.281781,37.682961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.7605,21.986],[119.723,22.081]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.975734,43.784],[8.938125,43.935781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.751547,42.256609],[14.675,42.504188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.708922,54.714859],[-5.874781,54.636672],[-5.562057,54.684709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.533,41.884],[5.011625,42.028437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.313875,36.956375],[23.442625,37.017625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.828,39.26875],[14.676,39.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.8185,49.741],[-1.668875,49.755125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.7725,35.911],[-8.983,35.909]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.5575,36.08125],[22.3185,36.11475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.533844,56.391094],[-5.406625,56.604875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,20],[-150,21.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10,-50],[10,-40.707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.782,44.24],[-8.0585,44.106]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.575,40.65925],[1.67475,40.81775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.029,54.344],[5.06325,54.242375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.783,-17.341],[-154.106,-14.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.44225,41.46575],[12.528313,41.390375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.24625,57.42375],[19.49625,57.26325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.278859,40.599051],[14.401742,40.703406],[14.29215,40.781631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.947969,59.681281],[4.889375,59.896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.71725,59.737344],[19.725062,59.536187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.731,-8.515],[135.458,-8.771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.268,49.589],[-6.134,49.447]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.648875,48.813688],[-2.938,48.808]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.673,39.0175],[0.81,39.197]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.411,17.802],[-75.908,16.961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.2665,58.0935],[4.369375,58.096125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.332,61.1705],[18.449,61.129562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.418,-1.256],[107.589,-1.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.27075,17.0405],[-60.01975,19.973625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.48,32.124],[-79.8,32.75],[-78.875,32.511]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.89,-45.405],[-10,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.564031,55.702922],[10.70325,55.688766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4,4],[-2.369,1.108]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.5275,57.1665],[17.695875,57.140875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.39,-20.061],[-111.568,-18.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.639656,54.793781],[18.788375,54.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.193,59.9485],[20.38425,59.75125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.014375,39.588313],[25.02875,39.39625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.148,-30.016],[-90,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.167,46.426],[-3.64,46.202]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,35.386],[-33.731,34.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.194,59.777375],[23.257469,59.677742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.613,64.483],[36.3485,64.5915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77,-13.7],[-77.699,-12.002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.327875,56.923625],[19.4295,56.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[97,13.788],[97,16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.557,36.355],[14.706484,36.403008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.441813,52.015906],[3.312875,51.918125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.543,39.821],[25.5,39.677]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.057,27.015],[-74.352,26.892]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.9805,52.55825],[-9.949875,52.440313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.167,49.85],[-142.608,47.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.09,38.071],[-134.818,38.823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.049,36.4915],[14.1195,36.57825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.94375,53.539875],[1.049,53.609],[1.214375,53.652]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.5,-21],[-176.571,-23.234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.336,-0.726],[125.5,1.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.8,5.7],[125.768,5.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.842281,42.673063],[9.941361,42.586406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.225,56.070875],[20.67425,55.83475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.301738,38.272168],[13.334937,38.390125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.650125,53.747875],[0.5225,53.7095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.955,52.857],[-179.312,52.383],[-180,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.450445,64.356875],[22.817406,64.030812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.969,46.591],[154.651,47.251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.802,-6.09],[123.781,-5.072]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-103.448,73.403],[-99.994,74.456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.716375,42.049],[9.781844,42.169281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.9,40.38175],[2.790875,40.621656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.535,42.227],[8.489227,41.981977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.837977,55.960992],[11.824,56.1365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.892469,49.848457],[-1.841031,49.984406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.116,53.365],[-38.164,53.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.049031,42.630125],[17.9225,42.523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.568,48.142],[-6.668,47.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.94,43.48],[-8.848,43.58175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.005,52.8665],[2.377,53.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.8445,-14.548],[174.246,-15.2785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.999,22.746],[139.999,24.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.001,33.34],[-55.869,34.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.614,-12.263],[11,-19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.315375,38.36275],[25.431312,38.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.896,8.918],[69.6745,8.6815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.336675,36.397749],[22.33625,36.397937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.369,50.739],[-141.171,52.348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.841,45.159],[-5.955,45.106]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.5329,42.734301],[9.615,42.559125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.076906,43.521563],[6.944125,43.422625],[6.811125,43.367094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.028,35.462],[13.823,35.719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.041,-39.627],[149.446,-40.852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.197,40.0055],[0.069344,39.92525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.724063,57.16375],[10.5125,56.93825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.800363,43.646438],[8.834906,43.888906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.207,23.704],[134.248,26.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.9695,54.889],[18.992875,54.742188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.1,-39.908],[-99.98125,-39.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.979,58.1875],[5.914188,58.028562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.969508,55.613234],[15.812328,55.619172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.094,34.304],[130.233,34.383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.751042,37.436962],[23.73993,37.28957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.09875,43.135898],[10.2275,43.113875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.341,44.621],[13.5225,44.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.731156,43.03925],[5.601,42.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.056625,55.026859],[18.98075,55.10025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.9,24.6],[-81.112,24.627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.438,-37.635],[100,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.5735,48.60675],[-6.7675,48.253]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.8515,53.2035],[4.626891,53.269203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.52375,65.29675],[-13.546375,65.172562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.78725,40.66125],[-8.725,41.081]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.3445,34.844],[139.3,35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.239,3.852],[-89.594,2.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.063,35.076],[-12.8725,35.468]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.617687,65.598187],[-13,65.922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.10725,50.839062],[1.117568,50.834391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.137375,41.205781],[9.955953,41.245672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.4,-3],[134.423,-4.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.888,35.9465],[14.008,35.948563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.4365,55.290625],[17.60025,55.279375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9885,58.0805],[-2.007,58.122],[-2.053,58.176],[-2.08425,58.217]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.5845,58.22875],[18.435875,58.189125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.853,25.867],[-86.685,26.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.00275,42.4215],[5.128,42.647]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.238969,55.420187],[8.016813,55.50325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.447828,42.400266],[14.514,42.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.8515,53.2035],[4.83625,53.406227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.254125,50.21425],[-0.368117,50.268758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.1565,62.379125],[5.494,62.203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.565,56.855],[-134.472,56.148],[-134.938,55.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.5805,55.0505],[-8.6925,54.9265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.909,21.391],[-74.44025,21.20575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.641375,58.169719],[5.632688,58.402563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.755,45.639],[36.738,45.458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.47,58.224375],[17.593469,58.146406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.538,20.533],[-92.7515,22.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.15,-25.135],[-125.006,-24.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.588,34.884],[26.3455,34.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-10],[-105.648,-5.703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.279688,59.704375],[22.192,59.395625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.222,56.183],[-2.05875,56.04875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.002,36.05],[-40.001,33.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.315,65.203],[8.208,66.316]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.411719,38.901266],[8.4685,39.038],[8.560625,38.823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.201,37.417],[-138.556,38.667]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.835719,53.408313],[-3.729375,53.375937],[-3.627719,53.392437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-3.168],[-108.678,-3.938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.592,30.034],[-70.492,29.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.15,50.924],[-8.041,50.789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.125203,44.1815],[14.179625,44.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.466,32.319],[-60.001,33.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.222562,58.61375],[11.245,58.676],[11.258,58.665],[11.222562,58.61375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.248,26.91],[133.395,27.951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.175,9.055],[-80.528,9.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.648383,54.80768],[-0.599,54.643]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0505,54.339],[7.950602,54.250352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.967,50.653],[-5.092875,50.8015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.852,43.283],[8.220344,43.037781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.226,59.127],[10.233,59.103],[10.311891,59.01743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.939,36.22],[-73.269,35.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.391,51.617],[-6.178,51.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.766,54.988],[17.991219,54.888781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.559312,55.7235],[20.271,55.729]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.78,-30.267],[-45.63,-30.366]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.214,26.341],[-79.38,26.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.667,66.303],[-19.743,66.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.770766,35.906578],[24.967281,35.9845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.919,39.109],[-71.626,38.516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9885,39.896],[5.0745,39.97075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.218,35.8535],[-6.345,35.827]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.993375,57.26875],[-6.957,57.36],[-6.887375,57.440375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.773,-15.071],[54.684,-14.364]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.744,57.114],[16.6615,57.019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.326,53.074],[4.97725,53.05975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.7085,38.8815],[12.790188,39.014688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.111,58.083],[0.274,57.948]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.582,50],[-40,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.9195,54.919875],[14.671,54.721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.961,44.322],[14.920203,44.198094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.678,-3.938],[-105.648,-5.703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.5435,36.8875],[21.40825,36.68125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.499,41.862],[9.557,41.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.5335,42.158],[10.461437,42.272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.841031,49.984406],[-1.728145,49.875125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.562,17.333],[-87.466,17.619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.838,-53.311],[-40,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.975875,53.351812],[-4.23125,53.4315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.782406,40.969906],[9.881,40.846],[9.896625,40.681125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.032,39.59575],[10.136688,39.241187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.535,47.884],[-10.462,46.946]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.473,19.9995],[-66.4395,19.8495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.1175,30.3905],[-79.274,29.688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.015,52.817],[-5.8465,52.78125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.827125,36.454781],[23.875875,36.610687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.140313,45.131125],[12.993453,45.124258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.2745,21.14],[-73.899,20.2085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.396195,36.376578],[25.348,36.434]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.00875,26.148],[-133.351,26.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.999,-2.158],[66.709,-3.334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6375,56.6925],[5.878,56.763]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.303,39.425313],[19.1535,39.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.514625,41.004563],[2.6015,40.8335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.181758,38.338969],[26.254,38.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.063656,46.314531],[-1.919,46.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.886,34.514],[33.819,34.539375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.643375,59.616844],[23.524,59.64],[23.381172,59.662922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.831,16.38],[113.113,16.507]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.766875,37.08575],[15.886,37.207],[15.981,37.297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.02525,38.69325],[10.891,38.527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.621,34.539],[30.735563,34.47975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.868,-25.152],[-32.375,-27.634]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.91425,62.432375],[5.587,62.332]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.678,56.7105],[20.564,56.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.320359,54.993281],[10.126158,54.943963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.249,31.525],[-71.121,31.234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.589875,56.393375],[6.153,56.241]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.048828,50.385953],[0.07,50.217125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.217,49.290875],[-4.301,49.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.365375,35.48075],[-8.342,35.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.712,42.172],[15.013125,42.132625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.468,34.767],[121.034,35.921]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.954,53.825],[14.1,53.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.9775,35.743469],[24.203875,35.832875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.989,60.3815],[22.109,60.399625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.952,36.2245],[28.400875,36.420125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.322,31.471],[-77.667,30.809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.595,64.684],[39.783,64.576]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.4265,39.3425],[0.641625,39.316125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.004,63.941],[36.613,64.483]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.344,40.035],[-52.57225,42.61175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.763875,64.873109],[-13.6875,64.6715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.610125,35.743625],[24.770766,35.906578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.611937,39.130188],[14.669,38.9545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.019367,57.973977],[11.127031,57.969063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.28675,5.76875],[130.013,5.294]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.701,41.848],[-69.527,41.592]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.712938,38.337313],[12.536625,38.329625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.48975,56.506125],[12.438195,56.321961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.998,-35.12],[-35.329,-35.079]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.668,53.744],[-131.2,54.3],[-130.33,54.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.576,41.297],[8.02,41.297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.968,39.1375],[9.722,39.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.0615,54.1775],[6.256797,54.157672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.219891,45.249109],[13.233531,45.409594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-106.834,-3.208],[-110,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.242,35.1425],[32.308344,34.708]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.875125,39.163875],[19.776,39.083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-20],[-95,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.239,66.36725],[-23.435,66.311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-40],[-4.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.692164,42.73807],[9.752455,43.003715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88.904,-1.112],[85,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23,15],[-23.712,15.528]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.066,24.459],[118.053,24.46],[118.344,24.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.116,65.0035],[-23.874875,64.934438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.002,-33.572],[18,-35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.104,31.201],[143.01,33.272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.326,40],[0.17025,39.9145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.963,35.957],[27.072969,36.014047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.592422,57.555328],[10.706809,57.743219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.333969,36.419],[26.579297,36.488062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.337,52.54],[13.203,52.603],[13.327,52.819],[14.154,52.888],[14.598,53.612375],[14.511875,53.678],[14.405,53.755],[14.307125,53.777125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.522234,43.606953],[15.675179,43.535677]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.539281,40.203156],[14.598,40.097],[14.677,39.904]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.184,44.493],[-61.653,44.706]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.089152,62.212629],[21.1205,61.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[101.752,-27.492],[103.394,-28.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.786625,60.099375],[4.663125,60.19175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.593,60.69],[-53.2,63.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60.718,10.754],[65.037688,10.012625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.632219,43.586016],[-5.464,43.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.0115,54.309],[7.12525,54.292687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.918,43.594],[-5.642375,43.70525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.282,54.397],[7.305438,54.271844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.622344,35.928063],[-6.68725,35.7515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.6,-46],[171,-42],[172,-40.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.526,37.298],[-9.4085,36.9005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.0635,48.824],[-3.934781,48.869406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.455,48.951],[-153.97,46.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,20],[70,18.433]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.3,0],[-106.346,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.39125,62.12425],[5.531,62.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.26,-55.905],[-61.193,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.626563,48.837094],[-1.848,49.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.816375,37.652375],[6.85,37.42575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.3485,64.5915],[36.09,64.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.06,10.301],[-81.153,9.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.647,24.926],[-67.081,27.243]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.5945,66.034],[-20.746,66.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.781,-1.806],[-20,-3.281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.388687,59.108156],[5.345264,59.233676]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.883,58.186],[-1.675188,58.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.0805,58.149],[-2.914094,58.455031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.687,41.947],[18.56775,41.8995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.355,56.604],[10.421875,56.718688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.34325,41.5275],[12.44225,41.46575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.029,25.115],[-80.797,24.513]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.623125,39.099625],[26.867,39.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.286,69.502],[16.986,69.5195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.951906,50.026156],[0.669,50.041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.089,59.315],[13.567,58.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.97,61.84],[4.937,61.83],[4.773984,61.835141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.188,-23.802],[110.6085,-22.90075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.653516,44.614742],[13.674945,44.780828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.541906,42.961406],[9.507781,42.861344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.62875,39.09075],[23.7155,39.0235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.999375,43.83025],[14.763562,43.988937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.6025,65.2295],[-23.70875,65.088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,20],[136.997,20.042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.7085,40.73375],[2.562,40.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.5755,54.02],[5.9485,53.868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.428125,54.877531],[15.557086,54.990539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.604,36.4765],[34.689,36.3035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.254,16.847],[-78.712,17.954]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.9055,24.34],[-69.009,20.803]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.002,-34.691],[5.833,-34.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.679,44.532],[37.83,44.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.902,-14.326],[-170.739125,-14.418875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.244,-34.614],[107.438,-37.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.052,34.348],[35.073,34.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.63,-30.366],[-43.394,-26.942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.1,-3.7],[125.362,-0.489]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.69225,40.666],[18.575,40.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.242875,38.81175],[25.282,38.70625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.572,22.98],[-21.75,23.877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.2955,40.441],[-69.773,40.487]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.651,-1.368],[-30,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.879,-16.231],[153.643,-16.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-40],[-164.089,-36.227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.9535,38.697],[122.173,38.322]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.279,49.829],[154.356,47.132]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[96.716,-4.2],[99.947,-5.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,4.836],[-140,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.532,55.9855],[6.486,55.741]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.78,50.225],[-11.67,50.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.965,28.037],[122.872,28.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.184375,62.250125],[21.316,62.258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.6255,34.0145],[29.696,33.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.22525,57.38825],[-0.9475,57.1615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.25,30.005],[-156.514,30.065]]}},{"type":"Feature","properties":{"pass":"dover"},"geometry":{"type":"LineString","coordinates":[[1.584432,50.986559],[1.522187,51.093812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.825625,39.800625],[13.92475,39.760375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.6115,44.854],[-5.574,44.586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[93.8105,-41.4805],[91.769,-41.887]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.124805,53.676789],[7.127125,53.823289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.223039,58.342094],[11.177086,58.213051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.25125,46.65675],[-2.063656,46.314531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.9735,62.7375],[6.34,62.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.499,36.225],[15.649125,36.286375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.092625,38.133375],[0.17425,38.0435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.35875,54.260125],[-5.5835,53.9915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.9765,71.1925],[31.4155,70.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.5385,43.0485],[16.511969,42.932844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.7,32.839],[-52.558,32.782]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.504,39.913],[18.385406,39.761953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.043,14.236],[-58.676,14.838]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.12175,41.51675],[2.876,41.408]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.755,31.203],[29.265,31.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.58375,54.626375],[12.34675,54.536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.087812,42.21875],[16.036406,42.372375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.8495,41.5255],[3.179,41.61225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.0055,-9.99425],[50,-2.019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.588,34.884],[26.656,34.712]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.7015,35.80725],[23.172,35.80525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.3385,53.412],[2.618,53.392]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.279,51.287],[-12.137,52.567]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.5795,41.6295],[18.71,41.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.279688,59.704375],[22.38,59.592],[22.481,59.531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.032875,58.401687],[9.21575,58.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.763016,37.420797],[26.913266,37.335828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.096687,58.556562],[10.014125,58.300438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.219125,57.452375],[8.291437,57.324875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.282,54.594],[6.256797,54.157672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.615625,36.79425],[21.40825,36.68125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.0495,50.13675],[0.6595,50.30075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.2825,55.17125],[13.143,55.133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.437,38.983],[3.563,39.062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.86,52.696],[3.175125,52.7395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.53075,40.0375],[19.443,40.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.801,16.923],[-72.259,15.65825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.1685,62.892125],[20.092,62.60125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.393,42.497],[36.394,42.646]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.963,45.5505],[-3.7185,45.7765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.042969,43.42407],[16.012125,43.311875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.648,-5.703],[-103.814,-6.771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.143,0],[-28.651,-1.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.2315,55.50075],[7.01575,55.429375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.451637,38.456365],[15.374844,38.326188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.873,40.482],[14.043023,40.375594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-20],[-10.796,-20.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174,-34],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-20],[-96.269,-20.052]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.891,-45.405],[-110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.659,39.505],[6.555,39.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.362,50.025],[-5.275,49.938875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.5,-10],[152.592,-11.504]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.003,-11.788],[-128.707,-11.357]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.958,9.9915],[-34.426,8.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.23675,56.376],[5.127,56.182]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.451,-3.435],[125.321,-4.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.192,38.709],[-72.002125,38.15475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.519,20.509],[-168.602,20.157]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.108432,19.972234],[-65.478,19.888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.475,35.387],[24.564125,35.614563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.014,54.472],[-4.182,54.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.8,60.245],[-3.833,60.048]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.268,-31.379],[-109.999,-32.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.106,34.7],[27.452,34.691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.231,20.659],[-22.851,20.679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.054,8.175],[65.03125,5.06775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.90925,48.273438],[-5.102625,48.304969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.52275,44.891],[36.51325,44.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.001,33.36],[-30.001,32.969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.29875,38.2425],[15.188937,38.332734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.998,36.001],[30.905,35.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-30],[-84.61,-35.006]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.933375,41.962781],[15.703383,42.106164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.3175,65.0265],[25.135,65.096]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.411875,57.094813],[19.65,57.1585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.84475,54.137187],[6.846,54.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3605,53.059],[4.1335,52.85625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,67],[8.047,67.671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.3435,-23.608],[166.314,-22.4065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.499,41.42925],[10.472,41.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.339,4.383],[1.708,4.774]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.2045,39.0915],[-13.755,38.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.05525,37.15075],[2.838,37.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.364,66.27925],[12.182,65.946],[12.205,65.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.832344,44.290719],[29.052,44.697],[29.5915,44.73925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.375937,57.017969],[20.2605,56.950063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.5915,44.73925],[28.832344,44.290719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.492,38.493],[10.548,38.391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.9805,53.5575],[-4.067,53.6655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.001,23.197],[-45.125,25.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-40],[-149.999,-38.629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.766,35.618],[139.766,35.307]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.0505,37.27225],[12.832,37.335],[12.694438,37.352875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.037,27.131],[141.66,30.031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.156445,54.451172],[11.969812,54.525078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.942,50.981],[-22.407,52.508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.944,57.886],[-0.7585,58.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.534,43.563],[-2.995687,43.5465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.511547,56.048703],[10.374312,56.094562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.722,61.484],[17.957,61.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.81,11.456],[-80,9.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.031125,41.131],[1.95825,41.044]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[112.175,-6.279],[111.9,-5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.48575,50.30325],[-1.528859,50.208109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.367,35.455],[26.354,35.607]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75,-53],[-73.208,-55.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.183,56.078],[-2.388,56.102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.021,0],[64.733,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,7],[-78,3.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.567,49.007],[-2.776875,49.154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.3,27.8],[122.225,29.837]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.46925,60.756625],[19.671,60.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.073563,41.45425],[11.01,41.599]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.336312,37.837047],[24.281781,37.682961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.356,-32.822],[-47.768,-32.377]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.521,6.37],[-94.935,4.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.883227,36.766941],[26.999023,36.667992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.547,71.089],[19.694,71.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.7825,43.889375],[14.6575,43.849969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.434961,41.205898],[9.311656,41.372172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.249,58.37325],[21.17,58.304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.742375,38.453875],[12.63275,38.44775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.975,59.126],[22.788625,59.436875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.753,41.397],[-169.524,41.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.163,-36.158],[26.0055,-34.501]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.965,57.343],[20.7865,57.316]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.359,61.723],[4.556031,61.746641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.108,35.232],[-74.917,35.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.965219,53.57975],[4.959,53.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.401,35.394],[-74.634,35.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.452469,43.254219],[9.445383,43.100578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.07375,30.10275],[-87.289,30.232]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.530828,53.493547],[-3.397781,53.62625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.178,51.645],[-5.9585,51.6985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.578,-3.971],[57.544,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.212,58.238],[1.501,58.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.023,50.301],[0.048828,50.385953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.5905,56.392625],[4.8455,56.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[146.113,20.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.106,54.3495],[13.46,54.209125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.24575,43.78075],[9.284562,43.64225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.75,65.1835],[-23.8545,65.1155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.034969,65.871219],[-24.3625,66.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.591,35.533],[35.7,35.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.517,58.516],[-2.493,58.7145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.841437,36.615871],[26.883227,36.766941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.819,48.701],[-4.7145,48.721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.016,-18.491],[153.337,-23.766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.387,61.0135],[17.51,60.993]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.002,-33.86],[10.002,-33.572]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.837,56.741],[-134.938,55.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.881813,56.794063],[-2.167,56.619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.803,63.069],[7.223,63.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.91425,66.23075],[-18.976,66.919]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.898,35.253],[-3.787,35.6945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.749,43.224],[4.959625,43.261375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.98525,54.511],[-10.052,54.322],[-10.114,54.295],[-10.325,53.817],[-10.3515,53.68225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.12325,28.879],[-16.0945,28.55275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.066,49.9695],[-2.089062,49.832188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.99,52.488],[-129.506,50.987]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.8,-5.25],[-32.507,-3.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[62.607,16.551],[59.445,15.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.42,9.112],[140,8.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.872156,50.465688],[-0.756875,50.435437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[56.438,26.495],[56.27,26.402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.98125,-39.996],[-93.73,-44.177]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.72275,58.498],[4.4465,58.40925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.8145,57.23875],[17.883,57.077],[17.914562,56.956187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.575125,57.16825],[18.562125,57.032]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.847859,47.767328],[-4.97325,47.97775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.081,14.588],[65.037688,10.012625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.265,59.326],[4.139,59.307],[4.006,59.29],[3.9625,59.297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.615,38.846],[11.463,38.8435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.955,45.106],[-5.8835,45.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.488938,40.038406],[14.676,39.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.6445,19.8355],[-66.473875,19.311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.1375,50.1055],[-31.582,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.685,42.592],[-40.002,42.707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.365992,57.405602],[11.233766,57.507234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.127938,54.944875],[16.042125,55.0455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.736,38.6895],[12.86075,38.8845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.18977,37.595664],[24.267576,37.466994]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.724,22.198],[119.723,22.081]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.893,-17.372],[-149.783,-17.341]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.521,36.357],[-126.187,36.481]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.67725,35.84575],[29.5295,35.9025],[29.3605,35.9945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.73175,35.95725],[23.551781,35.825375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.777,39.688125],[13.862,39.634]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.494,10.655],[-79.555,10.547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.637,37.786],[7.61625,37.5905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-30],[-42.402,-32.612]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.648,-5.703],[-105,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.114,54.625],[5.11875,54.781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.373,36.6625],[14.185484,36.698141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.830938,54.952],[18.895,54.797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.11375,43.244625],[10.2275,43.113875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.8115,43.554],[-1.96,43.55375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.313,-27.198],[70.001,-25.809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.612,59.135],[-162.638,58.466],[-161.397,58.362]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.172453,54.831187],[12.9345,54.67425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.416,58.758],[2.159,59.143]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.151,-6.153],[-81.279,-5.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,30],[155,35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.759906,42.419344],[9.72375,42.275375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.722,-8.823],[176.937,-9.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.87675,56.87575],[18.9095,56.9715],[18.931188,57.114]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.732,68.49],[-101.61,68.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.367,-35.038],[-26.999,-33.263]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.498,61.148],[-3.887,61.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.36725,40.08575],[24.405625,39.9515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.013375,37.744625],[20.78275,37.4845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.018937,62.395094],[19.816,61.808]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.918109,36.127172],[24.845813,36.259187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.398,47.694],[-3.511,47.665],[-3.6535,47.638]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.742,40.675],[14.68259,40.563051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.657187,41.106875],[11.73825,41.006188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.656,13.9785],[-75.164,13.697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.192063,54.184531],[7.305438,54.271844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.325,52.066],[-138.9,53.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.60125,58.962],[-3.453,58.8155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.493125,55.54575],[12.233,55.4585],[12.488875,55.328594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.0715,58.8095],[17.9465,58.795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.436,64.782],[-13.33,64.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.544,10.419],[-75.729,10.891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.9,35.95],[24.0035,35.914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.23075,55.37825],[6.316562,55.509375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.915625,38.16525],[22.74275,38.1785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.115,62.461],[7.315,65.203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.304328,37.265297],[25.335969,37.149344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.999,24.08],[137.82,22.608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.356812,60.36925],[21.46925,60.35075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.341,53.102],[-25.711,55.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.183,37.816],[121.19,38.436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.187813,51.267063],[2.153977,51.413375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.393,14.422],[160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.63225,54.71875],[7.767188,55.361438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.828,18.269],[133.212,16.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.196094,59.917375],[24.356008,59.773688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.222,29.662],[-78.516,29.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.1205,61.925],[21.147,61.721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.847,10.023],[-48.346,11.736]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.971,47.38375],[-4.95,47.109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,20.001],[132.207,23.704]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.22475,56.46925],[-2.098,56.324]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.056781,42.458625],[16.86825,42.487547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.044937,43.551812],[14.2105,43.502]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.5735,37.804875],[20.692,37.663],[20.78275,37.4845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.38075,36.147875],[26.395313,36.314844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.38725,56.57775],[7.372797,56.478781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.532,-23.506],[170.676,-22.281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.895,44.9275],[-9.004625,44.778375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.047,59.771],[2.6205,59.586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.264,36.18875],[-2.596719,36.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.36425,66.2045],[-15.2995,66.482]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.574,41.191],[7.572,41.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.176016,54.423125],[14.21975,54.20425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.959,64.077],[22.817406,64.030812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.92,32.922],[14.539,33.433]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.046,60.464],[-0.551813,60.414812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.643,-51.917],[-90,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.439,1.46],[-145,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.177,34.526],[123.072,34.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.774,52.7975],[3.9,52.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.879,57.082],[-152,57.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.724,61.028],[-0.92,60.894]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.305813,40.422359],[1.779,40.2425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.623812,48.989594],[-5.837125,49.055563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.4665,61.749],[20.3185,61.60975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-10],[-125,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.5275,36.177875],[25.4705,36.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.509594,53.730672],[6.49425,53.83175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.4355,39.67525],[18.6675,39.587]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.11225,65.661],[-23.847,65.628]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.814344,53.521469],[4.66375,53.405641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.585375,35.853125],[27.702,35.7385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.136,48.725],[-6.257,48.736]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.079219,42.322922],[10.9425,42.22775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.789,-13.552],[172,-14.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-40],[-44.991,-35.378]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.02375,57.04825],[4.33,57.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.6645,53.90625],[2.2215,53.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[62.832,-37.386],[65,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.302125,67.72325],[14.181,67.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-98.025,-10.014],[-100,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-60],[-90,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.527375,58.41625],[20.666,58.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.504125,38.08125],[25.364375,38.108953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.71025,58.8615],[4.709,58.718]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.926,37.622],[6.816375,37.652375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.246688,55.863188],[16.356938,55.977063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.898,41.91],[7.80675,41.95375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.51975,57.5545],[-1.470125,57.394125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.8495,57.318],[20.12025,57.31275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.112,-45.402],[100,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.4705,37.3125],[-0.148,37.509]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.41275,41.799],[17.312594,41.849781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.632,53.5115],[-5.511687,53.391188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.643836,37.532453],[25.75025,37.608086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.9385,36.39],[21.6655,36.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.387625,41.58325],[11.3435,41.774687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.715969,55.6495],[14.585977,55.589227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-20],[-164.98375,-15.20575]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-108.895,74.599],[-111.296,74.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.3705,57.96675],[8.404813,57.840125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.790875,32.940375],[29.803,33.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.163,-12.722],[45.165,-12.695],[45.951,-13.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.61075,37.09],[23.591125,37.244969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.337141,55.427813],[15.36025,55.290125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.604,36.4765],[34.802,35.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-20],[90.188,-20.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.36,40.09925],[-9.665688,39.541438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.474734,41.922687],[16.627875,42.037047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.152625,37.529375],[-12.059,37.67175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.725,41.081],[-8.70175,41.1815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.50475,53.89825],[7.383047,53.934812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.625,-35.562],[138,-35.7],[141.001,-38.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.845844,57.967062],[6.730938,57.987078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.825125,40.679375],[1.62475,40.476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.203,36.956],[12.1615,37.0485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.999,-14.878],[-136.339,-13.808]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.809,-22.958],[111.836,-22.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.068625,18.51125],[-75.411,17.802]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.341,37.352],[17.629,37.352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.357625,53.318875],[0.419602,53.471922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.26,30.372],[-79.274,29.688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.057719,36.526059],[27.123125,36.415875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.077,59.223],[3.48175,59.2585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.477,14.999],[166.4,9.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.3145,58.13725],[-2.12775,57.97225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.96,49.5905],[-2.921625,49.43825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.928,38.51],[14.041,38.824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.52375,65.29675],[-13.336,65.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.61725,52.0575],[1.470594,51.9315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.787297,57.902203],[18.620699,58.013418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.423,-4.95],[129.913,-5.002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.13752,37.961805],[12.151,37.842]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.8445,-14.548],[177.594,-11.106]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.860656,38.392594],[13.114,38.337]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.077,57.184],[5.277,57.208]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-40],[76.746,-43.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.813418,37.781859],[25.8535,37.8855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.314,37.521],[-36.638,37.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.321094,38.646359],[23.146,38.734],[23.025406,38.817375],[22.839688,38.824313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.676,38.936],[26.544531,38.937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.436141,36.939063],[15.386314,36.822074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.75525,60.08475],[20.8975,59.954],[21.088938,59.994812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,40],[-60,39.341]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.007,50.4875],[-5.99825,50.64475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.859875,39.55475],[24.665125,39.38025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.199,41.069],[18.159,40.971]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.939,25.981],[-79.5835,26.0805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.895656,56.986219],[12.022781,57.076859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.477,55.93175],[5.256,56.011]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.407969,50.850938],[1.305336,50.890065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.003,-11.788],[-130,-13.081]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.416,27.701],[-94.492,26.931]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.48325,19.464875],[163.393,14.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.82925,37.291375],[11.97443,37.198852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.0325,59.92],[24.196094,59.917375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.918,43.594],[-4.926,43.638]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.075875,41.67475],[17,41.7495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.333,10.32],[-23.741,10.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.739352,57.566789],[7.436063,57.685312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.242,52.804125],[4.424094,52.6015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.182156,58.209859],[5.979,58.1875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.8755,21.836],[-85.391,21.312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.278,53.884],[-152.972,56.678]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.801,64.258],[21.93975,64.01575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.6315,57.2275],[11.598469,57.102031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.996438,52.000344],[3.992625,52.17175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.268,-35.633],[-153.872,-36.427]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.1185,55],[17.238,55.114]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.620406,42.3635],[9.72375,42.275375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.842,41.209],[-11.1535,40.402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.005,-11.494],[-102.574,-10.019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.453,58.3585],[23.660875,57.97925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.1,41.8],[38.8115,42.1715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,18.433],[67.795,17.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.952,35.395],[-13.619,35.65125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.113,10.776],[-79.949,10.461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.8295,40.818625],[1.67475,40.81775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.76875,54.178875],[7.85825,54.026781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.276641,54.508656],[14.38,54.507]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.86,-31.239],[-135,-30.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.733,-18.192],[178.703,-18.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.135187,51.086938],[2.049148,51.229781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.153734,36.263531],[27.240258,36.166695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.136,51.934],[-54.6,50],[-52.5,49.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.770766,35.906578],[24.82575,36.01725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.160969,37.739],[7.508,37.804]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50],[-16.22,50.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.4785,44.03925],[-5.642375,43.70525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.705,20.817],[-68.899,19.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.666,54.445],[5.6295,54.114]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.184,59.674],[21.42325,59.60925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.048813,41.719125],[11.070766,41.926359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.311,51.105],[-10.603,50.673]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.25,41.8],[-68.445,41.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.22675,51.25825],[-4.11725,51.391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.709,25.125],[-78.255,25.567]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.225,45.137],[-3.704,45.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-30],[91.44,-31.566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,-10.6],[131.922,-9.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.35025,53.537562],[-3.397781,53.62625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.202,10.417],[110.028,10.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.069125,49.372],[-3.197,49.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.51975,57.5545],[-1.366,57.581]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.239,63.134],[-32.728,60.892]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25,-35.386],[-25.367,-35.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.8155,55.7875],[6.880937,55.903312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.19,39.6205],[-0.0715,39.59325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.1,-18],[168.32125,-17.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.518,55.583],[17.3955,55.550125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.650688,56.718375],[10.81,56.804937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.001,41.927],[-130.002,43.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.828375,43.611688],[8.02875,43.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.014125,38.51025],[25.029313,38.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.834,-33.93],[153.479,-32.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.811125,43.367094],[6.72,43.23],[6.42275,43.077]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.228418,43.868785],[14.037641,43.936484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-20],[-105,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.4095,28.881],[-93.214,29.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.791,63.166],[7.3775,63.4075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.199125,35.627],[30.082,35.656],[29.67725,35.84575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.779875,65.187375],[22.933875,65.3335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.221,32.244],[-78.502,30.713]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.5235,41.6615],[8.405,41.51825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.293,32.861],[128.057,33.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.937,46.061],[-4.162,45.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.933,60.185],[-0.846,60.098]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.066156,52.592937],[1.8375,52.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.154,57.92],[-0.286,57.876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.620437,54.27225],[11.308344,54.149055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.590281,42.749016],[16.375125,42.85225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.394,40.5285],[18.28325,40.59875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.316,-39.708],[41.644,-40.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.598375,42.457594],[15.497625,42.175156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.373,52.4085],[-10.48875,52.19625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.6195,60.1495],[19.513219,59.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.9655,47.29275],[-17.925,47.798]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.092875,50.8015],[-5.334,50.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.891313,51.476594],[-9.901,51.3015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.8205,49.9535],[-4.986512,49.982141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.732,51.1485],[2.728156,51.331844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.5835,53.9915],[-5.486836,53.93818]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.153625,54.709937],[14.807625,54.413125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.199516,50.392453],[-1.423719,50.409594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[96.404,14.151],[97,16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.411,-31.534],[0.001,-31.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.011582,50.526684],[0.048828,50.385953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.6335,44.21175],[13.477141,44.123984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.085391,49.915937],[-0.19275,50.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34,-26],[43,-26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.79,-26.968],[-34.868,-25.152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.555438,56.672406],[11.348,56.65],[11.229387,56.567371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.507531,55.478125],[15.688719,55.436031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.375125,52.03625],[2.2615,52.03675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.332,55.25825],[19.460875,55.291625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.813,38.502],[-10.261,38.528]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.662875,37.394937],[25.5865,37.32325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1335,52.85625],[3.9,52.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.4835,50.972437],[1.305336,50.890065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.211383,58.103047],[11.177086,58.213051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.245094,44.238289],[9.145,44.264],[9.031625,44.250141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.957,51.52],[-5.926625,51.317281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.509438,43.597],[9.427875,43.411812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.487125,60.2875],[4.542,60.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.424,50.5835],[-6.5465,50.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.488,13.682],[-67.756,13.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.225,68.088],[13.197,68.198]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.723,54.659],[-4.014,54.472]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.1775,36.45275],[14.31425,36.45525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.7995,37.939],[11.866937,38.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.768297,58.363934],[10.907094,58.345531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.085875,42.980563],[3.355,42.921]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.55925,61.1935],[18.449,61.129562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.6,35],[12.568,35.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.65,51.717],[4.671,51.822]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.004258,44.008082],[10.008375,43.8295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.836469,35.917547],[-6.089,36.017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.406,40.074],[-134.818,38.823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.8245,40.5645],[18.69225,40.666]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.375,35.925],[12.682,35.926]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.506,42.738],[36.394,42.646]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.69075,59.824562],[24.7785,59.9485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.97,35.77],[26.1515,35.856]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.788375,43.8085],[9.661094,43.761875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.507973,48.596453],[-5.72682,48.568773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.0325,59.92],[23.901535,59.690625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.5295,57.278125],[20.6345,57.294]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.491,37.405],[-74.435,36.158]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.675179,43.535677],[15.643461,43.293953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.114313,39.813688],[23.041375,39.890875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.811,37.362],[-69.97,37.309]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.825,61.091],[-5.501,60.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.029,25.115],[-78.255,25.567]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.08275,59.633],[25.591789,59.890969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.530812,60.227469],[21.321125,60.134563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.976,48.337],[-8.812,48.971]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.587,62.332],[5.3005,62.2955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.081,51.08],[-171.546,51.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.088938,59.994812],[21.193,59.9485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.606,-35.007],[5.395,-35.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.351,37.814],[-9.3805,37.5765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.423719,50.409594],[-1.502,50.492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.001,36.325],[-22.487,36.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.1,55.5],[-6.443,55.98]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.79725,39.287688],[20.161453,39.414422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.193,59.9485],[21.2675,59.591437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.3445,47.160375],[-2.241125,47.234375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.498,58.0105],[19.608062,57.901125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.212,64.025],[-14.025,63.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.023,35.50875],[28.111,35.364]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.326,27.136],[-79.5955,26.7635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.302,36.021],[22.48675,36.039563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.065406,37.367156],[26.08,37.4945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-30],[-115,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.671,45.218],[-5.98725,47.8615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.934,12.357],[-80.297,12.453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.600039,40.952727],[9.882875,40.3875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.006,37.769],[11.03875,38.08375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.016,45.318],[-45.319,45.217]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.281,30.013],[-69.00175,29.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.151875,54.729875],[14.161687,54.593969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.969,59.316875],[4.997,59.115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.508,28.874],[-15.1645,28.827]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85,-5.057],[90,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.106,54.3495],[13.158,54.565],[13.1875,54.676875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.113,20.054],[140,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.137375,41.205781],[10.222453,41.285062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.969,59.316875],[5.044,59.196],[5.126625,59.117875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.352688,36.262219],[25.396195,36.376578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.93825,37.46175],[-72.062,36.612]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.124,0],[-46.401,2.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.974938,43.106578],[9.830586,43.152195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.74975,43.37025],[7.852,43.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.805,56.413],[7.934,56.01675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.7685,-18.776],[178.541,-18.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.248,61.312],[19.014,61.249]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.274688,36.661625],[23.448219,36.698781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.9765,39.793],[15.0565,39.6085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.257,11.83],[-36.076,10.029]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.247984,56.951031],[8.157656,56.805281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.574,52.851],[3.774,52.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.193,37.554],[10.246807,37.543968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.604,42.415],[37.827,43.326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.1525,61.9975],[18.2595,62.2645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.102375,54.561813],[8.073,54.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.913125,42.126188],[9.913,41.987625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.077625,49.415055],[-0.023594,49.599656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.676,55.134],[-6.693,55.151],[-6.761812,55.220062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.032,61.644],[19.176,61.436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.254,16.847],[-78.373,16.206],[-76.5905,15.75075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.09,47.682],[174.269,45.75],[172.638,43.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.212,-11.577],[-34.766,-14.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.933375,41.962781],[16.079594,41.96375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.559875,59.018375],[10.566531,58.892156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.001,48.819],[-41.659,48.508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.752359,57.575352],[-1.618313,57.603188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.106,48.106],[-161.568,46.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-50],[-97.634,-52.466]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.262,32.46],[-122.642,32.872]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,30],[-165,35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.981,37.297],[15.855,37.292]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.593242,40.802172],[13.707706,40.727291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.241,41.973],[10.069187,41.938125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.3435,65.663],[-21.081,65.757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.936,40.513],[12.910375,40.288187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[77.754,1.286],[76.483,2.014]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.902,62.972],[7.857,63.16],[8.006,63.242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.542,38.992],[0.673,39.0175]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-99.994,74.456],[-104.946,74.319]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.663,35.901],[-4.84025,35.97725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.413297,56.01575],[15.258234,55.887234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[74.343,-35.992],[70.002,-36.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-50],[-144.888,-45.402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.425,20.069],[-80.883,20.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.001,36.325],[-20.002,35.0065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.02225,10.00675],[-48.346,11.736]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.033637,55.073915],[9.85175,55.0785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.2565,37.712625],[15.255,37.490625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.264781,36.874156],[12.043641,36.978828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.478,-12.6],[-130.876,-12.079]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.182,63.842],[-162.613,63.693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.312,34.962],[141.3,35.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.045,2.995],[-130,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-40],[47.359,-37.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.817,42.497],[37.964,42.2375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.059,66.171],[12.672,66.076062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.341961,39.129945],[25.273562,38.956484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.024,29.0105],[-15.6415,29.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.933187,40.113875],[19.1475,40.1945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.049043,37.331059],[24.908875,37.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.9795,40.814125],[-9.95,40.574],[-9.9255,40.3615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.395375,36.69575],[-3.781688,36.602187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.5805,36.4615],[-0.366,36.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.3,35],[139.478,34.941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.055,39.596],[-69.121,39.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.197,68.198],[13.386,68.472],[14.0605,68.7865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.662312,36.51475],[25.493422,36.511016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.5705,57.875],[9.714336,57.812898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.389,31.456],[32.39,31.728]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.349,30.881],[-130,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.665,40.72475],[3.84,40.614],[3.884,40.595],[3.949,40.568],[3.99925,40.55275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.147781,56.264937],[16.038625,56.14575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.477,24.832],[-73.566,23.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.556,47.816],[-5.6915,47.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.074703,37.012719],[24.040229,37.114312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.035,-25.999],[-80,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.339875,40.481375],[18.28325,40.59875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.543,32.438],[32.055375,31.709125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.645,57.7505],[11.470937,57.634844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.4245,58.776875],[-1.3675,58.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.403438,65.552219],[24.575,65.531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.635,53.582],[6.601182,53.622092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.932937,43.948188],[12.908,44.0985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.522625,42.642375],[16.590281,42.749016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.803,41.688],[7.582,41.595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.675031,44.151812],[14.63716,44.425438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.22975,53.878],[8.236625,54.069906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.247,55.432],[-44.328,54.513]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.803432,55.565219],[10.70325,55.688766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.424,42.438],[-127.753,42.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.22367,42.828633],[16.0295,42.8415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.001,53.8],[-163.255,51.683]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.193891,43.80825],[8.20375,43.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.204,21.506],[-73.837688,19.982813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.615713,57.655652],[21.617041,57.656064]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.092,34.232],[31.001,33.951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.83,29.953],[122.678,30.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.488,34.2305],[20.148,34.337]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.73175,35.95725],[23.9775,35.743469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.140313,45.131125],[13.204,45.01],[13.2635,44.880875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.171094,53.926219],[-3.442594,53.802406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.3195,41.7635],[18.091,41.697],[18.051,41.68],[18.009,41.662],[17.952,41.638],[17.78875,41.56925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.27,-39.301],[144,-42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.554063,38.455859],[25.555,38.7135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.726773,53.505562],[-5.052,53.487]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.78125,49.274687],[-2.921625,49.43825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.529,34.349],[27.297,34.251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.501125,48.771313],[-6.349,48.593]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.123682,37.488928],[25.201125,37.355313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.691,38.583625],[15.586125,38.55925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.81175,59.435125],[23.672,59.498438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.507,-3.464],[-30,-5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.8445,43.73725],[28.92125,42.846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.346,39.68],[-132.09,38.071]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.3125,36.6435],[27.344875,36.804312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.056,16.585],[-61.581,14.883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.776,37.146],[-10.832125,37.323375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.432738,36.097727],[23.292113,36.209797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.208188,41.559531],[12.292844,41.374625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.179063,36.795719],[26.238844,36.939406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.194,54.8315],[-5.173125,55.031188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.314727,51.915547],[1.441516,51.824656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[61.555,23.457],[60.4,22.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.080867,37.187129],[26.041,37.040719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.066,54.468],[-164.607,54.194]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.318812,54.628844],[10.447998,54.726195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.153,9.85],[-81.798,9.583]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.560937,57.934938],[6.730938,57.987078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.795844,49.741437],[-6.8195,49.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.7885,39.774062],[18.564,39.713]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,20],[-153.731,16.4215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.188,9.091],[-88.55,7.306]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.123125,36.415875],[27.027812,36.308605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.216,55.198],[12.386,55.235],[12.488875,55.328594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.203875,35.832875],[24.108844,36.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.2465,36.04875],[-6.564188,36.107438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.474,27.562],[-96.059,27.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.802,29.691],[-18.908,29.504]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.048,-7.879],[116.349,-7.263]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.216203,56.968812],[7.345375,56.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.552312,54.863062],[-5.3965,54.7765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.0445,59.38],[19.899031,59.475344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-40],[-155,-40.107],[-160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.259,42.027],[140.176875,45.08725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.867,59.754],[20.002375,59.752625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.010844,57.876],[20.129,57.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.06,46.606],[-54,46.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.608,36.135],[-12.6765,35.9635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.5,-20],[-39.676,-23.686]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.638312,54.561875],[7.587875,54.278063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.501,36.132],[-12.314,36.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.796,36.12],[-126.187,36.481]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.574,38.787],[-74.142,38.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.265625,37.78325],[12.162812,37.692531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.262,59.335],[-2.984,59.426]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.640156,51.30475],[1.781094,51.149254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.34432,58.758523],[10.3835,58.552125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.839688,38.824313],[22.97275,38.93775],[23.104813,39.053531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.3805,37.5765],[-9.352,37.297],[-9.356312,37.115141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.122,55.707],[3.61325,56.10125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.833031,40.499813],[-69.448,40.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.1715,62.37],[18.1525,61.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.096234,43.706109],[10.025413,43.585063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.125,-37.135],[30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.103,39.80675],[-0.0715,39.59325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.427875,43.411812],[9.34225,43.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-40],[60.001,-37.597]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.163,21.47],[38.855,21.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.309,16.029],[-161.27,16.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.042,47.762],[-14.674,47.052]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.059,37.67175],[-12.199,37.642]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.633,61.883],[-166.3,61.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.65,35.453],[139.766,35.307]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.105531,43.834094],[14.228418,43.868785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.8635,34.787],[27.134,34.896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.299422,53.977562],[14.307125,53.777125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.173125,55.031188],[-5.322094,55.174047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.3625,51.608063],[1.330375,51.707375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.13,11.145],[-61.0065,10.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.87125,37.004375],[26.723727,37.156914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.919,39.109],[-70.852,38.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.9065,4.8305],[-1,4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.010906,38.29025],[24.029,38.376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.241875,61.227438],[17.363469,61.229141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.223,51.563],[-10.6535,51.737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.9725,47.2625],[145.948,50.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.143,32.065],[-62.025,31.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.758984,57.331633],[11.516864,57.31915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.488125,38.813875],[0.630594,38.774281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.382,-21.526],[113,-23.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.415,48.906],[-6.501125,48.771313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.625,26.42],[-84.751,25.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.580266,60.355922],[21.751,60.222062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.562057,54.684709],[-5.3965,54.7765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.922406,51.213344],[1.835754,51.295676]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.63275,34.32225],[33.934,34.3615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.264781,36.874156],[12.203,36.956]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.020625,53.732812],[-6.055,53.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.236125,36.335],[24.367,36.368],[24.486187,36.420883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.397195,37.265648],[24.367508,37.438992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.277,57.208],[5.7845,57.281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.93175,65.16575],[24.237,65.446]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.324727,42.953508],[15.265703,43.090328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.246807,37.543968],[10.347812,37.55925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.696,71.084],[29.113,71.027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.2715,39.203],[0.2535,38.9945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.903,-43.469],[159.513,-40.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.30525,39.6275],[13.78425,39.4815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.599,54.643],[-0.7745,54.653]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.181,67.485],[14.346562,67.28275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.36,63.148],[-168.2605,62.47875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.052,27.792],[-73.09,27.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.174,66.917],[41.929,67.013]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.873,42.532],[10.760687,42.635062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.556,71.253],[20.797,71.151625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.502969,54.491469],[11.358625,54.525687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.615,37.520812],[-0.148,37.509]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.0765,57.837],[-0.937,58.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.26325,35.84125],[25.286062,36.011562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.733969,38.664156],[8.66075,38.5265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.031,35.105],[-67.957,34.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.436,38.731],[26.344,38.667]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.725719,47.313563],[-6.8195,47.18975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.942,40.695],[2.790875,40.621656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.716555,36.840898],[26.65082,36.962602]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.732,68.49],[-99.615,68.201],[-99.117,67.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.614,-3.66],[-142.059,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[77.693,0],[72.625234,-7.089904]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.984188,44.807578],[13.034688,44.483469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.487219,57.727984],[-2.22925,57.7345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.995,-54.539],[-64.916,-54.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.554,59.948],[4.5485,59.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.896,20.105],[-38.036,22.082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.116,52.94475],[0.359,53.11625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.8425,41.6065],[12.00475,41.5005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.30375,54.65925],[16.12575,54.61325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.491938,40.297187],[-68.833031,40.499813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.470625,57.233125],[7.538125,56.988812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.244,53.135],[1.48725,53.17825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.599,40.4425],[3.764,40.314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.183,37.816],[122.5915,37.8655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.487125,63.902125],[22.705625,63.993281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.123,-0.453],[168.43125,-2.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.781,54.9735],[13.772625,54.616875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.3785,35.882],[25.513063,35.925687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.474,42.701],[32.46,42.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.267687,52.380437],[4.223375,52.521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.896906,57.983906],[20.022125,58.040625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.538,38.476],[0.9125,38.4885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.6815,49.0915],[-6.627625,48.955375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.248,26.91],[135.371,28.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.358625,54.525687],[11.341328,54.389234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.46925,60.35075],[21.580266,60.355922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,40],[-140.279,40.298]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.091375,36.280375],[26.267156,36.273813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.877,-2.675],[3.868,0.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.942,40.278141],[0.963375,40.08925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.987688,57.083188],[8.012078,56.967609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.014,61.7535],[19.032,61.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.709,58.718],[4.72275,58.498]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.9135,57.7845],[-7.633,57.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-30],[-125,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.775,42.597],[-8.873,42.584],[-8.9255,42.5555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.81225,55.653813],[9.785312,55.552937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[86.11,0.001],[88.904,-1.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,30],[-170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.17375,54.925406],[5.373,55.1015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.860188,52.41475],[-5.972016,52.231766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.0305,36.377],[23.96525,36.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.019,-56.066],[-67.881,-56.356]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.6555,64.874125],[21.631219,64.601719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.055578,55.648859],[10.019,55.716]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.999,19.998],[59.445,15.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.999,-14.845],[-16.822,-16.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.776219,53.958375],[7.770469,54.076375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.61625,35.66425],[25.662937,35.789938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[93.7125,-13.86],[94.9765,-15.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60.001,-37.597],[60,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.848,49.255],[-1.986,49.3995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.7565,63.839],[-22.87425,63.90875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.439125,38.654156],[15.451637,38.456365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.468,41.715],[-160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.452,-10.033],[60,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.40825,43.841641],[9.24575,43.78075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.732531,42.291219],[10.478188,42.446594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.922516,43.046828],[6.088781,42.997656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.297246,41.344242],[3.252187,41.795797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.61,39.8795],[-139.4385,40.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.811,38.839],[-27.526,38.458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.701,41.484],[8.814062,41.470312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.552,58.0025],[5.182,57.626]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.5145,5.516],[-11.398,5.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.13525,56.39575],[4.3455,56.35825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.151,-5.057],[123.781,-5.072]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.723492,36.675875],[26.599719,36.778969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.641,2.983],[119.436,3.783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-20],[-25,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.551,-7.715],[116.673,-7.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.27,37.885],[-0.412875,37.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88,21],[91,22],[91.08,21.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.8415,42.834],[7.883625,42.72525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.9535,38.697],[120.886,38.627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.354,56.495],[-30.004,55.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.996,10.0415],[-82.208,7.36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.996,10.0415],[-82.8,7.417],[-82.208,7.36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.62,44.742],[36.52275,44.891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.280984,54.713938],[-5.340438,54.457469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.848,43.58175],[-8.619375,43.835906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.698,-3.598],[113.903,-4.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.163937,36.269188],[-9.259,36.044]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.147,50.444],[0.048828,50.385953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.661375,64.139125],[-22.76025,64.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.999016,51.063203],[-6.123,50.798]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3095,43.2515],[4.4765,43.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.1,-3.1],[-43.9,-1.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.867687,41.646563],[11.073563,41.45425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.581,35.4315],[28.168,35.6615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.574,41.191],[6.511,41.217]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.424,50.727],[-6.697,50.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.493625,63.190883],[20.438094,63.345781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.0695,33.191],[134.931,34.135],[135.1,34.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.84175,17.25425],[-66.59125,17.2995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.5095,58.731],[23.38975,58.9105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.782,3.072],[-40,4.193]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.383,49.47075],[-2.145,49.59075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.891,-30.077],[8.741,-31.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.485,58.356],[17.593469,58.146406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.36875,36.371844],[-3.5025,36.40275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.2605,50.41625],[-2.0695,50.406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.3655,34.474],[32.106,34.429]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.043,43.265],[6.95875,43.159688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.663156,49.929469],[-4.675625,49.74425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.986,51.63975],[0.859523,51.49709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.72,70.921],[17.898,70.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.89425,38.8455],[8.01225,38.7795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.78,52.446],[-143.082,51.448],[-140.369,50.739]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.256,21.827],[-159.916,21.836],[-160.028,22.093],[-160.487,22.03],[-166.115,24.118]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.499,52.0465],[-5.422125,51.954]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.7585,58.001],[-0.377,57.937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.042,39.058],[10.192875,38.882375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.761,43.9825],[12.628766,44.141828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.157,39.387],[-30.866,39.541]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.569781,59.857125],[23.695156,59.727656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.279813,52.145188],[-6.274,52.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.695688,37.982687],[11.424,37.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.664375,49.23075],[-5.623812,48.989594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.447828,42.400266],[14.412,42.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.016,-25.262],[-130,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.719938,37.163031],[11.56925,37.25275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.147,10.023],[-31.527,11.744]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.24575,43.78075],[9.12875,43.70425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.801,57.324],[8.925,57.3495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.197,10.228],[-110,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.642545,40.820645],[24.446875,40.761688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.088,37.07],[-15.584,36.214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.1,1.1],[-180,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.756,1.622],[104.843,1.504]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.748,-10.02],[163.301,-10.024]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.915,-38.484],[-50,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.966625,48.740125],[-3.835,48.851]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.339625,55.3235],[4.136,55.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.9595,35.5965],[35.451,35.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.3415,59.6475],[5.24625,59.56],[5.175891,59.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.482844,49.987563],[-1.6285,49.975844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.303,41.747],[29.112813,41.234719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.837,26.246],[-88.194,27.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.9055,43.753],[14.777938,43.697437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.604,48.324875],[-4.796031,48.2765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.974938,43.106578],[10.052805,43.031813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.723,52.764],[-5.8465,52.78125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.0645,49.9135],[-12.286,49.935],[-16.134,49.872]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.359938,37.590219],[11.536,37.596]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-60],[-180,-70]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.220344,43.037781],[8.3285,42.898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12,-9],[11,-6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.445383,43.100578],[9.541906,42.961406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.704,45.554],[-5.576,47.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.459,64.858],[10.358,65.006]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.701,54.57],[12.9345,54.67425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.5435,40.9],[4.07,41.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.33525,52.56475],[2.54925,52.57575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.695156,59.727656],[23.522375,59.71075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.775813,58.775969],[17.9465,58.795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.368625,50.495],[-2.17725,50.509]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.527,-18.019],[171.761,-18.166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.0855,58.9995],[22.975,59.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.014188,51.662188],[-7.333,51.659]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.1455,45.414],[-3.963,45.5505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.456188,38.359125],[13.352219,38.52725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.758125,59.309562],[18.565875,59.18375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.12475,36.388],[20.965,36.364],[20.438,36.382]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.638437,56.337063],[11.875656,56.348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.895,63.404],[20.34,63.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-30],[-111.268,-31.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.699,21.318],[-114.922,21.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.293625,56.684125],[7.38725,56.57775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.23875,51.02725],[-8.15,50.924]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.257,48.736],[-6.349,48.593]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.616,40.261],[13.4915,40.277438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.2605,56.950063],[20.257188,57.102688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.244,62.653],[18.9215,63.047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.4,17.001],[119.9,14.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.707,35.584],[-74.634,35.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.664,16.009],[-79.559,15.91],[-79.681,14.207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9435,43.356],[-2.76175,43.48225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.316,39.103],[4.855,38.965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.0025,-6.292],[112.175,-6.279]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.422,52.338],[4.454422,52.444984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.83,39.656],[-9.86,39.231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.207539,37.923922],[24.336312,37.837047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.641,21.138],[37.894,20.212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.119563,58.295437],[11.001219,58.291938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.80218,61.269719],[4.749359,60.966672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.703,57.824],[-17.059,57.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.881344,57.460531],[10.771045,57.590462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.072453,43.194516],[9.218438,43.126688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.666,36.025],[27.912,35.933]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.692,-10.002],[64.66,-14.828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.6955,39.5865],[7.542,39.544]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.79,-26.968],[-32.375,-27.634]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.120438,42.2],[10.3245,42.045875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.542,50],[-135.057,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.445375,44.310875],[14.54825,44.178188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.513219,41.580812],[3.237,41.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.40425,51.55325],[3.297875,51.794812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.2335,40.7045],[2.25,40.58],[2.305813,40.422359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.905875,56.514875],[12.027188,56.479687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.620797,37.164937],[25.5865,37.32325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.9375,55.56225],[19.763,55.352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.868,59.090656],[5.777375,58.982563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.918,66.174],[8.484,64.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.1205,60.433625],[19.245125,60.090375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.451,12.233],[-55.547,10.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.210625,54.798625],[19.299,54.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.534906,59.770281],[5.43425,59.6955],[5.3415,59.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-40],[0.002,-35.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.366125,55.6635],[15.399875,55.542375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.131,51.5385],[-5.9585,51.6985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.176,-7.0755],[176.722,-8.823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.02275,39.653],[14.14625,39.548]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.1535,39.455],[19.193188,39.587438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.439,54.804],[9.627688,54.860375],[9.785375,54.848188],[9.949969,54.823281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.250344,58.687391],[5.168719,58.582125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.36323,37.119352],[24.236023,37.288781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.003,44.262],[-25.548,45.818]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.966,36.425],[31.087,36.274]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.113,9.132],[160,8.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.642281,63.1215],[7.223,63.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.105531,43.834094],[13.939625,43.833375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.282291,55.167619],[14.1845,55.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,20.001],[131.828,18.269]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.544,40.582],[-34.007,40.888],[-37.894,40.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.33725,58.64225],[21.249,58.37325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.342,35.34],[-8.194,34.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.147,61.721],[21.172125,61.551312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.334,43.036],[14.4365,43.29025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.60125,61.943],[17.9175,62.0295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.953,0.967],[-110,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.853,-26.052],[-41.3,-23.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.022,42.282],[5.00275,42.4215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.620625,43.477562],[9.750969,43.460469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.429813,37.774375],[15.346578,37.582609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.673938,59.6475],[24.505937,59.709625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.903,-42.55],[-61.25,-39.301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.41,38.1855],[0.538,38.476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.383008,44.545586],[12.508016,44.656375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.802,14.679],[69.999,13.766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.446875,40.761688],[24.316,40.788]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.727,57.158],[7.8885,57.1615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.6415,29.244],[-15.53325,29.310313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.1485,70.976375],[25.99075,70.96725],[25.875,70.947],[25.024,70.992],[24.989,70.992],[24.904,70.995],[24.510156,71.015938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.1885,69.164],[15.0015,69.006625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.22,37.771],[-11.905,38.489]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.471,54.902],[-0.595,54.946]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-50],[-170,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.9895,37.884125],[24.936,37.841]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.520802,54.552705],[12.5155,54.5465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.898563,40.980563],[12.0855,40.8505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.739438,42.443531],[16.7715,42.266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.472,54.141],[-164.256,54.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.411,44.236187],[-9.13,44.384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.345375,56.9675],[7.538125,56.988812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.4,15.565],[-150.001,15.524]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.242563,56.1445],[11.130758,56.077344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.97825,57.921625],[-2.695,58.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.318219,37.858234],[26.104125,37.996625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.332625,39.917344],[23.2955,39.6565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.998,-35.845],[-156.028,-35.201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.002813,59.812562],[24.859328,59.813906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.498375,56.226125],[3.988,55.7395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-20],[-170.597,-14.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-10],[-154.106,-14.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.15375,62.46775],[20.018937,62.395094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.905,48.093],[-5.106406,48.123625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.459375,44.802906],[13.2635,44.880875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.305438,54.271844],[7.12525,54.292687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.992,58.00925],[9.84723,57.855687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.668,33.938],[18.971,34.42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.001,50.89],[-30.003,53.227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.5215,58.2635],[19.56275,58.10175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.241,49.851],[-4.1355,49.899156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.722,56.369],[-1.585,56.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.581,36.439],[-72.585,36.321]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,10],[-128.631,11.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.1695,39.107],[10.192875,38.882375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.4905,49.7065],[-8.5775,49.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.3745,37.14625],[-70.316,36.971]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.584625,53.929375],[8.4935,53.823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.415,50.202875],[-2.924734,50.048328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.998,-33.919],[-10,-31.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-50],[-139.997,-44.316]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[119.013,75.631],[119.155,75.641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.13275,57.338],[22.976,57.572],[22.8835,57.739656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.779,48.546],[-6.501125,48.771313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.00375,35.958875],[-5.836469,35.917547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137,-9],[135.772,-8.975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.7,-5.8],[11.891,-5.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.074,40.511],[0.942,40.278141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.4795,49.7435],[-1.367,49.754],[-0.966375,49.761313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.8485,53.642625],[0.94375,53.539875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.566,23.533],[-73.677,21.5465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.929,10.355],[-80.06,10.301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.052,27.792],[-72.818,27.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.867719,47.237125],[-2.938438,47.132688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.384,53.792],[-155.059,53.791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.877,26.436],[-73.86375,27.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.638,18.166],[119.608,18.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.9,53.37],[-136.903,51.619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.683,38.4155],[9.432375,38.72425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,30],[-178.5,28.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.74,60.0175],[-0.331,59.298]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.512,64.078],[21.382,63.9745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.0865,35.628125],[-75.377,35.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.922,29.287],[-156.57,29.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.237,38.293],[25.0345,38.1545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.213969,38.212187],[21.337242,38.228582],[21.436344,38.320094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.95,4.569],[104.4625,1.6555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.368117,50.268758],[-0.515844,50.214344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.159,37.4445],[11.298938,37.419125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.937078,42.383441],[9.913125,42.126188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.36825,65.797],[-20.417,65.915],[-20.49625,66.1105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.001,36.534],[-54.557,34.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.660906,54.225875],[13.46,54.209125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.8735,59.1445],[-2.782,59.104],[-2.6285,59.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.08,-39.151],[-145,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.200188,56.443719],[7.024344,55.9795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.888,57.609801],[9.712203,57.602812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.075,37.5635],[9.748,37.4685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.996,-54.092],[-90,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.971,55.404],[-131.738,55.871],[-131.242,55.978],[-130.913,55.564],[-130.908,55.336],[-131.192,55.154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.999,-14.878],[-140,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.6855,34.6605],[28.881,34.656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.586,28.639],[-89.37,28.716]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.625422,36.369031],[25.638969,36.126844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.458,26.34],[-79.8,26.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.969508,55.613234],[15.834,55.801004]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.732125,56.57975],[11.754891,56.695094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.056,40.087],[159.619,41.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.102156,62.571313],[18.244,62.653]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.802,52.02325],[-5.671625,51.894875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.657375,41.421375],[12.44225,41.46575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.778578,52.525672],[1.836,52.6515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.534063,53.675375],[-3.442594,53.802406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.212,16.934],[131.329,15.214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.03,66.418],[-20.639,66.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.863,58.896],[-150.758,58.679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.505516,61.508156],[17.722,61.484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.21175,37.191875],[18.26475,37.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.767422,39.177766],[23.8645,39.3795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.412,42.593625],[10.478188,42.446594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.613,58.012],[17.5345,57.91325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.599,42.464],[7.475062,42.2835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.553,35.006],[-50.002,34.009]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.455031,55.455313],[14.59,55.428781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.788,28.138],[128,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.744,35.245],[30.4335,35.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.977,63.336],[1.985,64.579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.260344,57.327438],[11.365992,57.405602]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.57175,39.43075],[19.433,39.4515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.3625,66.1375],[-24.6895,65.8105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.434,56.0695],[16.534,56.085],[16.674672,56.071289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.142344,37.966875],[21.062961,37.843938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.036563,59.35375],[23.70575,59.367]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.872,51.56175],[1.9,51.718]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.777,-31.932],[-159.999,-32.943]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.93325,55.90875],[10.819488,55.736742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.569,53.431125],[5.992,53.419]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.532,0],[66.999,-2.158]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-40],[91.769,-41.887]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.515,50],[-41.898,51.979]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.511,36.796],[-71.457,36.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.0875,36.002125],[25.243562,36.1335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.188875,36.739812],[-9.300937,36.831469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.530812,60.227469],[21.580266,60.355922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.529406,40.493094],[13.462375,40.718906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.735969,57.3235],[19.780969,57.144813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.934125,39.529875],[15.008719,39.350563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.492,65.671],[-21.669,65.706]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.92475,40.2505],[22.79875,40.49625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.081,35.725],[-9.395,35.703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.650844,39.329031],[23.767422,39.177766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.042969,43.42407],[16.154375,43.354875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-10],[-20,-3.281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[150,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.9795,40.814125],[-9.951,40.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.708,1.7735],[104.756,1.622]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.8335,60.3485],[21.718969,60.336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.46,68.493],[8.047,67.671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.282619,35.947516],[-4.006,35.737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.51175,40.59175],[12.59,40.52825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.289,57.9065],[8.225,57.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.026938,62.43725],[5.6555,62.5285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.053375,55.6755],[10.921047,55.630969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.14,-55.241],[-72.584,-55.911],[-67.881,-56.356]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.696,54.327],[-8.767,54.4585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.779031,42.454313],[15.629129,42.695691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.42325,59.60925],[21.2675,59.591437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.382031,43.517719],[9.509438,43.597]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.305813,40.422359],[2.2055,40.2865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.398,5.125],[-10,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.250375,38.670625],[15.255648,38.795563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.53475,61.186359],[17.8325,61.018]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.848,27.676],[-78.182,27.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.43,54.335],[1.667,54.1465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.826,-35.547],[162.151,-35.957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.3985,57.97875],[20.559313,58.235813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.028,40.535],[-73.334,40.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.127,40.55],[138.32,40.878]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-40],[-135,-40.107],[-140,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.85,32.15],[-18.802,29.691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.827875,54.105344],[8.713625,54.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.92475,44.6545],[-2.711,44.914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.454,43.436],[38.854,43.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.213,-35.117],[-54.614,-35.249]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.25175,38.560375],[10.386,38.576]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.107,10.578],[-89.597,10.124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.507,-25.394],[112.635,-28.593],[114.813,-33.771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.971603,64.194235],[23.4625,64.7145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.691625,49.615813],[-4.713875,49.333188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,20],[138.671,18.741]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.808687,38.070687],[22.74275,38.1785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.86375,50.08725],[0.6595,50.30075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.074,40.511],[1.10975,40.393375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.30625,37.841],[15.429813,37.774375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.335,41.455],[3.24,41.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,0],[160,-8.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.209,49.577],[-1.046,49.405],[-0.77725,49.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.857609,44.045859],[10.004258,44.008082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.242,60.3765],[21.145812,60.519688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.94,36.756],[-7.78925,36.71375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.277,60.642],[2.833,60.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,4.783],[70,6.324]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.979,40.886],[-8.98075,41.019875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.283625,57.9055],[6.21925,57.7415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.855,21.403],[38.497,21.356]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.70375,54.90175],[18.51843,54.966344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.528859,50.208109],[-1.258125,50.281281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,-37.8],[178,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.097,53.067],[3.162,53.037],[3.20625,53.0425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95,-25.277],[96.207,-24.021]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.878,-33.129],[40.002,-33.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.342,36.623],[-10.901,36.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.6575,43.849969],[14.519,43.924]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.236,42.554],[-11.087,43.188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.048891,56.557531],[17.964,56.268]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.194,56.664],[19.186,56.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.763141,39.488523],[25.673664,39.548664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.50475,40.089],[24.472578,40.184711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.126031,57.475],[19.39775,57.53725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-117.411,27.554],[-117.491,28.693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.451,36.87975],[10.62,36.963],[11.10775,37.20425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.072,32.64],[-17.713,29.434]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.285,38.284],[9.8175,38.0295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.8,13.5],[144.268,13.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.323187,48.24875],[-6.668,47.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.315,65.203],[6.865,65.313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.002,52.494],[-50,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.184,-37.852],[151.265,-39.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.775813,58.775969],[17.647125,58.605219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.953,29.168],[-91.3035,28.42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.682,35.978],[13.888,35.9465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.99125,61.414],[19.014,61.249]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.835,62.93875],[6.803,63.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.052,19.384],[-159.124,16.521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.365844,54.531406],[16.4145,54.6625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.25975,46.68625],[-3.616,46.556]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.551172,50.742578],[-0.432156,50.575094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.327,71.346],[20.556,71.253]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.542,-45.73],[-60.42225,-46.9955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.478,37.60525],[7.3305,37.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.057125,56.24225],[19.023,56.123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.769,1.418],[8,3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.06825,37.381],[15.855,37.292]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.89,45.5625],[12.446938,45.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.399,41.044125],[8.250234,41.150875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.517,64.156],[-15.299,64.1895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.382,63.9745],[20.902,63.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.373,68.257],[13.5235,68.0595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.027742,43.146727],[4.856,43.194]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.766,-14.631],[-37.627,-20.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.953,33.601],[-75.4485,32.907]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.79,35.018],[30.735563,34.47975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.447828,42.400266],[14.604,42.425],[14.675,42.504188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.279844,49.687828],[-3.3885,49.804812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.135,60.055],[5.08775,59.9665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.3985,38.24725],[-0.3395,38.3515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.921,34.708],[-9.822,33.488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.48975,56.506125],[12.299656,56.545609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.452633,43.745885],[-7.446,43.79575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.739,41.6675],[16.628469,41.767062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.817,54.9705],[6.23075,55.37825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.255648,38.795563],[15.233625,38.927062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.128,42.440875],[27.93,42.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.331,63.385],[20.451,63.449]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.843312,59.674188],[24.673938,59.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.885,64.6985],[10.584,64.663],[10.459,64.858]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.006,48.733],[-122.776,48.754]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.634,35.463],[-74.385,35.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.588125,49.24],[-2.776875,49.154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.835125,42.287],[16.087812,42.21875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.255,35.428],[30.4335,35.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[61.107,-28.954],[66.313,-27.198]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.947,38.824],[4.1855,38.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.706809,57.743219],[10.600605,57.788314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.407969,50.850938],[1.4835,50.972437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.890566,58.507941],[10.907094,58.345531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.84025,35.97725],[-4.978875,35.972875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.257906,44.431859],[14.139,44.496]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.242,56.231],[17.06625,56.1615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.9945,43.918],[29.078,42.789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.361391,36.752797],[24.244375,36.64075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.201,43.211812],[16.370969,43.074438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.56275,58.10175],[19.667,58.041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.241875,61.227438],[17.165,61.213]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.484,-6.958],[-80.71,-6.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.211062,40.02175],[23.088375,40.11725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.262,53.246],[-54,52.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.249,55.431],[-38.197,58.266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.774375,58.54125],[-2.642,58.3975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.511,42.528],[4.651,42.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.781,54.9735],[13.7,54.69625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.15,37.464],[2.9945,37.4105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.116,63.59],[20.902,63.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,2.698],[-167.191,7.242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.570812,63.52575],[20.61925,63.4275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32,-30],[40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.6025,65.1765],[21.6915,65.0555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.856625,49.25625],[-4.8995,49.0385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.001,25.91],[-170,29.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.535656,52.177781],[-5.499,52.0465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.29175,54.825688],[15.262438,54.729438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.1135,21.70575],[116.9835,22.9925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.332617,42.138547],[16.496,42.033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.11575,55.8],[10.313875,55.911109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.328,39.293],[19.531,39.168125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.112625,42.917938],[15.93775,43.027563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.029,36.125],[21.777297,36.300844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17,33],[-17.072,32.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.95625,42.9535],[8.92575,43.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.869,28.462],[-73.868,28.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.188063,43.259031],[7.407,43.12975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.336219,53.704219],[7.422562,53.793594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.194,48.11],[160.281,48.041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.565151,55.007522],[14.5445,55.14425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.391625,61.266875],[19.248,61.312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.6245,29.3],[-94.4035,29.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.945,-44.212],[0.002,-46.134]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.928,61.288],[2.893,61.197]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.715641,50.09257],[-4.663156,49.929469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.673938,59.6475],[24.613297,59.490648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.668,47.8],[-6.703,47.604]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.401,35.394],[-74.385,35.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,-50],[110,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.97675,21.97175],[-85.8755,21.836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.085,66.43],[-16.61625,66.533812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.2305,39.437875],[2.194625,39.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.213,36.365],[26.333969,36.419]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6555,62.5285],[6.607,63.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.601,15.704],[-88.644,15.984],[-87.798,16.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.0345,38.95],[15.233625,38.927062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.8305,58.8805],[-6.046,58.802]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.716555,36.840898],[26.723492,36.675875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.796,43.087],[31.699,43.352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.44,67.497],[13.57625,67.44925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.779,43.39],[40.52775,42.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.758125,59.309562],[18.9485,59.276]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.233,34.383],[130.639,34.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.14625,41.74625],[12.03325,41.7155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.3805,37.5765],[-9.4575,37.8095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.9945,37.4105],[3.05525,37.15075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.855,46.668],[141.062,46.849],[140.613,46.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.567,70.821],[22.613,71.009]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.964,56.268],[18.04275,56.005125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.07425,56.94],[20.2605,56.950063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.531297,49.444938],[-4.546,49.189875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.222562,58.61375],[11.14775,58.519188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.687,41.947],[18.76875,41.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.305,40.754812],[13.188,40.58225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.871895,37.599242],[25.757562,37.463438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.622344,35.928063],[-7.069,35.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.391,41.61],[17.41275,41.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-37.894,40.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.956,12.852],[-99.91,15.629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.592,26.129],[-75.2005,24.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.714,36.223],[24.535312,36.193156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.6745,8.6815],[68.756,8.781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.262,37.129],[-12.3215,36.9595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.40825,43.841641],[9.3835,43.6835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.527125,35.095375],[26.3455,34.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.391,59.375],[23.276992,59.333898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.468312,43.437344],[14.57,43.388]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.85675,55.689875],[19.667375,55.756125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.583875,39.728437],[4.749,39.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.152,70.379],[9.329,70.226]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.984023,57.868031],[7.335,57.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.5795,41.6295],[18.562,41.506]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.794,33.382],[-126.657,33.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.12,-11.678],[44.482,-8.1005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.861,41.096],[10.621,41.361]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.318,52.727],[4.97725,53.05975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.819687,55.97925],[15.834,55.801004]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.836,52.6515],[1.7605,52.721312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,19.799],[120.429,19.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.946,-7.65],[125.444,-8.0255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,-35.386],[-161.777,-31.932]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.3215,27.4185],[-79.326,27.136]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.001,-35.5],[116.659,-36.088],[114.397,-35.742],[114.192,-35.583]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.986512,49.982141],[-5.088035,49.877716]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.940484,57.706078],[-2.633,57.923]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.616172,47.031484],[-2.4565,47.093312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.81,30.16],[-73.086,30.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.663,30.087],[-63.095,28.362]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.584281,51.740625],[2.716,51.716]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.328,65.7135],[-24.6895,65.8105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.032,53.1915],[-4.762828,53.372312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.28775,40.11775],[13.129969,40.136344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.443266,57.8495],[10.606109,57.893906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.759,57.006],[19.76325,56.776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.537,14.13],[-61.562,14.556]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.574336,37.448672],[23.711118,37.566561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.082625,36.22475],[23.176,36.185375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.636,72.363],[-57.959,71.212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.671,18.741],[140.01075,17.68825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.498,61.82],[19.654,61.773375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.097,38.956875],[12.905,39.207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.17575,49.3525],[-6.035234,49.205703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.104,34.236],[-144.976,35.364]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.32207,58.511648],[9.571,58.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.278719,36.850313],[25.316312,36.979156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.455,44.503],[-63.25,44.501]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.633,57.923],[-2.466375,58.039375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.55,-36.509],[157.632,-36.222]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.8985,36.70325],[-9.02568,36.730164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.435,10.034],[-170,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.269625,51.369531],[-3.674,51.392]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,10],[148.248,14.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.425875,38.3485],[22.265375,38.280375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.053,59.241],[-149,59.7],[-148.943,59.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.94925,54.65975],[15.153625,54.709937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.134,12.652],[-112.549,12.904]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.301,65.057],[22.314,64.8995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.481,38.108],[11.6695,38.146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.4665,43.5815],[-9.3475,43.7655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.3395,41.3125],[-68.833031,40.499813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.128,62.0715],[-7.684,61.894]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.514,30.065],[-160,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.043094,57.403391],[7.8885,57.1615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.025,31.186],[-62.304,31.104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.2175,36.945],[-11.963,37.096]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.73,-44.177],[-89.998,-46.441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.002,35.462],[-133.753,34.081]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.37,58.85],[19.129,58.642]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.702,21.902],[-76.36,25.697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.54075,59.33725],[4.676625,59.22]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.555875,43.504],[15.479484,43.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.08175,60.105656],[19.245125,60.090375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.349,56.625],[-6.449,56.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.8015,59.343],[4.68925,59.339125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.9965,69.66825],[18.286,69.502]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.92775,38.517],[12.09375,38.50575],[12.253062,38.459375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.494,-10.629],[122.362,-11.439]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.711,42.261625],[5.819,42.257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.140875,56.603187],[18.01975,56.725062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.235,24.49],[-154.459,24.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.4275,40.353],[2.57,40.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.229907,5.372682],[-11.5145,5.516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-174.279,34.652],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.5435,40.9],[3.665,40.72475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.941,42.073],[-32.99,43.194]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.983172,37.421102],[23.901129,37.534844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.521,25.04],[-81.82,24.762],[-81.822,24.446]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.8735,59.1445],[-2.939,59.038],[-2.958,58.9955],[-2.801,59.002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.627875,42.037047],[16.611359,41.91252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.4155,43.50525],[15.34025,43.32625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.117,-36.416],[-165,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.290563,55.696742],[16.153813,55.639187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.164,53.38],[-40.003,53.254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.177,59.329],[0.472,60.4055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.181758,38.338969],[26.1395,38.17925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.723,54.60825],[8.643953,54.449359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.15375,62.46775],[20.72475,62.21775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.33075,42.59075],[4.917404,42.940596]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.973812,35.072219],[23.841,34.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.517516,54.009156],[7.383047,53.934812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.998,-33.533],[-20,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.781,-0.212],[-38.231,-3.019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.785,28.027],[125.529,28.388]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.443,57.903],[0.685,57.833]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.8455,36.176],[33.713,35.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.554563,39.140563],[24.69525,39.105125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.913,35.802],[29.48,35.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.273031,36.518203],[24.132,36.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.320359,54.993281],[10.479375,54.991062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.94525,37.9905],[-13.755,38.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.241,41.973],[10.631438,41.748188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.804,35.108],[26.6655,35.197]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.505,34.7635],[23.393,34.686]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.1965,39.41],[17.9875,39.214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.138,56.045625],[14.946219,55.885438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.953,0.967],[-110,1.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.61125,53.64325],[0.650125,53.747875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,30],[-60.542,30.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.999,34.5095],[-8.166,34.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.61,-35.006],[-85,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.2715,60.8],[3.014,60.878]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.42875,61.177063],[4.455,61.048],[4.53675,60.915125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.2535,38.9945],[0.3555,39.03725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.777,39.688125],[13.6995,39.754]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.998,-29.998],[4.581,-25.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.72325,58.458625],[9.850938,58.455938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.771266,38.382219],[20.764938,38.532688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.988703,55.967375],[16.963375,56.103875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.074,55.296],[-5.8075,55.13525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.343812,56.340094],[16.329359,56.167422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.896,30.975],[-143.235,33.517]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.821,34.546],[23.393,34.686]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.006,35.737],[-4.663,35.901]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.018578,41.432406],[16.892,41.170313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.779031,42.454313],[15.835125,42.287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.971,37.347],[8.938,37.338],[8.547,37.306],[8.357,37.282],[7.6215,37.2355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.738955,51.010418],[1.781094,51.149254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.614,-35.249],[-51.255,-32.224]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-70.875,-53.761],[-71.104,-53.9445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.003,53.254],[-42.928,53.053]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-174,-3.833],[-175.097,-4.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.24,70.804],[-17.457,69.574]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.02875,43.631],[7.749469,43.513031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.158,40.787],[3.285,40.688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.287602,40.316414],[13.129969,40.136344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.108,35.232],[-75.377,35.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.62,44.742],[36.51325,44.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22,33.3],[23.432,33.734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.36025,49.4095],[-4.531297,49.444938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.846,71.023],[23.4435,71.1135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.295,40.616],[11.072,40.863]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.388,7.438],[134.28675,5.76875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.904,40.413],[-68.895,40.2935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.795,38.639],[-71.626,38.516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.693219,38.449734],[25.73368,38.316016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,15.17],[-30,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.7835,49.326],[-3.503,49.4345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-116.769,-26.951],[-115,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.536,37.596],[11.950375,37.42875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.574,-10.019],[-100.111,-10.043]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.835453,51.697],[-5.699,51.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.5865,37.32325],[25.445227,37.265547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.1415,60.0895],[21.114,60.087],[20.975,60.082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.314,64.8995],[22.47275,65.02225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.277,55.919],[19.279375,55.78375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.451,55.265],[-8.246,55.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.145,39.4845],[17.969,39.35225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-10],[-14.197,-8.048]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.69275,58.240875],[6.4075,58.2605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.986406,52.129875],[-5.914,51.913]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,8.5915],[70.819,8.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.001,-31.927],[9.998,-29.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.895656,56.986219],[11.700969,57.004469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.075875,57.366438],[17.827719,57.417594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.25,40.6],[145.309,40.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.5,27.7],[-112.846,29.064],[-114.401,31.359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.568336,53.698863],[7.336219,53.704219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.038,22.017],[-66.879,22.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.311906,60.771219],[19.46925,60.756625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-50],[-150,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.557625,35.496],[25.361,35.556]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.3475,58.942],[2.13,58.767]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.0205,57.164],[19.086,57.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.8205,47.2725],[-4.921594,47.532438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.881938,54.76175],[-1.001,54.824],[-1.1235,54.886125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.666,7.936],[-138.435,8.466]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.035125,36.354312],[23.032266,36.463187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.346187,44.948625],[14.177156,44.91425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.6375,58.141],[4.2665,58.0935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.697,56.8975],[20.8215,57.0355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.1145,43.561125],[9.284562,43.64225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.6,58.71075],[9.6905,58.6615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.17,53.213],[-9.428,53.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.056781,42.458625],[16.994469,42.64625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.22825,58.537625],[17.47,58.224375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.3555,37.10975],[12.227859,37.204313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.20725,34.602375],[-8.293,34.333]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.457313,38.177813],[16.04175,37.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.778578,52.525672],[1.873219,52.440906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.33725,39.5515],[14.437,39.357]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.58,-56.479],[-65.17,-56.0015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.12325,28.879],[-15.8605,28.702375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.753,56.857],[11.700969,57.004469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.751,60.222062],[21.694,60.104],[21.56175,59.9105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.493,42.808],[-50.002,42.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.629129,42.695691],[15.838797,42.578672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.9465,51.4375],[0.859523,51.49709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.7055,54.5395],[10.815275,54.580532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.633094,51.153219],[1.640156,51.30475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.826,47.459],[-132.411,47.278]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.3435,41.774687],[11.155,41.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.15,38.998],[0.11825,38.9955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.9945,44.2065],[13.111,44.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.218281,38.426297],[13.352219,38.52725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.392,38.658],[10.264625,38.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.3325,54.337],[0.074,53.873]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113,-23.5],[110.809,-22.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.1,27.723],[-76.84,27.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-10],[-85,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.148,48.725],[-10.59025,49.12975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-177.48,30],[-174.279,34.652]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.6315,57.2275],[11.756,57.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.163937,36.269188],[-9.67,36.427]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.2555,36.778],[15.301,36.902],[15.355092,37.062154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.495,57.79],[-7.9135,57.7845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.811,37.362],[-69.848,37.221]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.122,55.707],[2.738,55.842]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.555,39.474],[7.563,39.075875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.224291,18.787721],[-64.3405,18.893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.581,-24.856],[-140,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.754,58.5605],[9.72325,58.458625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.256,-19.043],[177.7685,-18.776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.181,59.334],[3.077,59.223]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.716,35.924],[-2.524,35.949]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.095,42.752],[6.614,42.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.352,37.851],[25.464344,37.906844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.974,31.633],[-72.666,31.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.561,32.171],[-77.322,31.471]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.345,46.529],[139.018,44.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.64175,57.707063],[9.712203,57.602812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.703,37.724],[-10.57275,37.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.015,52.817],[-6.12775,52.78525],[-6.029234,52.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.950254,58.636547],[-2.789625,58.690625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.074,40.596],[-9.129,40.4825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.650688,56.718375],[10.794,56.6105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.14775,36.9025],[12.043641,36.978828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.014,61.249],[19.2135,61.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,0],[-141.329,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,20],[160,17.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.316,36.971],[-70.789,36.836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.837125,49.055563],[-5.847875,48.8505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.132,63.008],[19.327,62.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.56,65.936],[-14.812,66.0525],[-14.501,66.334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.491375,49.795438],[-5.27725,49.801125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.488,25.657],[35.026,26.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-40.558],[159.513,-40.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.747031,37.257],[26.669344,37.348992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.320172,56.856264],[12.203125,56.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.31343,36.005234],[27.240258,36.166695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[151.14,41.972],[150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.259,65.443],[22.1805,65.563],[22.399094,65.462063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.6655,36.365],[21.777297,36.300844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.844188,41.195719],[12.292844,41.374625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.89325,58.07875],[9.061625,57.933375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.662,-33.677],[112.97,-34.641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.839,46.673],[-4.885,46.7895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.341,47.597],[-122.458,47.608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.176,1.848],[-84.197,4.084]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.671,54.721],[14.656,54.597]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.923344,58.151258],[11.019367,57.973977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.8885,57.1615],[7.8925,56.96425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.23175,56.1155],[18.341,56.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.154,-25.422],[168.477,-28.561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.667,19.443],[119.704,19.781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.6645,53.90625],[1.819,53.993]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.812375,40.032813],[18.933187,40.113875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.024,29.0105],[-16.12325,28.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.314,-22.4065],[163.5,-20.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.725062,59.536187],[19.747,59.344625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.29,42.797],[-10.156,42.8315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.555,-19.077],[117.859,-18.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.6945,60.083188],[24.898484,60.112219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18,15],[-21.295,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-119.2,-0.811],[-115.441,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9525,63.4815],[9.789,63.632],[9.732,63.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.412,-24.677],[-3.205,-23.397]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.98525,54.511],[-9.302,54.721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.246813,43.923437],[8.149375,43.88925],[8.002094,43.844172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.126,-36.193],[162.151,-35.957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.01275,19.968875],[-52.018,22.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.443984,37.825055],[23.336,37.859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.9415,57.48925],[9.116375,57.51025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.882,53.699062],[5.60825,53.644062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.627625,47.370625],[-2.62,47.1905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.359,37.154125],[26.187359,37.083187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.689,36.3035],[34.697,35.8635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.6925,56.117125],[7.76825,55.82075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.417,40.653],[-40.951,41.016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.613969,37.726234],[24.56984,37.861602]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.1205,60.433625],[19.039656,60.36375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.245094,44.238289],[9.1325,44.136844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.7915,38.6235],[19.415,39.089]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.81,42.436],[-10.591,42.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-40],[85,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.428,-33.901],[18.424,-33.876],[17.59675,-34.271125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.653,26.549],[-177.578,27.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.5,-20],[-37.627,-20.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2,58.4],[-1.946,58.301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.417,40.653],[-50,40.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.435,28.425],[-80.099,27.582]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.8995,49.0385],[-4.739906,49.082062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.968,37.1435],[23.20975,37.28275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.933,56.963],[-151.879,57.082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.641,64.96575],[-13.763875,64.873109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.76025,64.056],[-22.87425,63.90875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.888,30.351],[-78.336,30.358]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.201,43.211812],[16.071875,43.207687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.598375,59.528781],[10.622,59.64525],[10.5625,59.779125],[10.68,59.888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.59334,58.182074],[8.51225,57.988031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.841,34.87775],[25.64,34.797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.0985,54.551],[6.018,54.687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.514,42.555],[14.5495,42.757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.531,38.308],[-74.5,37.68725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.023,35.50875],[27.848,35.717875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.032,53.1915],[-5.284,52.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.775625,55.49725],[15.7975,55.397]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.4845,48.993625],[-3.6805,48.9415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.151,26.236],[-87.729,25.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.804,41.061],[-8.89175,41.38325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.5735,42.233],[18.26675,42.311625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.2475,56.7045],[-5.825,57.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.780969,57.144813],[19.759,57.006]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.331,59.298],[-0.368,59.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.998,-47.119],[-83.241,-43.629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.613,51.9355],[-6.274,52.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.7975,55.397],[15.8615,55.27075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.373,6.54],[111.913,9.798]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.821124,50.461551],[0.835892,50.461512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,4.499],[60,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.539,37.714],[16.771,37.649],[16.794,37.644],[16.874,37.626],[16.903,37.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.723,52.764],[-5.814641,52.630781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-148.928,41.201],[-150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.05475,4.873125],[2.353,4.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.684,56.024],[11.254062,56.020437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.161,6.81],[-57.9165,7.021]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.999,15.069],[153.339,16.018]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.49,8.491],[-13.817,7.846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.1415,60.0895],[21.088938,59.994812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.047,67.671],[9.573,67.798]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.781,35.916],[30.199125,35.627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.007094,42.077813],[10.126125,42.04025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.937,36.492],[-126.38,36.659]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.268,44.189],[-7.219,44.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.096688,54.63125],[18.992875,54.742188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.716,-50.835],[-81.643,-51.917]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.45,57.0095],[17.1705,56.736]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.3,-8.9],[178.176,-7.0755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.659,-9.23],[177.3165,-10.549]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[97.646,11.283],[97,11.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.857,44.445],[-8.7905,44.57725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.6775,35.958375],[-5.836469,35.917547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.93825,37.46175],[-72.558,37.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.607,52.89125],[-5.723,52.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.871895,37.599242],[25.875344,37.344346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.547375,63.343688],[20.76475,63.2915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.365,26.618],[-86.8515,26.3215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.424594,36.563602],[23.448219,36.698781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.574,39.7205],[3.195,39.823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.788423,35.822991],[27.666,36.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.984953,43.207],[10.09875,43.135898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.001,26.158],[-60,28.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.996312,50.798438],[0.874273,50.62893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.798,34.511],[35.522,34.5055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.332,49.714],[-0.375781,49.598094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.566531,58.892156],[10.496875,58.794438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.008,55.3205],[17.18275,55.4065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.488766,37.681125],[25.643836,37.532453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.947375,43.03275],[4.225,43.084]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.300562,55.791313],[18.29475,55.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.37,55.882],[18.417625,56.110875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.464,43.665],[-5.642375,43.70525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.091375,36.280375],[25.762875,36.295375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.392,41.835],[36.393,42.207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.184,-52.823],[-75.196,-52.636]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.137,-5.918],[-144.448,-5.607]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.524,-25.698],[109.188,-23.802]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.175438,48.301625],[-5.825219,48.522094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.4015,39.074438],[24.329437,38.774031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-20],[-12.089,-20.029]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.79625,37.754109],[24.613969,37.726234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.591102,36.976594],[24.622062,37.143313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.001,28.033],[-140,28.486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.609,55.80425],[7.767188,55.361438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.64625,58.70025],[21.46775,58.38925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.297,13.889],[-69.98425,12.99075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.804125,35.962438],[26.148,35.97375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.196,-9.807],[-100.111,-10.043]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.487219,57.727984],[-2.12775,57.97225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.679906,43.340594],[8.647938,43.5355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.706937,58.325312],[18.83525,58.345438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.81,56.804937],[10.627,56.8515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.708,-23.944],[165.34,-24.27],[164.83,-24.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.979688,38.186562],[11.71975,38.425125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.555,-19.077],[116.667,-20.1995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.927813,60.014313],[19.76575,59.85875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.5955,26.7635],[-79.333,26.737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.538125,56.988812],[7.519938,56.819563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.798,35.795],[-5.787,35.811],[-5.836469,35.917547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.607281,38.723094],[8.454969,38.787375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.9875,39.214],[17.691375,39.0805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.574,39.7205],[3.7285,39.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.54,28.414],[49.051,28.2135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.002,35.697],[-140.001,37.671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.732,17.753],[-65.84175,17.25425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.563,45.463],[159.619,41.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.950602,54.250352],[8.125719,54.198719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.815275,54.580532],[11.007062,54.683188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.756,-25.508],[-125,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.073,57.289],[5.077,57.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.49425,60.75125],[4.178,60.77325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.483437,46.081187],[-1.445,45.863]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.106,41.275],[12.00475,41.5005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9415,57.9345],[4.66975,57.805625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.607,37.6575],[20.383469,37.928031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.71,72.881],[155.503,71.82],[160.507,71.607],[164.54,71.152],[169.592,70.861]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.39,31.728],[32.055375,31.709125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.432,44.096],[30.335,44.364]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.111,-45.404],[40,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.063,-16.094],[-140,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.256797,54.157672],[6.1845,53.931]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.197555,54.799437],[-1.096,54.68175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-20],[-29.999,-25.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.300562,55.791313],[18.058125,55.827438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.875133,58.064367],[18.976562,58.336062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.926188,36.072688],[23.881875,36.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.62475,40.476],[1.43,40.173437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-40],[-5,-40.107],[-10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.661094,43.761875],[9.76475,43.9355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,18.081],[-170,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.8625,43.9005],[9.76475,43.9355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.914,51.913],[-5.835453,51.697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.803,33.889],[29.6255,34.0145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.152,0.007],[-31.738,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.914188,58.028562],[5.923063,57.919531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.404875,45.23625],[-4.802,44.843]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.05875,54.8595],[12.761906,54.963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.195,33.753],[-17.859,33.814],[-16.828,34.002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.370969,43.074438],[16.312141,42.964672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.493,58.234],[21.492036,58.225111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.01575,55.429375],[6.7225,55.4545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.559,-17.795],[0.001,-14.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.474969,46.901594],[-2.563125,46.766312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.3555,39.03725],[0.333937,38.828812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.00175,29.074],[-69.862,28.766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.634,48.102],[-4.367,48.118],[-4.47375,48.13525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.019,26.967],[-75.789,26.774]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.820594,36.086266],[15.4005,36.2535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.065,56.126],[20.225,56.070875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.7595,58.514],[19.828187,58.286062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.641188,59.016695],[5.388687,59.108156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.405,53.76525],[-4.563,53.529625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.789625,58.690625],[-2.688125,58.72825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.729,38.39825],[13.564,38.396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-116.769,-26.951],[-112.917,-30.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.940734,54.140664],[7.85825,54.026781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.011,-30.093],[-161.777,-31.932]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.894938,60.026063],[4.786625,60.099375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.18675,37.21475],[12.94975,37.154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.248,40.4505],[3.126,40.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.129834,47.736476],[-5.162449,47.89148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.5225,53.7095],[0.31975,53.6265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.1625,40.289],[-11.0815,40.171]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.497,33.0425],[34.782,32.9665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.147,17.967],[153.965,16.192]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.936,40.513],[13.12025,40.358]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.316,13.76],[-67.756,13.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.939375,36.260625],[-3.794,36.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.27,44.458],[-10.233,43.988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.8115,42.1715],[38.604,42.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.074063,36.502156],[25.662312,36.51475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.991062,39.215125],[14.828,39.26875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.569,57.0855],[-1.514,56.567]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.969508,55.613234],[16.072,55.571188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.6115,43.0815],[8.762,43.171]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,0],[-1.744,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.332875,49.78975],[0.31,49.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.802,19.144],[-67.038,19.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[102.09,9.03],[103.12,10.2195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.571437,54.234938],[15.34625,54.40375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.864,42.34],[-32.99,43.194]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.960125,48.668156],[-5.1955,48.6105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.184,47.355],[-38.953,49.016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.9785,39.00525],[-30.131,38.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.941,64.554],[9.242,64.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.37425,51.62325],[-8.253219,51.73225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.73,1.069],[172.789,0.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.639563,21.207063],[-157.473,20.933]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.851,-29.331],[60,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.210094,56.756406],[11.2215,56.872]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.773,62.36775],[17.952,62.488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-30],[-105,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.1175,30.3905],[-79.286,29.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.5605,57.566],[22.8835,57.739656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.57,46.24],[-7.907,47.484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.93675,52.1415],[2.74625,52.283687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.99125,61.414],[19.176,61.436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.868,56.834],[17.973375,56.86475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.339812,55.3525],[-5.322094,55.174047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.213,20.742],[-74.44025,21.20575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.470937,57.634844],[11.485,57.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.832344,44.290719],[28.707656,44.083062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-179.276,24.253],[-176.861,23.327]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.902,35.846],[17.971,36.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.127125,53.823289],[7.15825,53.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.022344,53.425938],[-2.945,53.323]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.048098,37.050152],[25.056,37.212477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.005,61.088],[5.462,61.074],[5.2085,61.0955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.046023,43.678289],[13.882094,43.651031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.15725,49.684],[-7.5615,49.789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-50],[105.112,-45.402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.886,38.627],[119.788,39.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.618437,39.248312],[24.78375,39.332875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.001,15.48],[-144.592,15.573]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.778,32.416],[-140,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.705844,53.926219],[8.836207,53.856746]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114,-29],[115.6,-32],[114.813,-33.771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.776,20.12],[123.243,20.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.38925,54.913375],[18.253312,54.956063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.241,43.515],[37.365,43.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.933,60.185],[-0.642,60.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.977,39.937],[14.17725,39.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.3,58.737],[0.738,58.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.260312,57.130813],[7.345375,56.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.881,-56.356],[-80,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.2575,39.2385],[1.4685,39.2315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.414875,50.408125],[-3.155,50.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.429,-10.1435],[153.803,-11.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.961,13.589],[-150,12.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.733,46.57],[-2.582187,46.53325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.002,35.462],[-130.002,34.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.891,-30.077],[0,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.59025,49.12975],[-9.041,49.366]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.873,-17.268],[162.364,-17.761]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.808875,40.13075],[24.706,40.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.48725,57.58975],[19.554,57.3935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.15575,46.252],[-20.348,49.687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.774,36.257],[-7.783,36.108]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.934375,28.807625],[50.981,27.249]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.678437,41.862938],[8.601104,41.911591]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.641687,36.75725],[-6.866,36.756],[-7.021656,36.719547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-20],[-89.999,-14.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.782,58.8525],[20.074,58.716]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.933375,41.962781],[16.087812,42.21875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.463,38.8435],[11.345,38.871]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.4725,12.5985],[43.605,12.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.8365,39.399],[9.9,39.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.343438,50.175062],[-1.363375,50.070875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.744563,60.670875],[19.658,60.46175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178.61,27.897],[-179,28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.376188,41.221563],[12.797687,40.844813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.667,54.1465],[1.565,54.068]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.921875,42.861625],[5.865656,42.697406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.376,38.882],[-69.574,38.781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.286,29.135],[-79.298,28.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.86825,42.487547],[16.994469,42.64625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.225,-19.68],[5.653,-19.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.001,25.91],[-165.819,24.432]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.795844,49.741437],[-6.6815,49.0915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.748,41.9725],[-9.949,41.754]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.257188,57.102688],[20.375937,57.017969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.391,-33.924],[40.002,-33.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.413297,56.01575],[15.531,55.897359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.461063,54.628125],[-0.599,54.643]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.58575,55.504],[21.048625,55.733375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.9205,31.4715],[-66.136,31.709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.02025,49.165],[-4.856625,49.25625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.71025,39.93775],[9.81725,39.933875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.123,50.798],[-5.99825,50.64475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.237,41.3],[3.828,41.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.951906,50.026156],[0.86375,50.08725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.62,56.504],[3.9585,56.3915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.257906,44.431859],[14.325188,44.284687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.524,59.332],[2.429,59.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.32575,48.0045],[-5.28275,47.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.797406,39.02825],[14.797,39.16425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.228418,43.868785],[14.179625,44.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.271,55.729],[20.083375,55.649687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.329,-35.079],[-34.666,-35.073]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.607,52.89125],[-5.5765,52.78375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.81,30.16],[-72.946,28.828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,30],[-140.896,30.975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.178562,58.801852],[10.158938,58.655438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.896,69.775],[57.55,70.204]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.078,44.293],[28.7885,44.149]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.0535,18.407],[-64.78825,18.2635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.40775,38.70975],[25.555,38.7135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-30],[-169.999,-27.257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.24,40.849],[2.987,40.9215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.195,43.496],[-10.055594,43.343344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.803432,55.565219],[10.858875,55.359875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.898,50.123],[-25.624,50.437],[-20.509,50.531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.687,55.5895],[15.812328,55.619172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.596719,36.353],[-2.68,36.0415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.095148,57.475766],[16.744,57.114]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.365992,57.405602],[11.278492,57.636105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113,-23.5],[111.836,-22.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.001375,61.586],[4.974,61.436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.098125,37.256125],[27.001625,37.213]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.688719,55.436031],[15.7975,55.397]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.215,-32.111],[107.357,-30.662]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.8455,56.454],[4.719,56.387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.67325,38.826],[-11.81,38.429]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.1,71.3],[27.58,71.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.396,38.038],[-74.142,38.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.0565,39.6085],[15.203,39.3115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.146,57.054],[2.563,56.968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-40],[63.382,-43.612]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.457375,57.510875],[7.484187,57.39625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.008,59.505],[16.637,59.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.5,43],[-9.064,43.392]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.081,51.08],[-172.539,47.582]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.247,61.826],[-168.578,61.7795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.751,-55.431],[-80,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.957875,39.671375],[23.75625,39.75375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.11625,58.3085],[0.2155,58.5015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.545969,57.573281],[8.436813,57.398375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.0065,-20.694],[60,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.724,29.648],[-75.641,28.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.322094,55.174047],[-5.2065,55.256375],[-5.166329,55.353328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.87075,37.3775],[12.628,37.482875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.00325,41.54275],[7.80675,41.95375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.409,43.479],[8.320789,43.409773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.404,63.2245],[20.438094,63.345781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.001,23.41],[-120,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.859875,39.55475],[24.914398,39.395555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,10],[-28.406,8.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.81,39.197],[0.829688,39.325937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.548,72.233],[-79.955,72.637],[-77.648,72.813],[-71.636,72.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.872,-10.036],[-121.277,-8.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.78125,52.2725],[-5.709437,52.145875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.301,60.082],[-63.426,60.948]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.5115,44.431],[37.679,44.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.908,44.0985],[12.824625,44.215563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.631,37.604],[-69.6645,37.411]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.179469,53.560531],[0.419602,53.471922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.479125,62.294875],[19.763,62.343],[20.018937,62.395094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.214375,38.33675],[14.10575,38.21125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.998,-46.441],[-90,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.21975,42.249031],[11.175875,42.13775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.705,47.61],[-4.847859,47.767328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.436234,50.586422],[-2.049,50.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.39,31.728],[34.2105,31.921625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.10975,64.69225],[24.191,64.877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.095,58.484],[9.32207,58.511648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.534,37.753],[-72.544,37.487]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.900813,36.420781],[26.768125,36.398812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.068172,43.096422],[15.93775,43.027563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.356,55.347],[6.282,54.594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.01975,56.725062],[17.885,56.635],[17.768812,56.5435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.896313,60.581609],[19.069625,60.563875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.894938,60.026063],[4.984438,60.133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.999016,51.063203],[-5.998,50.919],[-5.98425,50.81275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.293625,56.684125],[7.166906,56.684656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.5735,48.60675],[-6.779,48.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.5435,40.9],[3.875,41.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.577,-7.375],[80,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.206,39.346],[19.328,39.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.877375,43.491312],[10.025413,43.585063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.973,18.043],[-75.431375,18.567875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.38325,41.431125],[17.225375,41.650625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.525,37.454],[6.05,37.398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.6,20.933],[-83.036,16.376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.2245,57.755],[24.306,57.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.92975,57.38025],[18.956125,57.266875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.636,36.764],[12.894,36.694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,20],[156.825,16.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.480375,54.814172],[18.372,54.856]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105,-35.386],[-105.527,-35.872]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.0645,49.09525],[-1.986,49.3995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.978891,48.984687],[-2.776875,49.154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88.187,-17.113],[88.37975,-17.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.718953,36.683297],[24.534312,36.54225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.448,45.991],[-4.247,46.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.9485,38.465],[12.860656,38.392594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.160484,55.483516],[16.336,55.514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.803,33.889],[29.696,33.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.973449,43.527437],[-9.755,44.017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.159,34.325],[27.851,34.434]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.6265,68.4315],[16.87,68.43425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.63,-30.366],[-47.055,-32.408]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.001,48.695],[-28.802,48.874]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-50],[-94.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.211,57.723],[-137.101,57.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.661375,54.568625],[-0.419375,54.467625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.619,-32.499],[156.222,-31.5435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.637,27.227],[-88.151,26.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.956,29.549],[34.705,28.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.979,50.006],[-11.10825,49.92825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.237,65.446],[24.25425,65.1305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.616,36.403],[28.400875,36.420125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.320125,38.425875],[-9.50125,38.4285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.776219,53.958375],[7.645297,53.946391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.8445,41.7405],[16.932016,41.652781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.097687,39.923344],[24.066906,39.810875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.187813,51.267063],[2.135187,51.086938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.16675,54.982062],[19.056625,55.026859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.2095,45.552375],[13.0955,45.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.0055,-34.501],[23.125,-37.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.578,13.736],[41.64,14.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.4805,43.931],[-8.248,44.301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.68825,57.74475],[19.779,57.847],[19.896906,57.983906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.437,39.357],[14.797,39.16425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.2445,58.5955],[-0.642,58.557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.092,34.232],[29.739,34.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.757844,36.720125],[23.697344,36.851469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.574,40.098],[-59.44725,39.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.2875,55.08225],[16.336875,55.2255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.825875,55.820125],[-1.703125,55.893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.741,59.199],[3.48175,59.2585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,0],[86.11,0.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.984,60.903],[19.941,60.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.057125,56.24225],[18.916,56.179]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.892,6.947],[124.587,4.819]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115.2,27.5],[-116.174,28.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.3075,47.6105],[-4.44875,47.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.738,14.512],[-73.778,13.508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.07125,59.727875],[23.257469,59.677742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.587523,57.231133],[8.6995,57.301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.613,47.755],[-4.44875,47.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.8,26.3],[-77.903,27.051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.682,-14.527],[-170.597,-14.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,50],[-125.772,48.732]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.208,13.491],[-161.096,11.253]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9795,38.02],[9.903,38.129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.00825,37.67925],[26.945125,37.52475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.7815,60.85],[4.6715,60.750375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.488,46.876],[-7.64925,46.56025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[77.942,7.1925],[76.451,7.458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.63,39.823],[128.538,39.424]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.747,59.344625],[19.7,59.116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.8155,39.07775],[24.69525,39.105125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.955,-0.829],[51.621,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15,64],[-16.367,63.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.334852,55.396055],[7.0985,55.051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.41,53.429],[-5.511687,53.391188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.332,21.337],[91.08,21.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.1,34.608],[135.1,34.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.833,60.048],[-3.787,59.781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.1745,43.844],[15.114062,43.681008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.243,25.884],[35.488,25.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.1325,39.7455],[1.382,39.691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.137,58.464],[-11.893,58.392375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-117.491,28.693],[-120,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,67],[-13,66.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.268,32.3085],[-73.851,32.0965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.242,56.231],[17.51,56.043]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.793,42.906],[33.328,42.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.070766,41.926359],[11.074531,42.170063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.349,2.028],[45.759,1.647]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[86.167,69.4],[86.061,69.459]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.95,64.034],[-13.889,63.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.0245,49.4815],[-6.0415,49.3585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.359,42.156],[-65.54,43.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.082,42.463],[8.254188,42.212844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.846688,38.314312],[24.699875,38.2665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.314,11.265],[-70.967,11.738],[-70.64,12.842]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.121,37.889],[-9.1675,37.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.291437,57.324875],[8.247625,57.206937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.979,-24.218],[164.455,-24.722]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[83.657,17.414],[85.735,15.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.987688,57.083188],[7.8925,56.96425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.328,-21.306],[-39.676,-23.686]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.584,43.611],[37.241,43.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.002,46.614],[-140,49.813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.906,37.636],[-9.8735,37.8195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.06,10.301],[-80,9.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.479,37.911],[-9.569,38.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.635,69.166],[169.592,70.861]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.634,55.045],[19.460875,55.291625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.593,60.69],[-63.373,61.046]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.007269,58.895432],[18.006891,58.895237]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.043375,41.15575],[17.171125,41.08675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.67325,38.826],[-11.233,39.706]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.2215,49.992],[-2.066,49.9695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.062375,41.7515],[4.9295,41.66625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.667,19.421],[113.262,17.292]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.593719,39.019594],[25.731883,38.950109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.3285,56.291],[-2.158,56.169]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172,-40.5],[165.545,-40.696],[160.52,-40.571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.6365,58.829937],[9.6,58.71075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.5,-10],[150,-12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-50],[-50,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.910063,54.722562],[11.007062,54.683188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.761,35.673],[17.194,35.991]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.875,49.623],[-5.901,49.39275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1825,60.43825],[4.19375,60.206]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.819488,55.736742],[10.7,55.789],[10.564031,55.702922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.461,61.443],[7.291,61.301],[7.416,61.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.7035,38.082375],[22.5995,38.1295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.062875,36.194766],[27.153734,36.263531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.252438,50.074],[-1.363375,50.070875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.07675,57.820687],[10.962883,57.725977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.244,63.448],[-19.724,63.4365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.137031,48.747781],[-2.0645,49.09525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.756689,38.228457],[12.452187,38.042813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.05075,64.645],[-13.916555,64.593055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.742375,38.453875],[12.832,38.603],[12.96525,38.81575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.152625,60.6845],[19.069625,60.563875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.737,31.675],[-14.778,31.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.385406,39.761953],[18.1875,39.7695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.582,10.026],[-149.999,9.999]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.09,52.4045],[-10.382,52.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-10],[-80.2,-7.3],[-80.3215,-7.153187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.485,58.356],[17.47,58.224375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.99,26.0255],[-96.967,26.552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.883227,36.766941],[27.058477,36.863164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.875344,37.344346],[25.757562,37.463438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.589,-10.3225],[177.85,-10.774]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.48,-10.264],[159.429,-10.1435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.68725,35.7515],[-6.345,35.827]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.95,47.109],[-4.5075,46.1365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.155,38.615],[10.25175,38.560375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.0765,52.177375],[-6.279813,52.145188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.514453,37.487023],[24.367508,37.438992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.4255,58.022125],[10.3155,57.931]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.55675,36.341625],[27.394,36.29525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.979188,54.837812],[17.1185,55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.017688,58.729125],[19.0095,58.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.014125,58.300438],[9.997937,58.12425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9815,59.394],[-1.1365,60.0135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.224,-23.063],[5.024,-25.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.382,4.435],[-94.935,4.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.890566,58.507941],[10.766969,58.820484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.570625,45.229859],[14.689375,45.158625],[14.828469,44.979125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.224305,56.801758],[20.151375,56.527625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.1425,49.1885],[-3.991312,49.086812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.394,42.646],[36.395,43.2535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.4915,40.277438],[13.418305,40.172133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.49475,56.37125],[-1.466039,55.658266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,40],[-175,40.107],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.335969,37.149344],[25.445227,37.265547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.026,35.41],[-48.553,35.006]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.849,29.333],[-78.516,29.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.226,68.788],[16.977,68.883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.35225,58.31825],[10.368547,58.168937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.214375,38.33675],[14.322,38.323]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.284,3.327],[139.998,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.6855,57.8145],[22.52325,57.8175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.322,42.111],[5.627,42.198]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-20],[-99.099,-19.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.303,33.725],[26.488,34.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.443,55.98],[-6.5735,56.153375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.645,-52.756],[-75.964,-52.8455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43,69],[43.161,67.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.591102,36.976594],[24.732742,37.148824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.947301,36.533693],[26.841437,36.615871]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.982,25.237],[-87.418,25.319]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.171109,54.987867],[15.1755,55.115625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.962875,39.856],[18.016,39.588]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.3555,39.03725],[0.542,38.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.9255,53.926],[0.406,54.066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-103.814,-6.771],[-104.133,-5.922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.674,-23.033],[110.809,-22.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.145375,36.8225],[18.21175,37.191875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.001,41.245],[12.179,41.12775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.478,-12.6],[-135,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.675,6.409],[-85.74,5.229]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.588125,49.24],[-2.39025,49.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.6475,46.1675],[-2.484,45.966]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.998,-35.024],[-19.998,-33.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.262,53.246],[-51.588,52.279]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.428,53.057],[-9.438,53.046],[-9.768,52.783],[-9.9805,52.55825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.934,56.01675],[7.8805,55.671875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-30],[-96.127,-26.341]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.021,-31.953],[169.996,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.468,40.492],[-68.969,40.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.863875,57.725],[7.884937,57.489125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.921,50.718],[-12.369,51.078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.995,35.682],[-12.80925,35.90075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.883227,36.766941],[26.78075,36.93875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-60],[-50,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.639,43.86],[-3.584,44.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-98.847,0],[-100,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.97443,37.198852],[11.950375,37.42875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.647563,36.102063],[-3.4665,35.9315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.426,39.419],[-137.863,39.128]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.044,62.995],[7.2445,63.032]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.908,-32.275],[50,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.961844,55.224438],[12.855,55.116],[12.761906,54.963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.879,57.082],[-151.534,58.01],[-150.758,58.679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-119.999,-23.133],[-118.051,-22.066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.098406,38.745773],[25.242875,38.81175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.002,-33.86],[18,-35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.461437,42.272],[10.3245,42.045875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.79,59.192],[20.986,59.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.244,35.928],[-12.9385,36.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.729,56.968],[-162.092,56.731]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.4785,44.03925],[-5.698,44.061]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.586125,38.55925],[15.439125,38.654156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.352937,53.182125],[-9.785,53.172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.274,52.03],[-6.24875,51.86125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.8735,37.8195],[-9.984,38.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.807,59.155],[-3.60125,58.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.544531,38.937],[26.3335,38.78825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.486813,49.913687],[-4.5225,49.75725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.883,35.392],[34.981,34.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.138,37.104],[-135,35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-30],[-30,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.324082,16.097444],[-85.496236,16.108419],[-85.617115,16.115727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.395,-35.007],[5.833,-34.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.206469,55.504406],[19.1525,55.3495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-20],[-111.568,-18.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.051312,49.472781],[-5.1055,49.3635],[-5.223219,49.133437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.41,59.709],[4.52,59.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.795,40.764],[11.604,40.708]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.503,49.4345],[-3.591875,49.527438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.300688,50.459562],[-6.616687,49.755812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.0295,42.8415],[15.99325,42.63725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.737,59.86],[21.56175,59.9105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.998,-33.919],[-13.481,-33.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.341,56.215],[18.140875,56.603187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.277,37.303],[-75.807,36.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.179,41.12775],[12.350625,40.890625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.553,41.799],[19.0095,41.9535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.679,40.054],[17.335,40.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.1395,38.17925],[25.883766,38.665375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[175,-42],[175.538,-42.975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.009375,37.257469],[26.065406,37.367156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.548821,36.637965],[26.579297,36.488062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.968,39.1375],[10.042,39.058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.549,29.186],[-91.5485,28.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,10],[-125,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.999,-14.845],[-20,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,50],[-46.515,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.380484,37.715898],[24.267576,37.466994]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.484187,57.39625],[7.618,57.489],[7.739352,57.566789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.003,56.058],[-36.583,53.987]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.799813,36.065156],[26.76225,35.96925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.030938,39.152375],[2.243688,39.123438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.607,35.405],[-7.9735,34.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.926,54.463],[9.025,54.473],[8.971,54.479],[8.926,54.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.511,2.548],[-90.596,3.313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.991312,49.086812],[-3.4845,48.993625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,10],[-108.069,8.107]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.675125,44.706625],[12.984188,44.807578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.41625,43.609],[8.54625,43.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.467,44.177],[-3.367,43.963],[-3.314,43.824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.588,52.279],[-50,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.873219,52.440906],[1.8545,52.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.886,25],[-85.853,25.867]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.900813,36.420781],[26.821148,36.500563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.34675,54.536],[12.520802,54.552705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.600039,40.952727],[9.708391,41.070266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.02,43.925],[-9.3475,43.7655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,30],[-150.126,30.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.59975,30.13275],[-71.81,29.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-118.145031,33.559938],[-117.986,33.026],[-117.77,32.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.511437,37.485563],[26.4695,37.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.846,14.46],[-69.105,14.132]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.975734,43.784],[8.963688,43.633125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.497687,38.230871],[25.431312,38.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.154875,57.74375],[21.409937,57.676063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.034,-6.294],[-81.151,-6.153]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.900781,58.931719],[9.886453,58.776234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.685,38.347],[16.567,38.296]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.503602,56.56732],[20.564,56.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.845,41.095],[-11.2235,40.382]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.724,24.49],[127.822,25.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.860656,38.392594],[12.742375,38.453875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.534,55.306],[-6.2935,55.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.383,36.615],[14.513,36.624]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.654,59.814],[-93.6,59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.085,25.8165],[-74.895,21.968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.07,40.452],[138.127,40.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.156,59.947],[-83,57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.021,0],[65.02,-0.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.349,32.17],[29.087,32.508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.079625,54.454125],[14.176016,54.423125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.986,50.839],[-4.892,50.914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.656,13.9785],[-79.494,10.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.095,18.141],[65.813,17.409]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.66925,56.015],[7.76825,55.82075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.494,54.093],[0.845,54.0785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,30],[169.999,37.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.203,39.3115],[15.345625,38.912625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.784,27.54],[-86.3105,28.157]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.290563,54.095875],[4.965219,53.57975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.465,36.158],[-12.962,36.144],[-12.9385,36.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.177086,58.213051],[11.054781,58.192828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.133,22.009],[-69.297,23.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.628,54.262],[14.5505,54.181]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.66425,41.9375],[11.590312,41.846594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.832,55.579],[12.866844,55.739516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.893,61.197],[2.622,61.109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.712203,57.602812],[9.54475,57.600625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.42225,-46.9955],[-61.595,-45.728]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.589,-43.829],[76.746,-43.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.984,-3.172],[-31.738,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.043996,54.757462],[10.043812,54.524969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.639656,54.793781],[18.70375,54.90175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.926375,53.418125],[6.960219,53.640031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.23325,59.96575],[20.38425,59.75125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,10],[-110,9.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.076406,56.69125],[10.963531,56.821156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.754,56.883],[7.742406,56.692188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.2425,34.1605],[27.851,34.434]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.527,41.592],[-69.459,41.488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.6985,37.62825],[10.581,37.716]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[89.727,18.849],[87.08,14.742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.349,-7.263],[116.694,-7.292]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.50475,40.089],[24.57025,39.951344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[99.982,-8.482],[104,-7.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.381625,53.789125],[9.693,53.569]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.586,60],[-30,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,13.331],[-143.697,13.947]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.958,54.373563],[13.875,54.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.5925,41.309125],[17.643062,41.204937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,38.763],[150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.9,-27.8],[-47.0045,-27.237]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.2675,59.591437],[21.36,59.4475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.805,40.872],[28.6915,40.9335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.98,54.65],[-134,55],[-133.695,54.618]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.439,43.023],[28.777,42.899]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.847625,53.496813],[0.94375,53.539875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.362375,56.606469],[8.178625,56.688625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.1265,43.925],[13.007,43.867]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.963375,40.08925],[1.43,40.173437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.1145,59.968],[25.002813,59.812562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.1,12.2],[110.088,11.868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.697,43.835],[-9.6305,43.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.682,35.926],[12.264781,36.874156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.064,38.045],[8.516,38.253]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.463125,57.949875],[9.723844,58.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.304063,56.600563],[20.151375,56.527625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.436,38.731],[26.678,38.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.783,60.342],[19.041125,60.252875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.6175,54.6845],[16.866312,54.66775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-50],[-34.889,-45.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.69025,53.571062],[4.341625,53.804625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.124953,36.624328],[15.2555,36.778]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.857,0.723],[-90,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.596625,38.007312],[25.676539,37.887812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.82,22.608],[135.33,25.588]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.503,-41.676],[50.001,-41.928]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.114688,64.15675],[-22.01025,64.067],[-22.152,64.07275],[-22.330125,64.11925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.397609,57.386562],[20.541938,57.3945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.02,-0.273],[64.967,-5.071]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.555,33.644],[-7.825,34.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.359,40.67875],[12.51175,40.59175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.766313,54.523844],[18.788375,54.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.4495,24.3335],[120,25.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.002,36.099],[16.499,36.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.015,64.642],[23.871,64.59275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.5405,54.88],[14.420875,54.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.72475,62.21775],[20.842,62.228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.974938,43.106578],[9.984953,43.207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82,16],[81,13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.1875,36.73675],[27.3125,36.6435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.4005,36.2535],[15.649125,36.286375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.915,-55.068],[-40,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.232,5.368],[-11.0965,5.3055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.863,39.128],[-139.61,39.8795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.702,3.805],[119.436,3.783]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[106.854,76.543],[107.692,76.904],[108.021,77.731]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.707,20.059],[152.147,17.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.346,35.571],[-6.607,35.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.694,4.057],[8.785,3.194],[8,3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.2785,41.4425],[6.391812,41.269125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.74,43.882],[30.04,43.8005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.956422,57.596609],[18.05025,57.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.078,28.917],[51.448,27.544],[53.369,26.579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.147418,36.515793],[24.969711,36.537469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.878,-9.694],[135.772,-8.975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.002,35.613],[-130.002,35.462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.002,-33.572],[10.001,-31.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,5.057],[-127.045,2.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.66,58.868],[-171.666,56.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.32375,69.22475],[16.648562,68.89125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.61725,57.082688],[20.7865,57.316]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.31725,39.29175],[25.434617,39.246836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.623125,39.099625],[26.585,39.167],[26.418,39.376],[26.317,39.426],[26.056984,39.46143]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.269281,55.231125],[15.337141,55.427813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.733969,38.664156],[8.86925,38.55225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.813,26.685],[-91.9205,26.21525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.815275,54.580532],[10.910063,54.722562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.65,51.717],[4.891,51.818]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.7125,53.945937],[-4.668,53.964],[-4.603,53.963],[-4.5005,53.9615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.885,56.545],[10.794,56.6105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.5935,54.1315],[-3.575438,53.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.27,37.481],[-46.211,36.466]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.418625,39.611625],[25.472125,39.507562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.4335,35.1125],[30.79,35.018]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.78675,38.803],[14.576,38.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.193465,54.806707],[10.178896,54.620967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.355,48.017],[-13.93,47.868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.591875,1.5175],[104.482,1.341]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.780563,65.353563],[22.779875,65.187375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.625,43.832],[8.497633,43.934609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.999,24.08],[140,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.767422,39.177766],[23.574938,39.23257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.027,35.3785],[-9.081,35.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.7715,42.266],[16.839344,42.003937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.437656,61.069562],[19.462,61.169]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.153625,53.091875],[1.244,53.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.673,39.0175],[0.808375,38.9915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.593,-7.135],[72.440438,-7.267563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.552,58.0025],[5.662,57.993]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.529,34.349],[26.587,34.509]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.51875,51.3205],[-8.705,50.864]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.382613,43.609586],[7.556,43.726],[7.795,43.807]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.003,53.254],[-40.002,52.691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1,62],[4.793625,62.00675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.509,42.565],[10.478188,42.446594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.925,49.557],[-0.758,49.544]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.922,57.675312],[9.04,57.653]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.40525,60.632625],[19.378,60.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.001,42.412],[-152.342,42.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.0045,-27.237],[-46.587,-26.974]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.4015,58.179],[11.416,58.307625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-50],[-30,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.7,59.116],[19.536,59.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.349195,54.779453],[16.729875,54.8175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.890781,50.790844],[0.996312,50.798438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.929,67.786],[14.122,67.816]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.840234,37.870719],[16.04175,37.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.27725,49.801125],[-5.2985,49.6765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.16502,36.701812],[25.035,36.615],[24.969711,36.537469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.07,41.299],[4.648,41.749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.054,37.349],[-9.906,37.636]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.445375,44.310875],[14.325188,44.284687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.630957,43.241266],[16.411613,43.265967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.9,-1.4],[-42.781,-0.212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.070594,51.584297],[-7.915,51.687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.354,56.495],[-23.465,56.984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,60],[-44.201,58.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.422562,53.793594],[7.2565,53.866125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.953875,54.659875],[-1.096,54.68175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.082,29.133],[-150.021,29.222]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.30375,54.65925],[16.4145,54.6625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.983969,57.777156],[-1.842453,57.702484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,20.001],[126.916,20.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.571,57.683],[23.5605,57.566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,-5.057],[-111.984,-2.013]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.591,35.533],[35.063,35.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.001,41.432],[-140.003,45.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.055,53.505],[-5.977055,53.391461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.825,24.219],[-82.066,24.077]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.243,27.604],[-77.397,27.928]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.109,-45.405],[60,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.728,40.933],[7.572,41.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.514125,39.374625],[24.53975,39.632812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.31975,38.362],[12.253062,38.459375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.632,42.601],[29.246875,41.291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.247464,58.669113],[-2.152,58.626]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.211,58.224],[20.34775,58.2245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.9655,38.84575],[8.82375,38.788313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.158,29.067],[-16.024,29.0105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.4665,35.9315],[-2.905781,35.438344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.678453,50.005109],[-2.563477,50.067563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.804,42.665],[-10.788,43.236],[-10.562,43.542]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.64175,57.707063],[9.90075,57.728063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.551781,35.825375],[23.676313,35.7485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.587375,39.788063],[7.542,39.544]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.2,47.75],[-59.3,46.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.713891,46.962469],[-2.785219,47.112094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.947,-20.501],[161.911,-20.733]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.678891,50.605625],[-0.79575,50.55075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.413,5.195],[-81.176,1.848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.9975,59.9865],[27.239,60.0455],[27.55325,60.13225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.632,53.5115],[-5.592125,53.629375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.064016,63.151594],[19.132,63.008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.850938,58.455938],[9.796375,58.65925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.840234,37.870719],[15.696,37.9265],[15.586453,38.055121]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.364375,38.108953],[25.141,37.91325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.356375,59.712812],[21.42325,59.60925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.787,59.638],[4.711344,59.493687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.663625,57.26975],[16.572688,57.138312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.861,23.327],[-171.043,21.094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.004,38.295],[11.286125,38.122125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.834,39.62075],[7.6955,39.5865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.121,16.105],[-62.056,16.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.362,54.4985],[-166.732,54.1965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.654887,54.568508],[13.421312,54.718125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.625859,70.679859],[23.5595,70.8915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.953,-37.275],[40.001,-36.949]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.967,39.275],[1.119,39.256]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.785188,43.467188],[15.867625,43.353875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.977,68.883],[16.8735,68.8745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.726,-26.876],[103.394,-28.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.352844,36.565609],[-6.50325,36.49375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.43,32.3025],[30.638,32.641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174,-37],[173.7,-36.3],[172.3,-34.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.509,58.616],[4.709,58.718]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.687,70.758],[0,67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.936,-17.107],[54.886,-16.567]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.833,60.048],[-2.0995,59.7035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.107,42.254],[11.21975,42.249031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.46,68.493],[14.126,69.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.378,0.553],[103.6,1.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.9445,56.879],[20.07425,56.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.114,38.337],[13.218281,38.426297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.998,0],[140,8.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.6915,47.801],[-5.576,47.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.680375,42.874688],[9.752455,43.003715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.846,44.211],[37.017,44.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.359,24.734],[-72.9055,24.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.029,44.155],[33.886,43.994]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.317,29.95],[-87.795,28.122]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.34825,39.93975],[13.295,39.793]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.4155,70.826],[32.0375,70.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.4765,54.7095],[15.428125,54.877531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.579,39.815],[17.372,39.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.293187,41.019125],[17.32,41.223]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.934,19.531],[-67.0775,19.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.071,71.185],[-147.183,71.016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.209,58.086],[6.127625,57.972062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.265703,43.090328],[15.089797,43.182266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-60],[-40,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.790875,32.940375],[31.179625,33.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.803,41.688],[6.391812,41.269125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.99825,50.64475],[-5.917,50.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.188,26.458],[-72.587,25.851]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.705,20.817],[-72.013,20.298]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.314,64.8995],[22.193,64.873]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.489,65.058],[-23.5665,64.988875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-10],[-175.097,-4.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.419773,56.585188],[11.229387,56.567371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.984906,41.55782],[16.622687,41.567281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.835406,43.943969],[13.719,43.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.899,54.265],[7.0115,54.309]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.12565,63.708815],[-22.273,63.726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.099742,63.466625],[9.9745,63.378]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.274,52.03],[-6.1085,52.0605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.26525,36.34475],[-4.46325,36.31475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.58,71.235],[28.696,71.084]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.22425,50.18675],[1.080938,49.982313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.8,22.1],[-92.7515,22.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.588,57.605],[-165.59,56.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-8.92],[-99.296,-9.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.194,13.311],[43.013375,13.174125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.574,44.586],[-5.698,44.061]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.704,22.244],[-75.402,22.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.395,36.641],[-3.223,36.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.886,43.994],[35.492,44.466]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.524,59.332],[2.8475,59.4995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.619,35.65125],[-13.547,35.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.294469,50.076906],[0.428766,50.403988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.770117,56.513672],[-5.6355,56.407781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.697,50.884],[-7.54375,51.34625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.46675,36.75575],[-6.641687,36.75725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90.188,-20.003],[96.207,-24.021]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.4355,39.67525],[18.342,39.60025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.37125,46.746781],[-2.376,46.908],[-2.3445,47.160375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.34775,58.2245],[20.366437,58.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.764,42.595],[8.673,42.553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.225,43.084],[4.4765,43.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.817,67.462],[-95.888,67.715],[-95.423,68.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.705,-16.45975],[122.06175,-11.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.328,35.758],[-5.282619,35.947516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-177.304,62.835],[-173.66,58.868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.11225,65.661],[-24.034969,65.871219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.003,45.457],[-136.329,44.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.927406,37.128438],[25.798031,37.177859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.797,45.654],[-5.607,45.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.589,58.785],[3.197,58.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.7295,60.3865],[-64.5,61.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.3,61.615875],[17.505516,61.508156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.991812,49.876688],[-2.089062,49.832188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17,41.7495],[17.140937,41.76375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.111,43.466],[13.94275,43.39875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.883437,49.86675],[-4.78325,49.835938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.867687,41.646563],[11.048813,41.719125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.305,31.4365],[-71.121,31.234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.6,-12],[137.178,-9.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.005828,52.502695],[2.066156,52.592937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.828,41.299],[4.07,41.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-10],[-139.999,-14.878]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.482844,49.987563],[-1.482875,49.87325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.296437,57.999188],[21.154875,57.74375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.142,40.474],[19.488,40.439],[19.409,40.4515],[19.142,40.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.645,-20.037],[0,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.9155,40.18075],[-9.089,40.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.665,-5.005],[127.613,-3.671],[126.9705,-2.287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.974328,58.589453],[10.014125,58.300438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.704,48.149],[-5.744688,48.002531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.3855,36.581],[15.625,36.883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.833,37.6445],[10.6985,37.62825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.811,33.344],[-67.531,31.092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.522156,40.175484],[18.64425,40.12075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.0955,45.4525],[13.038885,45.242312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.166,12.479],[-111.134,12.652]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.54,36.18225],[14.615,36.286],[14.706484,36.403008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.0285,62.5145],[20.15375,62.46775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.309,16.029],[-161.096,11.253]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.986687,49.76425],[-6.616687,49.755812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.4745,55.591],[18.336,55.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.822,64.3935],[23.657,64.25],[23.10975,64.289344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.782594,57.578156],[-6.887375,57.440375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.771375,48.932875],[-4.83,48.816]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.578,22.223],[-86.805,22.311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.087,39.063],[-9.929938,38.868688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.033,42.2205],[-10.0825,42.6135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.316,36.6],[169.999,37.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.1,1.1],[172.902,0.384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.558,27.916],[-91.601,27.708]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.675,6.409],[-81.4,6.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.001,22.772],[-61.77,21.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.71975,38.425125],[12.07125,38.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.257,-6.326],[113.0025,-6.292]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.0685,54.0015],[3.555,54.3115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.964,49.666],[-0.79625,49.7135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.287625,36.376078],[25.041844,36.399219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.997,60.296],[20.4725,60.666]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.452,-10.033],[64.967,-5.071]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.881,35.569],[29.255,35.428]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.496125,41.155375],[13.2985,41.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.537016,37.42],[12.628,37.482875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.999,-33.263],[-30,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.488766,37.681125],[25.342,37.73075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.15975,55.7245],[-5.021375,55.5605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.30525,39.6275],[12.987,39.301375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.886,38.627],[120.941,39.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.38375,31.33875],[32.389,31.456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.362375,56.606469],[8.589437,56.536187],[8.692375,56.6525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.719938,37.163031],[11.668,37.28875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.432,49.604],[-2.509375,49.419125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.136,39.0995],[26.014492,39.010125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.8615,55.27075],[15.915437,55.128125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.799,61.908],[18.2595,62.2645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.57,38.683],[6.278,38.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.45,23.348],[-77.709,25.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.0125,55.247],[-5.116875,55.138109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,50],[-142.608,47.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.039,-22.0965],[-120.746,-23.542]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.386258,43.984094],[14.3695,44.104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.330156,58.098406],[8.3705,57.96675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.543188,59.177234],[5.641188,59.016695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[56.353,5.899],[58.891,1.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.767,42.425],[18.550938,42.344125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.255281,35.512906],[24.065,35.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.22,51.505],[4.226,51.565],[4.192,51.61],[4.40025,51.67625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.43,38.05],[-71.649,38.239]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.0205,57.164],[19.09975,57.083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.88975,42.1645],[15.835125,42.287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.761,35.673],[17.386,35.691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.513,36.624],[14.721453,36.648922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.376688,21.308563],[-157.5085,21.3435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.753,42.293],[-129.344,41.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.003281,58.918906],[10.163219,58.972406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.1,34.4],[-5.836469,35.917547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.015,60.393],[26.074,60.4105],[26.165437,60.308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.022,42.282],[5.011625,42.028437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.132,36.3525],[24.082578,36.220953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.27125,57.48325],[23.382875,57.420875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.486156,55.085469],[7.544531,54.906031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.48875,52.19625],[-10.6535,51.737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.2715,38.46075],[0.538,38.476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.367,-35.038],[-24.632,-35.036]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.181063,40.69975],[18.339875,40.481375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.681,34.719],[34.2,35.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.961563,42.430875],[-8.740687,42.39],[-8.926687,42.302437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.596937,37.815609],[23.711118,37.566561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.077,42.756],[14.28925,42.629625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.749,43.224],[4.856,43.194]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.514,38.13],[7.744,38.088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.42825,51.517],[-8.37425,51.62325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.132,63.008],[18.9975,62.7195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.44875,47.672],[-4.6275,47.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.6985,37.62825],[10.55675,37.588125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.577047,49.711531],[-1.668875,49.755125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.453,17.481],[-69.299,17.579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.043023,40.375594],[14.304,40.266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.085375,46.287625],[-4.3045,46.242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.082875,49.795625],[-4.28825,49.666]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.346562,67.28275],[14.282,67.281],[14.1485,67.357]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.321188,42.005],[11.2775,42.1305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88.973,13.265],[93.3,14.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.507,-6.464],[125.787,-5.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.802,52.02325],[-5.914,51.913]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.478563,51.326],[1.424238,51.448891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.52325,57.8175],[22.379,57.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.563375,36.461875],[14.062,36.259]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-10],[-146.363,-10.027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.3275,60.784],[21.155,60.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.113,0],[76.599,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1305,61.457],[4.151,61.3485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.150078,38.904078],[8.01225,38.7795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.223,63.293],[7.3775,63.4075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.295,39.793],[12.636406,39.944312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.65082,36.962602],[26.568037,37.037578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,51.3],[172.9,52.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.093375,50.209563],[-2.342,50.1905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.672,58.093],[8.64375,57.9235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.178937,39.403063],[0.305125,39.391562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135,15.17],[137.668,12.722],[140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.288,40.394],[25.229,40.2445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.434617,39.246836],[25.375125,39.399687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.71725,63.51225],[20.76475,63.2915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.208,17.349],[-164.774,14.953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.762,21.235],[-157.639563,21.207063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.48,-47.734],[-84.889,-45.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.241,75.244],[17.605,74.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.217,64.99575],[24.191,64.877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.241,75.244],[17.276,74.839],[17.605,74.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.665,15.516],[-53.291,17.3685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.57375,41.32575],[5.8315,41.2835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.973,-24.403],[50,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.412,69.697],[54.357,69.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.968,35.911],[23.107,35.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.082,36.146],[26.148,35.97375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[86.761,-13.377],[85,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.143,-42.287],[55.111,-45.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.002125,38.15475],[-72.510625,38.706875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.06025,56.556875],[7.23125,56.554703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.408,7.458],[157.416,7.466],[157.423,7.473],[157.507,7.557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.995,-54.539],[-64.699,-54.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.209781,35.9375],[-6.622344,35.928063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.547625,39.066125],[9.326438,39.083188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.978375,38.415469],[9.285,38.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.198,33.395],[16.037,33.675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.1285,12.6205],[-59.323,12.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.51025,36.64],[-2.0665,36.591]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.381625,49.071687],[-4.546,49.189875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.715969,55.6495],[14.966812,55.530113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.183,66.228],[-167.747,67.1525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.666,48.686],[-2.648875,48.813688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.001,16.322],[-50.01275,19.968875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.192,20.0075],[-43.744,20.052],[-42.271,20.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.579,10.878],[-71.55,11.169],[-71.314,11.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.579,10.878],[-71.314,11.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,21.141],[-38.036,22.082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.913,-5.002],[131.4,-3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.973,62.811],[20.092,62.60125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.001,27.283],[-50,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.318,36.386],[33.8455,36.176]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-30],[85,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.193,39.87],[4.9885,39.896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.262,44.83],[-66.432,44.462],[-66.762,44.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,39.176],[-59.44725,39.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.909016,52.970562],[-5.7605,52.923]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.2465,42.981],[7.004437,42.9335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.455,44.103],[-130.002,43.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.00875,26.148],[-128.612,28.689]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.198,38.244],[12.892,38.214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.82375,38.788313],[8.733969,38.664156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,20],[-175,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.3685,25.8585],[-19.9605,29.97825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.691375,39.0805],[17.451219,38.898406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.398,59.557],[20.426,59.304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.584,44.335],[-3.652,44.483]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.1,53.755],[14.307125,53.777125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.938,37.1905],[-10.832125,37.323375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.454,47.785],[-5.556,47.816]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.074,58.716],[19.854938,59.180188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.929938,38.868688],[-9.936,38.729]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.892,41.170313],[17.14475,41.34625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.600605,57.788314],[10.443266,57.8495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.33125,55.374875],[5.17375,54.925406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.308477,38.011313],[12.13752,37.961805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.886,42.791],[132.926,42.815],[132.972,42.577]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.82746,36.416233],[20.5235,36.442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.714125,46.733063],[-2.829,46.8045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.371938,61.606813],[21.22232,61.4235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.996,-30],[167.676,-32.527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.158,56.169],[-2.05875,56.04875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.7535,49.327],[-5.901,49.39275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.056938,56.292625],[17.42,56.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.055,44.086],[14.125203,44.1815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.001,31.389],[-140.002,35.697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.619375,43.390875],[28.355,43.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.937,-9.195],[177.589,-10.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.7,51.6],[-176.955,52.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.652,0],[-180,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.7745,54.653],[-0.661375,54.568625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.195875,54.295687],[15,54.336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.365,-30.049],[50,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.344,37.628],[0.09625,37.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.511,-12.611],[-146.363,-10.027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,62.1],[-179.2,64.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.3995,55.043813],[11.305045,55.090986]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.8925,66.486],[-15.774,66.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.388,42.5075],[-135.451,40.732]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.350734,43.1385],[5.166344,43.134563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2155,39.3115],[14.611937,39.130188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.733,-14.902],[70,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.616,-0.647],[172.71,0.766]]}},{"type":"Feature","properties":{"pass":"dover"},"geometry":{"type":"LineString","coordinates":[[1.584432,50.986559],[1.738955,51.010418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.432,33.734],[23.299,34.061]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.397609,57.386562],[20.436,57.2265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.87,47.403],[-4.018,47.51025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.93775,54.2815],[-3.993,54.162]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.134,34.896],[26.804,35.108]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.223773,35.946328],[27.072969,36.014047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.669,-38.794],[162.469,-37.722]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105,-15.17],[-105.82,-14.338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.8795,54.4755],[10.043812,54.524969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.573,67.798],[9.933,67.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.361,35.556],[25.61625,35.66425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.475133,35.751766],[23.676313,35.7485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128,26],[129.584,28.732]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.921875,42.861625],[5.731156,43.03925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.568,15.07],[-68.846,14.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9185,42.94125],[4.79375,42.942125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.09625,37.6275],[0.645,37.878]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.866,-54.51],[-84.751,-55.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.3,63],[5.385,62.587]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.072,40.863],[10.96625,40.99175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.33,45.266],[13.219891,45.249109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.85825,54.026781],[7.776219,53.958375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.051,50.202],[-6.1615,50.3045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.8595,43.1855],[4.057,43.264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.504,-33.09],[160.0165,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,30],[-130.999,31.086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.8425,40.9385],[-8.804,41.061]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.431,38.79025],[-29.041,38.4495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.676,66.898],[9.477,67.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.841,25.427],[-50,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.903,58.712],[-4.889,58.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.72,-23.828],[-39.676,-23.686]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.46625,39.45575],[-72.298,39.006]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.0055,-34.501],[30.558,-34.362],[36.391,-33.924]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.611937,39.130188],[14.70525,39.06875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.327,37.81525],[-73.822,36.894]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.404875,45.23625],[-4.614,45.157]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.805,56.413],[7.70925,56.272562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.087,47.644],[-2.627625,47.370625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.833,37.6445],[10.959688,37.590812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.382,49.6135],[-7.0705,49.00275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.421312,54.718125],[13.503625,54.865125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.171094,53.926219],[-3.2865,53.74075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,36.4],[129.3,37.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,30],[-155.948,34.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.26,-10.031],[-4.902,-9.298],[-6.449,-6.502]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.417625,56.110875],[18.341,56.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-40],[-35,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.286,-10.031],[60,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.73,65.6335],[-13.7855,65.5395],[-13.617687,65.598187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.489,56.953],[20.224305,56.801758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.889,-45.404],[-30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.971,36.14],[18.0255,36.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.555,69.554],[39.101,69.5915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.1675,37.705],[-8.911703,37.915875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.3165,-10.549],[177.589,-10.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.606109,57.893906],[10.73557,57.980012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2105,43.502],[14.468312,43.437344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.007188,38.90075],[7.89425,38.8455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.995,70.059],[-123.595,69.758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,50],[-162.794,50.373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.887,50.254],[-10.958,50.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.01075,17.68825],[144.155,14.452]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.3655,54.654375],[12.156445,54.451172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.866,-54.51],[-85.799,-54.378]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.167,54.643],[-165.307,54.744]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.01325,54.81875],[14.94925,54.65975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.671,54.721],[14.832,54.732]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.465187,54.965562],[13.503625,54.865125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.804,54.621],[-177.29375,54.63925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.72,30.13],[-85.774,29.838]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.3525,26.02325],[-75.592,26.129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.648,41.749],[4.448,41.732]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[81.9,5.9],[94,6.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.478,63.9105],[9.364,63.825],[9.124,63.509]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.678086,37.380227],[24.796547,37.32475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.5025,47.67775],[-7.193,48.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-50],[-144.888,-45.402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.434125,61.403375],[21.51,61.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.0935,-11.134],[0,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.68075,40.573],[10.7895,40.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.318,30.302],[-76.935,30.338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.9,52.6],[169.786,50.154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.548,69.567],[14.69175,69.6205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.808625,59.80775],[24.0325,59.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.66,51.35],[-7.941875,51.58575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.755,28.024],[-79.326,27.136]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.644,43.1015],[4.79375,42.942125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.534,49.9535],[-8.471,50.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.214438,52.812],[0.361969,52.951855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.46925,38.59325],[11.5895,38.60175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.327,37.81525],[-73.913,38.983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.705,49.955],[-3.559766,49.923234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.38075,36.147875],[26.242,36.130625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.890566,58.507941],[10.768297,58.363934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.042,-19.177],[153.584,-18.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.382306,16.038694],[-84.594413,16.051921]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.05,44.9095],[13.140313,45.131125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.994,55.069],[18.253312,54.956063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.125375,49.736375],[-0.289,49.888],[-0.336625,49.931]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.5465,54.518],[6.282,54.594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.328,54.513],[-40.989,56.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.995477,36.805496],[26.024,36.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.397,27.928],[-77.848,27.676]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9585,57.96775],[-1.880156,57.838547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.833,57.62],[7.0845,57.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.72,-23.828],[-35.226,-24.761]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.388,7.438],[140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.795844,49.741437],[-7.25675,49.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.6025,65.1765],[21.465,65.304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.874875,60.618875],[20.4725,60.666]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.996,18.294],[107.67,18.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.096688,54.63125],[19.101703,54.818453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.525625,41.264],[18.575,40.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.4495,36.493],[-9.569,36.528]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33,35.8],[31.943,35.209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.4475,53.9055],[11.374234,54.029688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.821125,36.556516],[14.721453,36.648922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.8175,55.761938],[21.048625,55.733375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.31975,38.362],[12.4585,38.4735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.565,18.505],[120,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[56.438,26.495],[55.456,26.456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.42,-40.448],[10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.7575,43.988],[8.834906,43.888906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.55,38.532],[-74.531,38.308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.58,56.055],[-152.324,53.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.63,56.624],[-17.059,57.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.223219,49.133437],[-5.21725,48.96675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.769906,58.507578],[10.768297,58.363934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.497187,55.448062],[7.399141,55.309422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.985313,49.198062],[-2.9555,49.314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.642,58.82],[-4.9545,60.271125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.099,27.582],[-79.89,26.793]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85,-25.277],[-80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.860656,38.392594],[12.712938,38.337313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.496875,58.794438],[10.34432,58.758523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.802,29.937],[48.93825,30.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60.002,-43.304],[60,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.5485,59.79],[4.711344,59.493687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[83.657,17.414],[82,16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.02,43.925],[-9.175,43.679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.976,33.71],[28.344,34.118]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.981,34.786],[35.025,34.514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135,5.057],[134.28675,5.76875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.736,50.477],[-10.717,50.234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.3785,35.882],[25.41275,36.003187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.599,29.031],[-94.416,28.907]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.716,66.941],[-18.437,66.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.378,60.515],[19.245125,60.090375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.175875,42.13775],[11.321188,42.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.397,52.309],[10.425,52.208],[10.388,52.157]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.175,35.527],[-7.70425,35.60425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.991062,39.215125],[14.9535,39.087125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.001,5.059],[-102.69,2.728]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.531,35.966],[26.799813,36.065156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.682,-14.527],[-170,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.22575,41.999875],[-9.1075,41.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.4,45],[36.51325,44.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.754,56.883],[7.65025,56.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.63,16.959],[-87.562,17.333]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.79,36.308],[16.033,36.387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.87,60.953],[4.048,60.931]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.9465,58.795],[17.836891,58.662578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.762,43.171],[8.910094,43.212531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.354328,51.25282],[-4.57,51.106]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.659,11.087],[-91.888,11.354]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.106,54.3495],[13.056,54.4755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.267492,55.642883],[15.366125,55.6635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.15825,53.967],[7.192063,54.184531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.786,37.137],[3.6605,37.1105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.049031,42.630125],[18.26675,42.311625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.402,22.141],[-74.895,21.968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.891,58.626],[-160.668,58.596]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.95325,36.1585],[25.809,36.103]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.743875,38.873375],[1.401125,38.806063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.772,60.192],[27.882125,60.26575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.486156,55.085469],[7.422,54.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.6535,51.737],[-10.73,51.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.355135,50.517465],[0.251,50.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146,43.2],[145.9725,47.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.345,35.827],[-6.209781,35.9375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.694992,57.363352],[17.827719,57.417594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17,33],[-17.434,32.566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17,33],[-17.222,32.922],[-17.434,32.566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.257,64.589],[-169.10675,64.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.557,60.827],[18.481,60.736]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.996,50.559],[-171.546,51.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.959,29.521],[-10.1,30.2],[-10.1,31.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.959,29.521],[-10.1,31.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.002,-35.616],[152.636,-34.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.47375,58.609],[-1.4245,58.776875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.5095,58.731],[23.458004,58.565945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.734,-20.2],[160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.685,18.404],[-180,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.297,12.453],[-79.783,12.531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.351,26.834],[-137.479,27.618]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.2955,40.441],[-69.491938,40.297187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.803,-11.273],[152.592,-11.504]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.5215,45.18],[30.225,44.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.928875,36.426625],[15.040375,36.44775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.0485,54.216188],[12.8565,54.547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.369,26.579],[53.2145,26.3495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.216,57.644],[4.04,57.359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,29.345],[-170,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.802,29.691],[-17.1745,32.696]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.977379,55.011469],[11.17725,55.0245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.17,-56.0015],[-63.965,-55.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.349,40.062],[-69.055,40.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.87,47.403],[-3.384,47.258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.4085,59.934],[25.591789,59.890969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.002,34.309],[-33.731,34.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.614,74.782],[9.329,70.226]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.83,-24.25],[164.455,-24.722]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.82375,38.788313],[8.607281,38.723094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.993453,45.124258],[12.711844,45.123281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-30],[-16.239,-30.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.339875,40.481375],[18.493688,40.443703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.152625,37.529375],[-11.78,37.4195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.225375,41.650625],[17.161313,41.523086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.048,11.023],[-93.659,11.087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.812,48.971],[-10.59025,49.12975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.138,9.341],[-88.188,9.091]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.859328,59.813906],[24.843312,59.674188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.229,65.655],[-24.328,65.7135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.145,51.515],[-4.017969,51.501]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.042,2.553],[-23.961,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.490508,43.093109],[5.601,42.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.36,25.697],[-76.618,25.946]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.817594,37.051125],[25.620797,37.164937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.203,44.254],[14.125203,44.1815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.329,46.5075],[-7.646,46.103]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.46,42.936],[32.793,42.906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.412,28.223],[-89.109,28.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.794,39.124],[9.9,39.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.998,-35.049],[-25.367,-35.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.295,36.354],[21.12475,36.388]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.556,50.69],[-6.424,50.5835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.799,61.908],[18.3935,61.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.18,33.043],[121.468,34.767]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.4535,50.0465],[-4.486813,49.913687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.05525,65.543],[-20.9795,65.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.7,54.69625],[13.772625,54.616875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.643422,53.590187],[-3.831844,53.561281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.809,36.242],[-12.701,36.318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.3655,44.4945],[-2.5575,44.1655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.723,54.659],[-4.109,54.643]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.952836,56.35907],[10.885,56.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.343,5.152],[174.899,3.437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.723,22.081],[119.704,19.781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.22,50.038],[-11.979,50.006]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.5255,36.249],[23.522031,36.380711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.706809,57.743219],[10.606109,57.893906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.889,39.678],[23.114313,39.813688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.594,50.157],[159.108,48.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.724312,38.045328],[24.623188,38.008844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.95,64.034],[-14.212,64.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.79625,49.7135],[-0.578875,49.9645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.178,60.77325],[3.996,60.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.736,14.905],[60.718,10.754]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.001,41.297],[-130.001,41.408]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.327,37.875],[11.14275,38.0085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.2815,35.6445],[23.035,34.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.9165,7.021],[-55.108,6.04575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.39025,49.289],[-2.509375,49.419125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.77,63.275],[-52.846,63.202],[-50,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.976,48.527],[-6.958,48.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.047,61.617],[17.578,61.65275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.036,16.376],[-82.055,14.512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.751,44.5445],[-5.794875,44.761]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.8635,12.9205],[-69.98425,12.99075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.043996,54.757462],[10.126158,54.943963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.039,-22.0965],[-120,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.057,41.25],[18.981125,40.983875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.519,46.0415],[-2.957,46.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,67],[8.46,68.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.516,32.769],[-71.736,31.911]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.808625,59.80775],[23.695156,59.727656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.281,30.013],[-70,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.001,36.6805],[13.023,36.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.182,42.726],[3.235,42.608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.16275,38.45525],[-0.092625,38.133375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.600777,43.526945],[7.749469,43.513031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.82,58.719],[13.197,58.831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.085,36.059],[15.837,36.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.53,68.877],[15.42375,68.73575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.138,56.045625],[15.258234,55.887234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.481,68.626],[-17.457,69.574]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.19375,60.206],[4.3505,59.89425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.969938,55.804187],[-1.921375,55.959125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.997,-44.316],[-140,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.906,46.7075],[-3.018,46.591]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.571469,44.039531],[14.6575,43.849969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.055,-37.916],[149.703,-39.613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.833,14.43],[-64.288,15.578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.802,54.52],[-171.804,54.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.482688,55.224187],[15.588234,55.322172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,-35.386],[-30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.531,43.771375],[8.39725,43.766875]]}},{"type":"Feature","properties":{"pass":"gibraltar"},"geometry":{"type":"LineString","coordinates":[[-5.439953,35.9825],[-5.836469,35.917547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.225,47.375],[-10.462,46.946]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.865,-20.053],[-130,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.3475,43.7655],[-9.154,44.041],[-9.103,44.111],[-9.061,44.167],[-8.999,44.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.861,61.219],[1.18175,61.662]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.194,35.991],[16.727,36.087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.10025,40.5655],[11.072,40.863]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.0135,46.035],[-2.106,45.719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.934625,55.349438],[15.8615,55.27075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.521,46.247],[-7.646,46.103]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.783,41.703],[-9.824,40.877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.679688,36.879063],[13.5745,36.8305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.390187,57.797875],[6.21925,57.7415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.833031,40.499813],[-68.64,40.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.82025,39.847],[-9.9255,40.3615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.631438,41.748188],[10.457,41.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.229,65.655],[-24.006,65.597],[-24.11225,65.661]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.934,40.3385],[18.933187,40.113875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.844,39.49],[17.579,39.815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.822688,38.526875],[-9.723,38.413]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.121,35.568],[123.072,34.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.697,57.795],[5.923063,57.919531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.329156,49.909594],[-4.486813,49.913687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.064016,63.151594],[19.34,63.243]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.087656,37.298563],[23.20975,37.28275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.234,40.484],[1.10975,40.393375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.898563,40.980563],[11.839849,41.034209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.484063,55.252078],[-5.566375,55.043687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.548882,-31.410533],[160.0165,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.671016,50.264617],[-4.701,50.343],[-4.715,50.317],[-4.671016,50.264617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.4465,38.7015],[2.9675,37.51475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.207,39.906],[23.114313,39.813688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.376188,43.007688],[8.35625,43.219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.336,65.35],[-13,65.384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.193,48.08],[-7.691,47.88125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.3925,66.38375],[-18.437,66.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.848,15.413],[-70.568,15.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.94,43.48],[-9.20025,43.483]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.997,-44.316],[-136.126,-46.517]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.093,41.885],[-9.22575,41.999875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.585,36.569],[21.004,36.43175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.946,28.828],[-73.052,27.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.95625,42.9535],[9.04475,43.060625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.76,10.016],[-136.543,12.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.867,65.005],[-13.855,65.001],[-13.641,64.96575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.339375,41.356375],[10.287,41.492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.71025,39.93775],[9.87125,40.131875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.292125,42.721125],[15.488188,42.670313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,-40],[115,-40.107],[110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.95,54.878],[142.039,55.181]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.86875,60.96175],[19.662,60.948]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,-15.17],[-140,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.16417,37.260051],[25.301375,37.367719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43,69],[47.881,68.376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.20325,57.5165],[21.448813,57.452945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45,-35.386],[47.908,-32.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.229875,51.3815],[-4.535,51.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.881344,57.460531],[10.653526,57.429626]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.6795,51.90175],[-7.8175,51.854875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.125719,54.198719],[7.940734,54.140664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.211,36.466],[-45.026,35.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90.188,-20.003],[100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.9375,55.56225],[19.727406,55.614375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.27,37.885],[-0.092625,38.133375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.6235,54.3405],[15.4885,54.398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.32025,42.198],[6.679172,42.509359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.2265,50.350313],[0.147,50.444]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.058,70.614],[27.083,70.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.5865,36.87825],[-9.300937,36.831469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.894,20.212],[35.267,25.591]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.26275,55.171875],[8.213156,54.943031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.589688,50.881062],[1.584432,50.986559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.074969,50.118117],[-4.986512,49.982141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.901047,36.726672],[23.988875,36.801625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.343,38.37],[7.29,38.171]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.9375,64.28125],[-22.064344,64.264406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.9265,37.9065],[-25.2435,37.88075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.9395,38.99425],[-28.313125,38.79725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.998,-29.998],[4.329,-25.976]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.704461,43.254555],[9.750969,43.460469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.402188,35.598812],[24.354469,35.785625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.643836,37.532453],[25.696297,37.756797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.68725,40.42225],[24.472578,40.184711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.240258,36.166695],[27.3545,36.1685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.95793,64.142781],[-22.064344,64.264406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.0805,48.083],[-5.819,48.314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3095,43.2515],[4.648,43.203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.463125,57.949875],[9.5705,57.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.389,35.834],[27.31343,36.005234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.01375,61.01725],[4.849312,61.0025],[4.749359,60.966672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.630594,38.774281],[0.873,38.811]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.092875,50.8015],[-5.197,51.004]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.208,39.204],[25.341961,39.129945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95,-35.386],[100,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.801,16.923],[-76.5905,15.75075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.075875,57.366438],[17.8145,57.23875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104,-7.001],[101.698,-4.316],[99.9,-1.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.75625,39.75375],[23.657,39.781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.01425,55.0485],[12.761906,54.963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.409937,57.676063],[21.448813,57.452945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.949,59.174],[-20.102,57.536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.892,52.268],[-10.382,52.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.665,66.561],[43.799,66.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.9165,53.6335],[5.716156,53.609313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.110813,42.446813],[-9.376,42.589]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.055,-37.916],[150.184,-37.852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.562,43.542],[-10.4275,43.6615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.109625,51.73475],[3.312875,51.918125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.841,-6.527],[-80.484,-6.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.981,34.425],[135.1,34.608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.633555,61.056664],[18.55925,61.1935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.22575,40.79075],[18.31,40.6845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.0105,61.85675],[19.014,61.7535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.819,42.257],[5.83,42.117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17,32],[17.3,33.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.921625,49.43825],[-2.823,49.6955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.305045,55.090986],[11.126734,55.214766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.845,41.2535],[5.038,41.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.0615,54.1775],[6.0065,54.07925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.67,43.835],[-10.27,44.458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.3,71.268],[26.1485,70.976375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.7,35.9],[35.634,36.296]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.652875,-23.02875],[166.708,-23.944]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.6085,-22.90075],[110.674,-23.033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.269,31.881],[-32.553,32.7965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.029313,38.623],[24.8875,38.58575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.156,60.483],[-1.2495,60.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.485,57.499],[11.516864,57.31915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.796,45.557],[-3.865,45.3925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.913,41.987625],[9.816258,41.956148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-117.77,32.665],[-116.174,28.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.236,37.491],[2.606,37.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.056,40.087],[160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.612,50.776],[0.768,50.744]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.382,4.435],[-92.016,4.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.761,-0.772],[-100,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.481,41.781],[-70.741,41.596]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.752,55.517],[5.065,55.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.9395,38.99425],[-27.958,38.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.5485,28.55],[-91.558,27.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.501125,48.771313],[-6.5735,48.60675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.959781,54.419438],[7.950602,54.250352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.059094,57.563531],[8.219125,57.452375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.823,38.75],[-66.515,35.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.217,44.707],[14.346187,44.948625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.568,-18.515],[-110,-17.453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.916,56.179],[18.925,55.994]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.42375,68.5555],[16.6265,68.4315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.830586,43.152195],[9.704461,43.254555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.979,-24.218],[166.314,-22.4065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.92725,37.891],[11.866937,38.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.509,40.40825],[11.134,40.554],[11.10025,40.5655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.912875,51.426563],[1.872,51.56175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.021,-31.953],[171.816,-31.816]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78,3.9],[-77.355,3.739]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.56425,38.18125],[5.667,38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.479484,43.3675],[15.4155,43.50525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.429375,55.577687],[14.455031,55.455313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.976,48.527],[-7.22275,48.4845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.477,24.832],[-73.359,24.734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.393,14.422],[166.4,9.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.74,-9.72],[6.365,-14.374]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.557457,37.924184],[23.443984,37.825055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.968,39.985],[10.06,39.724]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.105,40.028],[10.336,40.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.910094,43.212531],[8.80375,42.980375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155,15.17],[157.665,12.721],[160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.581,38.92],[24.554563,39.140563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.92725,54.964],[16.8635,54.828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.3175,65.0265],[25.38,64.986],[25.418,65],[25.3175,65.0265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.044,62.995],[6.835,62.93875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.637,59.532],[16.933,59.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.713891,46.962469],[-2.714125,46.733063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.143,-42.287],[57.272,-43.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.926,18.689],[58.999,19.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.9585,56.3915],[4.13525,56.39575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.149406,58.661406],[17.390594,58.622781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.505,64.555],[22.450445,64.356875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.345264,59.233676],[5.341,59.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.7985,10.6865],[-61.0065,10.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.347,29.613],[-68.396,29.303]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.056781,42.458625],[16.916,42.35475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90.002,-16.097],[90.038,-19.9015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.399094,65.462063],[22.52225,65.444]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.32175,28.284375],[-15.84,28.3385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.010719,44.154125],[15.190602,44.113273],[15.442812,43.890937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.9,46.25],[30.5215,45.18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.245,56.368],[0.49,56.634]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.506,-11.18],[159.48,-10.264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.5625,36.3595],[21.292,36.3915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.955,-0.829],[53.656,-3.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.127,36.933],[-122.702,37.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.2,69],[-51.193,69.214],[-51.808,69.859],[-54.335,70.412],[-54.73,70.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.903,38.962],[7.563,39.075875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.122,-5.686],[119.1525,-5.892]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.155,38.615],[10.01,38.6185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.973812,35.072219],[24.11475,35.0305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.84143,50.167727],[-1.672227,50.166836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.345625,38.912625],[15.420437,38.801219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.002,-33.482],[160.002,-34.562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.574,39.7205],[3.787,39.983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.3485,59.4035],[18.904,59.651],[19.028195,59.747914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.244,56.177],[5.256,56.011]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.47275,65.02225],[22.779875,65.187375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.6205,58.5255],[-7.9135,57.7845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.323,12.47],[-61.0065,10.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.593,49.552],[-5.54,49.401]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,19.557],[-130.001,15.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9885,58.0805],[-1.9585,57.96775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.955953,41.245672],[10.222453,41.285062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.636,6.418],[130,9.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.001,-48.29],[66.683,-46.883],[65.109,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.226,51.767],[4.114,51.812],[4.017062,51.85325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.64625,49.77825],[-5.652,49.887]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.370969,43.074438],[16.511969,42.932844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.887,25.374],[51.6,26.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.9545,4.022438],[72.273,5.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.966,58.115],[20.895,58.016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.804,54.621],[-171.666,56.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.328,55.8425],[-5.15975,55.7245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.209,56.274],[4.023,56.034]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.567,58.985],[13.197,58.831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.292,54.735],[12.362625,54.821125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.268,61.45],[4.1305,61.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.634,23.534],[-80.797,24.513]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.1645,28.827],[-14.677,28.749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.146799,56.664843],[-6.146,56.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.457,58.47375],[18.54725,58.390125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.878,39.216],[24.914398,39.395555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.363,40.96],[-9.544,40.311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,16.854],[130,14.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.478,38.3245],[-0.3985,38.24725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.703,37.77025],[23.557457,37.924184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.183,51.236],[-8.15,50.924]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.998,0],[135,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.249,58.37325],[21.23075,58.204]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.974328,58.589453],[10.096687,58.556562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.798,16.25],[-87.63,16.959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.356,61.017],[3.72575,60.94075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.766969,58.820484],[10.689438,58.726094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.334,-54.054],[-63.302,-53.99],[-63.2685,-53.923]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.755,44.017],[-8.57,46.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.064172,40.707727],[13.188,40.58225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.043023,40.375594],[13.752,40.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-9.68],[70,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.904,33.16],[34.31,33.482]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.7285,37.01075],[12.438375,36.958625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.658359,36.855695],[24.718953,36.683297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.001,-36.949],[40.002,-33.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.312875,51.918125],[3.375,51.709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.16875,35.7475],[-8.175,35.527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.473277,37.622613],[24.514453,37.487023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.595469,42.98625],[7.725687,42.979563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.593,38.317],[11.0505,38.5065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.8335,26.345],[-85.824,26.564]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.610125,35.743625],[24.617,35.944],[24.584375,36.044]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,20],[-114.032,20.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.3,-8.9],[177.85,-10.774]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.284,52.8025],[-5.5705,52.5285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.656219,55.284625],[-6.7335,55.47625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.117906,56.828844],[12.022469,56.730469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.528859,50.208109],[-1.672227,50.166836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,20],[-112.667,17.471]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.490508,43.093109],[5.731156,43.03925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.78925,36.71375],[-8.221,36.57025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.794,33.382],[-124.684,35.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.001,41.749],[-160.414,41.74]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.7,56.952],[8.849,56.957],[8.93225,56.97925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.92775,38.517],[11.71975,38.425125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.984,38.23],[-9.8085,38.3535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.095,19.701],[-75.068625,18.51125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.46975,58.725672],[21.33725,58.64225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6375,57.03375],[6.6705,56.73675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-172.878,47.609],[-173.038,47.179]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.61075,37.09],[23.707875,37.04275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.295219,57.249313],[17.175875,57.011625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.140937,41.76375],[17.075875,41.67475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.522625,42.642375],[16.393,42.562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.825219,48.522094],[-6.1305,48.4495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.695875,57.140875],[17.914562,56.956187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-50],[-20,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.821,22.882],[-107.4,23.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.5635,12.738],[-69.868,12.921]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.513625,36.689094],[-3.395,36.641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.396,-26.595],[-22.818,-27.338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.724312,38.045328],[24.668891,37.886359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.135187,54.614219],[-5.280984,54.713938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.549,53.694],[1.654,53.7245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.393,42.562],[16.25625,42.661938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.148,-30.016],[-84.61,-35.006]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.6325,60.336875],[4.663125,60.19175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.102,57.981],[9.987586,57.908125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.963375,56.103875],[17.056938,56.292625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.929,10.355],[-79.494,10.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9795,38.02],[10.136,38.053]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.108844,36.03],[24.082578,36.220953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.295,37.477],[3.15,37.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.949,23.337],[-85.886,25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.492328,50.412828],[-0.368117,50.268758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.607,54.194],[-164.001,53.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18,-35],[23.125,-37.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.117,40.045],[-132.406,40.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.01275,19.968875],[-50,21.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.86,-16.1785],[145.4,-14.7],[142.133,-10.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.44,56.2185],[7.462312,56.352656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,8.458],[160,8.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,30],[-150,30.272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.532438,37.443875],[25.352914,37.560074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.60125,61.943],[17.731125,62.23775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.282125,53.973125],[1.012875,54.0385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.984,-0.086],[-42.924,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.32207,58.511648],[9.21575,58.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.9255,42.5555],[-8.961563,42.430875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.003,-44.371],[160,-40.558]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.034,26.408],[-73.877,26.436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.6675,51.472],[-9.2355,51.338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165,35.386],[164.325,36.009]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.236,42.554],[-10.804,42.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-30],[-89.148,-30.016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.242,46.181],[-1.541,46.3545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.466375,58.039375],[-2.3145,58.13725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.193812,43.917844],[9.24575,43.78075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.356,39.668],[8.334,39.559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.433,54.173625],[6.84475,54.137187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.021656,36.719547],[-6.6835,36.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.2705,59.967],[25.80725,59.87575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.316,36.6],[170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.17375,54.925406],[5.11875,54.781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.10025,40.5655],[11.423,40.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.6,34.2],[129.097,34.949]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.525875,38.461062],[24.399707,38.524234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.782,-6.598],[-81.034,-6.294]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.69275,58.240875],[6.595,58.17575],[6.472789,58.105783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.0135,39.457],[19.206,39.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.110813,42.446813],[-9.074,42.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,20],[-120,17.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.012375,60.984875],[19.032,60.854]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.73,51.497],[-10.799,51.302]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.953875,54.659875],[-0.7745,54.653]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.58075,56.397],[5.926,56.491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.8965,10.0025],[-82.22,9.942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.5585,53.124],[0.946148,53.088938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.886453,58.776234],[10.045477,58.70118]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.319,51.961],[-17.631,52.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.165375,22.086781],[-86.417,22.161]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.108844,36.03],[23.926188,36.072688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.536,55.581031],[16.442,55.811844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.915,27.9665],[-57.047,27.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.095,19.701],[-73.837688,19.982813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.122,69.702],[-99.623,69.291],[-99.732,68.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.8555,42.056],[3.784,41.977],[3.7,41.867],[3.62275,41.78625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.203,14.967],[-160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.641,61.291],[19.619875,61.102125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.001375,61.586],[4.890875,61.60175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.889,63.799],[-11.932,62.848],[-11.292,62.901],[-10.554,63.21],[-8.816,62.547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6375,57.03375],[6.89275,57.126625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.598,38.38475],[14.4745,38.326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.330125,64.11925],[-22.4985,64.026]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[87.729,-42.544],[90.001,-42.239]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.4055,45.753],[-1.268,45.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.24,58.7945],[21.155563,58.563688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.650844,39.329031],[23.724,39.5465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.309,40.363],[146.81,40.247]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.923,35.735],[-8.7705,35.4235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.533,35.465],[-8.687,35.751]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.172625,58.456],[4.789,58.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.557,-16.494],[162.364,-17.761]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.77525,57.13575],[18.931188,57.114]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.525313,57.723312],[9.64175,57.707063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.159,43.639],[-6.431009,43.743467]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.501,58.224],[2.463,58.176]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.98125,41.288],[8.925,41.281],[8.879482,41.274148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.293,37.308],[15.766875,37.08575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.045344,53.659875],[5.982656,53.751188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.851,64.648],[-23.592,64.495],[-23.0525,64.1395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,-5.057],[-166.599,-3.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.554317,37.691314],[-34.573,37.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.642,14.519],[-130.001,15.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.922,21.764],[-117.388,27.228],[-117.411,27.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.213125,39.891875],[11.924937,40.236312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.732,39.376],[3.031,39.243],[3.112,39.232],[3.3025,39.2155],[3.452625,39.15675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.681,43.181],[33.848,43.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.945,44.7175],[-5.794875,44.761]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.125125,50.642031],[0.874273,50.62893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.832,56.341],[20.00975,56.34725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.007,28.705],[-70.685,28.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.626891,53.269203],[4.66375,53.405641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.3405,-0.3245],[123.737,-2.968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.0535,18.407],[-66.215812,18.676063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.905781,35.438344],[-0.6,36.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.201375,37.474625],[16.27325,37.58575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.793625,54.122],[6.0615,54.1775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.436063,57.685312],[7.65,57.634]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.921891,58.37575],[9.155938,58.25475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.404,35.853],[34.682,35.671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,-50],[-50,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.924,0],[-41.713,1.737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.685,25.303],[-54.915,25.197]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.094,54.332],[-160.955,54.725],[-159.837,55.335],[-158.547,55.399],[-156.747,55.941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.947219,59.497953],[23.810187,59.548]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.136,55.349],[3.952,55.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.368313,45.661125],[13.323148,45.536664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.749422,54.994109],[15.915437,55.128125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.404063,53.723],[6.148875,53.67825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.254188,42.212844],[8.1945,41.991875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.882125,60.26575],[28.637,60.209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.546,49.189875],[-4.713875,49.333188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.31725,39.29175],[25.116,39.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.133,7.185],[60,4.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.223773,35.946328],[27.15275,36.100203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.273,22.218],[-86.891,22.713]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.43125,-2.88],[170.798,-7.164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.231,34.976],[130.094,34.304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.474,56.614],[10.885,56.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.994187,42.495688],[29.064,42.048],[29.066,42.019],[29.093,41.685],[29.097,41.638],[29.108853,41.49247]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.35,20.4],[113.2,19.619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-50],[160.003,-44.371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.9,38.9],[-27.811,38.839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.625234,-7.089904],[72.568126,-7.144806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.229,13.148],[-61.24,13.134],[-60.834,13.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.698,44.061],[-5.8,44.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.81925,58.022875],[-5.531,57.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.9655,47.29275],[-20,49.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.2435,-27.0115],[160.001,-24.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.776,37.146],[-10.381,37.076]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-18],[52.041,-21.109],[53.81,-23.097]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.9575,40.232125],[24.876469,40.019656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.913,-32.283],[-51.255,-32.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.86075,38.8845],[12.7085,38.8815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.768,-32.377],[-48.74,-31.323]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.120984,51.713039],[1.097938,51.588313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.717,-0.727],[-141.329,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.638969,36.126844],[25.5275,36.177875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.723,38.413],[-9.607875,38.47475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.110809,36.492992],[27.70075,36.381625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.4665,61.749],[20.654,61.7045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.976,36.3615],[-4.26525,36.34475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.447,12.282],[110.37,12.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.596,3.313],[-92.016,4.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.162,36.967],[20.899,36.704]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.265625,37.78325],[12.151,37.842]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.4905,62.74475],[20.72475,62.21775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.52,59.454],[4.54075,59.33725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.001,31.784],[-62.025,31.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.129834,47.736476],[-5.13675,47.736]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.238,55.114],[17.648,55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.394375,54.535219],[15,54.336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,5.057],[-130,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.6925,56.117125],[7.66925,56.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.984,40.314],[24.097687,39.923344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.605,12.575],[44.67675,12.1335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.452469,43.254219],[9.551836,43.171375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.179,49.6595],[-5.27725,49.801125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.103,-0.099],[-89.51,0.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.4745,38.326],[14.751,38.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,0],[-170,2.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.396,29.303],[-68.17,28.271]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.8,-5.25],[-31.063,-7.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.723,34.4925],[27.452,34.691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.0845,40.594],[13.188,40.58225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.496,-20.112],[57.55,-19.851]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.4,9.1],[165.979,8.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.074969,50.118117],[-4.671016,50.264617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.5315,38.021],[130.109,37.328],[130.1345,36.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.126,30.137],[-150,30.272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.988703,55.967375],[16.8245,56.060688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.497187,55.448062],[7.486156,55.085469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.733,0],[60,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.2865,53.74075],[-3.397781,53.62625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.554813,36.5405],[23.424594,36.563602]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.586,11.861],[-15.592,11.84],[-16.007,11.645],[-17.128,11.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.28275,47.745],[-5.454,47.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.756689,38.228457],[12.564703,38.197852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.11625,58.3085],[0.111,58.083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.466,60.487],[26.501,60.395],[26.586813,60.324062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.278859,40.599051],[14.341375,40.488125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.339,35.812],[26.134,35.715875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.654,45.829],[-1.854875,46.0455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.59,40.85],[28.6915,40.9335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.604,40.708],[11.295,40.616]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.4665,61.749],[20.48,61.684],[20.626,61.481],[20.69575,61.374875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,13.964],[130,9.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.120004,55.848078],[16.202781,55.981562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-30],[-135,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.544,63.291],[-19.411,63.3925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.131,35.45],[-13.642,35.416]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.822,25.023],[128,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.622,46.884969],[-2.713891,46.962469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.058477,36.863164],[26.964437,36.909937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.001,25.433],[-170.001,25.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.046391,61.372875],[21.22232,61.4235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.682,-14.527],[-170.739125,-14.418875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.376688,21.308563],[-157.639563,21.207063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.046266,36.97412],[27.033859,37.086859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.163219,58.972406],[10.032,59.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.637,35.865],[-0.651,35.736]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.688,46.196],[152.199,43.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.798,-7.164],[171.531,-8.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.988703,55.967375],[16.974375,55.829125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.133,51.803],[-18.319,51.961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.352937,53.182125],[-9.052,53.251],[-9.17,53.213]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.922,39.399],[7.563,39.075875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.727625,42.65275],[17.54675,42.515875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.752,59.524],[22.581359,59.451078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.8765,41.2435],[18.981125,40.983875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,10],[-42.367,12.706],[-45.001,15.169]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.985289,54.818844],[16.169688,54.784375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.86375,27.126],[-74.057,27.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.694992,57.363352],[17.44225,57.37925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.2,19.619],[113.667,19.421]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.798,69.919],[16.642,69.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.056625,55.026859],[19.27225,55.127469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.113,55.886],[-5.672875,56.284438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.543859,37.880766],[15.814625,37.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.816,47.612],[-6.941,47.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.868109,42.674766],[8.750953,42.840031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.608,43.282],[3.732125,43.37075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.25625,42.661938],[16.0925,42.6675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.3095,31.347],[-13.903,32.416]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.673,43.537],[-8.94,43.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.717,40.169875],[12.6,40.1205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.689,36.3035],[34.802,35.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.3815,36.4325],[-2.1965,36.3785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.459,56.244],[3.61325,56.10125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.873703,39.856859],[19.53075,40.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.396195,36.376578],[25.284078,36.52936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,-15.17],[-128.707,-11.357]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.75175,38.451],[8.534,38.121]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.0475,39.62],[1.205,39.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75,-53],[-75.964,-52.8455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.835,48.851],[-3.6805,48.9415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.986,69.5195],[16.6055,69.3495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.090375,57.911875],[8.059094,57.563531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.479484,43.3675],[15.5215,42.94825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.419094,59.038344],[21.24,58.7945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.905,38.489],[-11.81,38.429]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-117.177,-7.228],[-114.025,-6.029]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2275,37.059],[14.481,36.7355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.911,59.453],[22.788625,59.436875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.366,70.3685],[31.3885,70.676]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.879,22.21],[-66.572,22.583]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.089,36.017],[-6.00375,35.958875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.418305,40.172133],[13.447,40.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.95325,62.944],[19.973,62.811]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.269,44.009],[29.74,43.882]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.474625,53.615375],[-5.486836,53.93818]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.341,44.029],[13.5725,43.9135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.746,70.023],[-167.087,69.162],[-167.661,68.327],[-167.747,67.1525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.6,3],[104.708,1.7735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.606,20.303],[106.873,20.686],[107.1,20.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.967281,35.9845],[25.143625,36.10675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.715641,50.09257],[-4.576187,50.032406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.714,56.1705],[-3.0585,56.0545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-40],[-149.08,-39.151]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.052,37.834],[5.879,37.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.0775,19.386],[-66.776,19.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.594,7.64],[158.258,8.292]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.22367,42.828633],[16.0925,42.6675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.773,-15.071],[53.355,-15.396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.637,24.726],[-85.886,25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.871,26.184],[-88.151,26.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60.529,3.997],[62.906,7.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.316562,55.509375],[6.104,55.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.4765,43.165],[4.159,43.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.813,40.446],[-73.78075,40.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-174,-3.833],[-170,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-29.503],[-19.546,-29.571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.26275,58.30375],[6.083617,58.280844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.5235,36.442],[18.926,36.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.365187,60.104875],[22.473,60.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86,61.1],[-85.156,59.947]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.40275,51.486],[-5.280875,51.475687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.964,56.268],[17.7855,56.029]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.444969,50.004984],[-2.498906,49.873219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.472,28.105],[-87.634,27.559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.429375,55.577687],[14.145,55.345],[13.809563,55.387188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.374,54.217],[14.485594,54.052188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.167,35.406],[26.868125,35.259625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90.038,-19.9015],[90.188,-20.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.57175,39.43075],[19.592562,39.30025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.001,23.41],[-124.427,24.693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.207,33.486],[-130.002,34.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[71.147,-6.068],[71.8235,-5.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.210703,36.538219],[27.321,36.525375],[27.43725,36.450203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.511,2.548],[-98.847,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,20],[65.103,20.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.605375,42.797031],[3.947375,43.03275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.1,33.2],[13.8,34.426]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.597,10.124],[-88.138,9.341]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.565,51.786],[1.64525,51.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.68575,42.14675],[16.739438,42.443531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.199,37.642],[-13.687,37.969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.806004,40.759469],[24.8135,40.565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.245094,44.238289],[9.257094,44.096219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.926687,42.302437],[-9.110813,42.446813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.194,59.777375],[23.07125,59.727875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.4905,57.8555],[6.5265,57.7595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.87425,63.90875],[-23.0095,63.7755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.553,53.745],[-5.592125,53.629375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.2645,60.9155],[4.178,60.77325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.165,33.034],[131.952,33.609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.763,-0.246],[-88.693,0.922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.26575,19.25825],[-66.215812,18.676063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.4965,53.913],[0.650125,53.747875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.527,35.048],[27.028,35.256]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.957,34.52],[-68.416,34.223]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.232891,36.472391],[26.12975,36.701797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-10],[-90,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.10825,49.92825],[-10.6925,49.914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.568594,57.987469],[10.606109,57.893906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.77725,49.4025],[-0.925,49.557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.395,49.912],[-5.27725,49.801125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.032,20.056],[-112.667,17.471]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.182,-19.785],[55.284,-20.929],[55.641,-19.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.586,55.326],[5.641,54.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.891,58.626],[-160.317,59.056],[-160.668,58.596]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.192445,36.411152],[22.336675,36.397749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.471,-25.776],[58.0065,-20.694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.417,28.082],[-94.416,27.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.585,59.668],[26.471625,59.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.5575,50.519937],[0.355135,50.517465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.081,38.376],[13.926813,38.3505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.592,26.129],[-75.122,26.213]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.153844,50.273531],[-4.226,50.123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.688086,42.782715],[17.727625,42.65275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.817625,38.910875],[14.923,38.818875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.52,37.5025],[7.5,37.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.66125,38.470312],[24.525875,38.461062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.781094,50.894406],[0.989,50.903],[1.178119,50.895267]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,10],[-125,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.087,36.274],[31.381,35.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.199,37.642],[-12.22,37.771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.979688,38.186562],[12.140031,38.108703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.0095,41.9535],[18.86775,41.4815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.883625,52.02475],[-6.943312,52.126937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.89075,39.952],[17.579,39.815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.12025,57.31275],[20.397609,57.386562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.2085,37.511],[20.958,37.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.83,-33.447],[-145,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.902,0.384],[173.279,-1.121],[174.735,-5.321]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.20625,53.0425],[3.252,53.177]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.522,69.137],[15.706,69.249],[15.8525,69.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.1,1.1],[173.0245,1.169]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.6685,65.542],[38.38,65.702]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.795,4.15],[-100,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.037,42.891],[7.883625,42.72525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.514719,54.380844],[8.360563,54.301414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.625,12.488],[-63.774,11.614]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.999,13.766],[75.3,9.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.428,27.571],[-145.297,28.749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.771045,57.590462],[10.706809,57.743219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.584,35.165],[-8.20725,34.602375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.691469,38.299062],[20.771266,38.382219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.635,23.853],[-154.235,24.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.5,61.1],[-63.186,61.391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.727,36.138],[-12.701,36.318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.308,51.268],[-149.889,51.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.703,62.98675],[17.838,62.931],[17.912,62.9125],[17.924969,62.803875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.67475,57.12],[-1.569,57.0855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.001,41.791],[-30.003,44.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-1.549],[92.507,-2.543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.969812,54.525078],[11.799836,54.459984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.864,-15.03],[125.139,-13.571],[128.46,-11.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.20425,58.680586],[18.334,58.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.449,47.6695],[-6.371,47.771],[-6.271,47.902],[-6.0805,48.083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,20],[67.795,17.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.813,17.409],[67.795,17.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.48,57.638],[4.02375,57.04825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.568336,53.698863],[7.422562,53.793594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.034,6.602],[-81.4,6.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.043,15.592],[-70.568,15.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.091375,36.280375],[26.213,36.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.478563,51.326],[1.423472,51.172862]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.187,-28.287],[-165.011,-30.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.79875,40.49625],[22.8,40.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20,-50],[25.11,-45.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.3405,-0.3245],[125.362,-0.489]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-40],[57.523,-37.714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.083375,55.649687],[20.412,55.7145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.086,39.162],[12.987,39.301375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.427,54.163],[-5.35875,54.260125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.6,3],[104.747,5.817],[104.892,8.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.2105,53.045],[4.065,53.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.976,66.919],[-18.716,66.941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.948438,57.816688],[18.144188,57.900375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.818,66.16],[12.672,66.076062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.609,57.284],[-1.382188,57.299813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.178625,56.688625],[8.08525,56.5205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.54625,43.555],[8.409,43.479]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.602,41.4025],[18.71,41.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.67,-10.085],[143.545,-10.39],[145.373,-10.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.573,-25.426],[-120.746,-23.542]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.007984,35.585289],[25.172969,35.561266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.618,39.27],[-68.552,38.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.3285,-12.5965],[137.178,-9.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.411,63.3925],[-18.623,63.365],[-16.673,63.768]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.43,-18.126],[178.418,-18.133],[178.427,-18.306]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.279,-20.128],[-80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.53575,37.455],[-9.45,37.344],[-9.356312,37.115141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.586453,38.055121],[15.6745,37.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.802,34.685],[10.897,34.503],[11.296,34.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.89,27.554],[-90.483,26.724]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.2685,50.308875],[1.189,50.5685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.592562,39.30025],[19.458,39.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.36,59.4475],[21.419094,59.038344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.438,36.382],[20.185,36.373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-10],[-76.279,-20.128]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.633,41.223],[-68.833031,40.499813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-179.447,69.144],[-180,70]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,20],[-169.519,20.509]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.229,40.2445],[25.0475,40.32075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.528859,50.208109],[-1.37975,50.27475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.175125,52.7395],[3.186,52.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.074,35.814],[-74.99725,36.06675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.144344,55.565469],[15.069062,55.492625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.516,38.253],[8.397625,37.981]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.873,57.516],[20.12025,57.31275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.9,-18.3],[174.246,-15.2785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.676,-4.125],[-87.763,-0.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.164406,40.368625],[17.175,40.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.08025,58.53325],[16.9525,58.354]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.732,68.49],[-97.917,68.631],[-95.8135,68.3785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.01125,40.086],[13.977,39.937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.643,-51.917],[-83.454,-54.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.751,32.442],[124.644,32.434]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.902,63.563],[21.284,63.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.521219,58.086594],[10.4255,58.022125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.288,40.394],[25.0475,40.32075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.678891,50.605625],[-0.756875,50.435437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.750953,42.840031],[8.906,42.841]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.979,-8.278],[50,-2.019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.7335,55.47625],[-6.58,55.472],[-6.2935,55.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.5455,38.8035],[13.192,38.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.03,-6.084],[65.054,-10.036]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.437656,61.069562],[19.264,61.0215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.216,49.47325],[-2.383,49.47075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.311,28.404],[-40,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.941992,55.214016],[10.971312,55.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.098156,60.383297],[21.1405,60.2145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-179.2,64.9],[-177.304,62.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.898,32.578],[-72.974,31.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,20],[-140.001,15.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.574,52.851],[3.94925,52.9315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.636,72.175],[-142.336,72.381]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.358,62.687],[-14.584,63.667]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.378,39.8945],[12.213125,39.891875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.114,18.462],[-66.127,18.485],[-66.215812,18.676063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.34275,36.946375],[-10.776,37.146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.447828,42.400266],[14.569,42.3555],[14.751547,42.256609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.03125,5.06775],[67.296,7.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.591,33.315],[28.697,33.58]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.623,52.621],[5.318,52.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.836207,53.856746],[9.1045,53.881125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.203,-18.005],[168.527,-18.019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.676,39.431],[14.732,39.306]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.309,40.363],[147.568,41.946]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,0],[60,3.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.3385,37.811],[10.6985,37.62825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.2795,-7.9615],[-17.608,-4.206],[-20,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.64,14.9],[40.703,16.063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.7685,54.422],[6.676813,54.235062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0635,54.7685],[8.125375,54.6755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.593469,58.146406],[17.824375,57.880875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.462312,56.352656],[7.593,56.37775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.525,38.68],[7.783,38.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.258234,55.887234],[15.267492,55.642883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.419,62.3635],[19.005,62.582]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.98125,-39.996],[-105,-40.107],[-110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.10675,39.0245],[14.991062,39.215125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.332,49.714],[-0.456,49.7165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.486187,36.420883],[24.36773,36.4685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.618,35.824],[33.351,35.349],[33.8,35.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.159,34.99],[-20.002,34.891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.639656,54.793781],[18.51843,54.966344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.059,0],[-141.814,0.576]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.4,-24.8],[153.878,-24.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.757,44.094],[-69.523,43.397],[-70.047,43.07],[-70.692,42.354]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.993,54.162],[-4.053,54.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.006,-24.992],[-122.039,-22.0965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.194,30.015],[-147.822,30.041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.524,-25.698],[100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.368,59.012],[-0.3,58.737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.952,33.609],[131.9,33.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.6555,64.874125],[21.4265,64.6595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.528,-10.019],[-20,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-17.453],[-110,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-10.344],[-100,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.798,9.583],[-81.914,9.536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.411,17.802],[-75.973,18.043]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.176875,45.08725],[140.234,45.267]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.184,63.31175],[19.441,63.278]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.29025,60.96875],[17.433125,60.818125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.774375,58.54125],[-2.517,58.516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.419773,56.585188],[11.555438,56.672406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.501,36.132],[-12.608,36.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.456188,38.359125],[13.544812,38.512313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.314727,51.915547],[1.470594,51.9315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.8,-5.25],[-37.796,-3.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.928,46.526],[-2.25125,46.65675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.5,-20.9],[161.947,-20.501]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.843,31.985],[-76.208,31.821]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.375,-45.719],[-64.701,-45.722]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.479,55.499781],[19.332,55.25825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.488766,37.681125],[25.504,37.552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.133,-5.922],[-104.607,-4.661]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.104,55.474],[5.70875,55.473]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.531,13.177],[-17.128,11.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.346578,37.582609],[15.52625,37.5765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25,-25.277],[-26.396,-26.595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.542,60.173],[4.554,59.948]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.124,16.521],[-158.702,16.359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.458004,58.565945],[23.528,57.954]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.471,58.872],[-1.867,58.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.483844,42.372],[16.439219,42.239266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.464,-45.08],[160,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-10],[-160,-8.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.006,37.769],[11.30575,37.711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.105531,43.834094],[14.2495,43.7505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.398,59.557],[20.167375,59.504625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.064,41.482],[-69.459,41.488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.16675,54.982062],[19.101703,54.818453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.64,34.797],[26.155,34.809],[26.3455,34.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.556,38.667],[-139.754,39.773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.763789,44.097516],[8.428672,44.054469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.521,59.367],[13.655,59.304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.57675,42.11325],[11.396,42.216]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.259,65.443],[21.6025,65.1765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.185,58.0405],[5.168,57.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.01975,19.973625],[-57.747,22.389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.432,44.096],[32.273,44.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.4305,69.715],[-57.959,71.212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.978,34.678],[27.8425,34.943]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.2725,41.525875],[16.3005,41.716375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-40],[80.002,-43.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.242625,54.67725],[8.380125,54.51675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.598,38.38475],[14.385375,38.39125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.431,-17.608],[146.5865,-16.4795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.869,28.462],[-74.109,28.366]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.821124,50.461551],[0.562078,50.371922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.797738,38.21166],[25.6205,38.1095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.702,37.379],[-122.9,37.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.56775,41.8995],[18.5795,41.6295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.387625,41.58325],[11.4615,41.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.267,-4.789],[-86.847,-3.189]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.243,56.234],[16.329359,56.167422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.0065,-20.694],[56.065,-20.071],[55.641,-19.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.543,70.457],[20.7245,70.6305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.6925,36.747],[20.585,36.569]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.9025,38.5245],[20.764938,38.532688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.284,33.179],[-17,33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.186,70.748],[-96.169,69.725],[-95.174,69.593],[-94.874,69.339],[-95,68.688],[-95.314,68.389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.856094,39.632188],[14.934125,39.529875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.323,26.667],[-82.663,26.451]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.9675,37.51475],[2.6785,37.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.777,35.7],[-74.707,35.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.559,64.073],[36.613,64.483]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.688,-0.812],[127.912,-1.11],[128.236,-1.332]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-30],[-130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.271555,41.142922],[2.397938,41.180969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.018,44.664],[140.328,45.723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.203,-18.005],[168.086,-18.176]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.134,49.447],[-6.0415,49.3585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.003,53.227],[-30.003,53.607]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.9025,38.5245],[20.77275,38.6635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.001,25.932],[-26.469,27.424]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.034,6.602],[-82.675,6.409]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.451,55.265],[-8.5805,55.0505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.921,50.718],[-16.61,50.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.8,-5.25],[-32.849,-3.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.971,21.007],[-79.254,16.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.824,26.564],[-85.625,26.42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.219,41.182],[17.14475,41.34625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.007375,11.029125],[-12.697,4.351]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.963,39.426],[12.7685,39.876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.704,45.025],[-3.865,45.3925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.133,53.382],[4.979375,53.474625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.245,37.365],[12.347,37.333]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.324,55.4995],[5.40125,55.612],[5.4305,55.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.164406,40.368625],[17.185,40.434],[17.2,40.441],[17.164406,40.368625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.833,40.144],[-140,40.202]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.658,26.347],[-76.3525,26.02325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.772,-8.796],[-27.019,-10.022]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[175.2,-35.3],[174,-34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.408758,55.256641],[14.282291,55.167619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.612,51.558],[-6.423,51.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-98.753,-20.017],[-99.099,-19.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.031,38.4555],[1.3635,38.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.424,42.438],[-125.104,44.634]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.211383,58.103047],[11.309773,58.28552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.819488,55.736742],[10.803432,55.565219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.48425,38.125],[-13.94525,37.9905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.273,5.454],[73.814,4.858]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.319141,50.777234],[-1.406,50.897]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.2465,52.74075],[2.432,52.827],[2.5255,52.8755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,-19],[11,-15.5],[12,-9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.064,54.346],[0.13525,54.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.21575,43.642],[-3.09,43.692]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.558,-22.005],[171.694,-18.247]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.501,60.78],[-5.075,60.371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.194,-14.81],[146.5865,-16.4795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.85175,42.294],[9.759906,42.419344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.816,2.468],[79.545,2.607]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.194,27.03],[-88.696,28.133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.542,60.173],[4.19375,60.206]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.911,38.809],[25.098406,38.745773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.766969,58.820484],[10.696469,58.992563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-21.41],[80.903,-20.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146,43.2],[147.568,41.946]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.36725,40.08575],[24.50475,40.089]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.448813,57.452945],[21.615713,57.655652]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.335,34.942],[-7.999,34.5095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.255281,35.512906],[24.402188,35.598812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.569,57.0855],[-1.376,57.1055],[-1.062,57.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.58975,58.35325],[10.768297,58.363934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.732,39.306],[14.33725,39.5515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.264,26.263],[-86.982,25.237]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-40],[-15,-40.107],[-20,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.502,10.646],[103.12,10.2195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.823,68.058],[14.729,67.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.105,-20.708],[178.901,-20.269]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.168875,50.49775],[0.011582,50.526684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.683,3.951],[127.393,2.599]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.845,58.364],[-158.991,58.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.595,-45.728],[-60.542,-45.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.754,26.454],[143.445,26.271]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.4835,36.8185],[-1.974687,36.6915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.518,35.064],[-13.056,34.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.052,19.384],[-158.702,16.359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.00975,56.34725],[20.137,56.2355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.768125,36.398812],[26.875063,36.291312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.013,5.294],[130.376,4.768],[133.284,3.327]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.226,68.788],[16.697125,68.714438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.817406,64.030812],[22.971603,64.194235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,0],[-171.652,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.78275,37.4845],[20.891634,37.335923]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.919719,60.131031],[19.08175,60.105656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.853938,32.354],[-64.567,32.189]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.984687,57.661875],[-4.185,57.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.21575,43.642],[-3.118859,43.526453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.35425,35.3735],[28.581,35.4315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.802,30.547],[-71.59975,30.13275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.045,57.43],[8.801,57.324]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,40],[-148.928,41.201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.010719,44.154125],[15.118,44.065],[15.211125,43.996375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.624125,53.82775],[7.645297,53.946391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.333,59.715],[149.462,59.118],[149.614,58.413]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.266563,60.510062],[4.852938,60.690344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.166,58.511],[13.271,58.596],[13.299,58.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.813418,37.781859],[25.696297,37.756797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.5915,37.8655],[123.199,37.102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.967281,35.9845],[24.964,35.8595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.9,28.284],[-89.586,28.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.066156,52.592937],[2.117,52.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.64,56.828],[4.3455,56.35825]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-103.448,73.403],[-104.946,74.319]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.3965,48.123375],[-5.32575,48.0045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.314,68.389],[-94.002,68.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-50],[-130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,-50],[130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.747,67.1525],[-169.15,65.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94.871,15.084],[96.404,14.151]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.002,-34.797],[83.619,-33.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.488938,40.038406],[14.235875,40.468812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.384,54.1],[13.398,54.1],[13.46,54.209125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.722437,60.304438],[20.566,60.251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.519,41.988],[-70.481,41.781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.907,41.014],[17.812,41.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.835625,42.21625],[-8.979063,42.141562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.8,40.2],[22.9945,40.0215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.634,-52.466],[-89.997,-53.308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.395313,36.314844],[26.442,36.413],[26.579297,36.488062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.3265,35.767125],[23.288,35.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.57,59.807875],[24.69075,59.824562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.168438,57.759125],[19.39775,57.53725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.14275,38.0085],[11.286125,38.122125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.045,56.459],[10.103,56.464],[10.355,56.604]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.343,54.4975],[7.282,54.397]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.70425,35.60425],[-6.68725,35.7515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.862,28.826],[-92.886,28.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.153922,46.763398],[-3.018,46.591]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.245125,60.090375],[19.429512,59.82393]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.249,37.229],[27.217,37.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-30],[-159.999,-22.627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.831,50.866],[-32.597,52.706]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.835453,51.697],[-5.815688,51.500125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.484875,36.30875],[24.535312,36.193156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.965125,61.15425],[17.53475,61.186359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.97325,47.97775],[-4.83725,47.9095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.615,18.421],[-64.78825,18.2635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.492,44.466],[36.269,44.669]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.0215,41.1655],[12.844188,41.195719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.001,24.693],[-150.001,26.106]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.057,50],[-130,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.773,40.487],[-69.468,40.492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.457,61.1825],[20.035875,60.996938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.633469,50.502023],[-1.851922,50.612422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.84475,54.137187],[6.676813,54.235062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.0505,56.215063],[10.952836,56.35907]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.744,35.245],[29.014,35.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.601,39.665],[23.657,39.781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.002,35.0065],[-20.002,34.891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.762,44.284],[-67.757,44.094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.354328,51.25282],[-5.092875,50.8015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.491,-29.435],[60,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.162,54.672],[-131.562,54.638]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.8525,69.363],[16.1715,69.3165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.892008,57.372164],[23.793375,57.497812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.467,66.461],[0,67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.655,63.476],[-16.224,63.021]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-109.999,-32.38],[-105.527,-35.872]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.2,34.199],[35.052,34.348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.383313,55.997875],[7.288,55.837]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.103,25.538],[53.8,24.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.131,68.952],[16.977,68.883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.405563,62.363109],[17.643766,62.349859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.208,66.316],[8.028,66.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.253,29.502],[-71.81,29.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.037,18.239],[-42.271,20.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.587504,45.589098],[13.45457,45.588383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.41125,37.695766],[23.336,37.859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.726,40.244],[0.43575,40.10225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.935922,43.688109],[-6.435,43.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.336008,38.551061],[25.40775,38.70975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.893,66.0435],[-24.034969,65.871219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.54925,52.57575],[2.86,52.696]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.32,30.633],[-60.542,30.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.790438,43.889844],[28.8445,43.73725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178.5,28.5],[-179,28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.007,28.705],[-69.799,28.196]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.716,71.27075],[23.2575,71.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.41,59.709],[4.1955,59.6395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.246813,43.923437],[8.353,43.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.341563,37.663094],[12.162812,37.692531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.07425,39.025],[3.186125,39.03375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.518703,45.136062],[12.711844,45.123281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.23125,53.4315],[-4.416,53.47225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.883,20.224],[-78.14949,18.992057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.479,55.499781],[19.1525,55.3495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.194625,39.246],[2.553187,39.416438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.7,-15],[45.609,-13.991],[45.951,-13.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.18,44.414],[-6.22375,44.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.99175,44.65725],[13.869,44.515],[13.854859,44.386266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.067,59.416],[2.592,59.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.498489,14.102685],[42.077422,14.86205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.4725,12.5985],[43.5275,12.482]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.149,37.094],[-9.917,37.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-10],[-130,-3.107]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.974687,36.6915],[-1.008453,37.544078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.752,40.299],[13.529406,40.493094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96,19.5],[-94.4,18.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.426,66.426],[-14,65.9755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.9255,45.6835],[-129.992,46.22925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.634,36.296],[34.992,35.874]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.29,44.7445],[13.459375,44.802906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.89,-45.404],[-20,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.115,26.751],[-70.032,27.123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155,35.386],[-155.72,36.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.69075,59.824562],[24.859328,59.813906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.62,47.1905],[-2.785219,47.112094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.894,36.694],[12.79875,36.8085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.2935,55.46],[-6.038125,55.41625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.405625,39.9515],[24.39675,39.8115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.768125,36.398812],[26.821148,36.500563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.327,71.346],[20.396,71.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.436,53.1855],[0.56475,53.35025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.738563,55.471],[-4.859875,55.520125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.676,66.898],[9.69625,67.809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.18675,37.21475],[13.485219,37.115625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.308,26.359],[-74.034,26.408]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.780563,65.353563],[22.6665,65.2155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.066281,58.405984],[11.001219,58.291938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.358516,36.337297],[23.367672,36.441352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.60825,53.644062],[5.490258,53.60458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.381,27.999],[-91.3035,28.42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.3605,35.9945],[28.913,35.802]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.103,64.482],[-22.781,64.411]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.592,15.573],[-145,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.141,42.333],[132.972,42.577]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.782,26.283],[129.036,26.089]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.3,-39],[144.27,-39.301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,13.267],[-39.9945,20.0065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.577,-7.375],[76.168,-10.028]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.967,26.552],[-96.937,27.583]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.461,70.0155],[31.059,69.999],[31.366,70.3685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.697,56.8975],[20.61725,57.082688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.466375,58.039375],[-2.447,58.239]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.550547,43.312297],[9.452469,43.254219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.214703,55.266328],[11.305045,55.090986]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.82,-14.338],[-102.005,-11.494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.497555,58.616561],[10.496875,58.794438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.116375,57.51025],[9.43,57.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,0],[80,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.09,27.418],[-73.3,27.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.254,21.329],[-156.801,21.367],[-157.376688,21.308563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.774,52.7975],[3.94925,52.9315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.713,52.9865],[4.454422,52.444984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.362625,54.821125],[12.19575,54.83725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.704,55.24],[6.5465,54.518]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.001,-22.121],[-1.148,-21.216]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.07125,38.418],[12.1945,38.31025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.933,34.704],[26.8635,34.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.723,54.60825],[8.5665,54.5805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.378,60],[-19.994,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.493,14.128],[42.078,14.862]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.8175,38.0295],[9.9795,38.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-113.663,16.489],[-115,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.5,43],[-9.376,42.589]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.7,56.2],[142.524,56.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.932,52.677],[-166.732,54.1965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.696,41.9715],[10.646,41.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.377,55.629],[10.468247,55.665064]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.3385,53.412],[2.79,53.24275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.64525,51.857],[1.786938,51.699687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.677,28.749],[-15.106,28.371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.797687,40.844813],[12.58675,40.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.833406,55.412844],[14.746152,55.300796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.433125,60.818125],[17.38875,60.717125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.9905,38.111],[12.140031,38.108703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.186,52.94],[3.335125,52.962187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.264625,38.748],[11.02525,38.69325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.057,57.009],[3.6375,58.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.68575,42.14675],[16.839344,42.003937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.949,41.754],[-10.07275,41.63825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.58,0],[152.1365,2.1595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.192,38.709],[-72.333,38.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.019,-56.066],[-67.679,-56.104],[-71.385,-55.361]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.17725,58.648125],[20.0445,59.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18,-35],[10.002,-34.691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.60125,43.80125],[28.707656,44.083062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.87675,56.87575],[18.99475,56.60875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.136,41.9055],[17.158,42.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,1.147],[-39.296,0.714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.716,51.716],[2.359312,51.334812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.305,53.374],[-5.164,53.342]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.904,33.16],[33.064,33.309]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.997,36.487],[-70.107,36.229]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.8995,54.911],[5.817,54.9705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.505,60.091],[19.375625,60.084125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.8605,-5.729],[113.257,-6.326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.782,51.47],[141.3995,51.282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.585266,36.680078],[23.757844,36.720125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.056,34.144],[-12.7075,34.736]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50],[-20,50.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.668,69.912],[66.228,71.709],[67.758,73.197]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.81,42.436],[-10.804,42.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.878,54.961],[-1.097,54.975],[-1.239625,54.994609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.864,42.036],[-65.39,43.204]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.320125,38.425875],[-9.278031,38.316719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.045,57.43],[8.925,57.3495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.106,28.371],[-15.203,28.276]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.969,39.35225],[17.844,39.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.665125,39.38025],[24.514125,39.374625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.093688,37.843187],[25.991375,38.028625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.568,46.255],[-163.817,46.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.891,29.085],[125.529,28.388]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.78925,36.71375],[-7.569,36.66325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.5575,44.1655],[-2.92475,44.6545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.065,56.126],[20.137,56.2355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.5305,38.4565],[11.71975,38.425125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.435,37.912],[-10.074,38.167]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.415,39.089],[19.206,39.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.569,36.528],[-10.34275,36.946375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.336008,38.551061],[25.15475,38.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,20.71],[-140.001,28.033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.675,38.824],[6.204,38.783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.483062,43.656437],[13.54,43.763]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-30],[-168.187,-28.287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.67725,42.481],[27.768,42.545],[27.93,42.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.639344,36.376688],[24.655781,36.495344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.037,30.94525],[-72.693,31.223]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.004344,40.877812],[13.064172,40.707727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.811125,43.367094],[6.95875,43.159688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0635,54.7685],[7.880016,54.607469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.87375,39.907],[13.616,40.261]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.532,66.207],[-18.392562,66.210797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.207539,37.923922],[24.318828,37.996062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.273719,59.327687],[22.420625,59.4495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.68275,39.77375],[18.564,39.713]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.106,45.719],[-2.499,45.798]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.822,41.979],[-11.246,41.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.445227,37.265547],[25.304328,37.265297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,40],[175,40.107],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.637,60.209],[28.767,60.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.043023,40.375594],[14.116328,40.562297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.559125,44.77125],[13.653516,44.614742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-3.281],[-20,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.657375,41.421375],[12.528313,41.390375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[89.727,18.849],[88.553,20.312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.0705,49.00275],[-7.01,49.167],[-6.8965,49.437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.579,55.491],[5.586,55.326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.042334,56.518523],[11.0505,56.215063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.0415,49.3585],[-5.869625,49.220375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.18925,37.805],[25.352,37.851]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.96,64.13],[-13.95,64.034]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.781,35.916],[29.998,36.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.25,7.251],[85.695,10.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.463,21.815],[120.429,19.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.2055,59.76425],[20.167375,59.504625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.58375,54.626375],[12.701,54.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.5275,36.177875],[25.41275,36.003187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.86325,38.5275],[7.5205,38.427]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[77,8],[76.451,7.458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.883227,36.766941],[26.723492,36.675875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.114062,43.681008],[14.88932,43.614086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.376188,41.221563],[12.350625,40.890625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.513,39.7925],[0.639,39.7525],[0.767,39.728]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.661,19.224],[-66.215812,18.676063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.463,32.474],[16.474,32.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.534,49.9535],[-10.717,50.234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.592,59.19],[2.3475,58.942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.746031,60.597609],[18.4745,60.63475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.218,55.147],[0.783,55.983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.631,52.764],[-17.133,51.803]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.473,7.576],[-163.85,3.898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.558875,42.49275],[5.651,42.347],[5.711,42.261625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.116,39.315],[24.914398,39.395555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.1,43.8],[-3.314,43.824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.84375,53.8065],[6.509594,53.730672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.5505,54.181],[14.21975,54.20425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.593719,39.019594],[25.468312,39.035625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.26675,42.311625],[17.781031,42.435031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.9975,62.7195],[19.005,62.582]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.264,63.161],[19.51375,63.171]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.245125,60.090375],[19.028195,59.747914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.9945,20.0065],[-40.0485,20.103]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.831,-5.112],[129.913,-5.002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.40275,51.486],[-5.43925,51.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.124875,56.9615],[9.299,57.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.24525,52.104],[4.2605,52.213375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.341812,57.576],[21.20325,57.5165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20,-50],[10,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.194,54.8315],[-5.135187,54.614219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,30],[137.503,31.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.906,37.636],[-10.339,37.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.835875,51.379],[-4.0095,51.38025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.965719,38.400688],[21.213969,38.212187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.290563,54.095875],[5.1775,54.1035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.594,-11.106],[178.99,-13.906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.79875,36.8085],[13.023,36.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.624,41.701],[5.485,41.662]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.192445,36.411152],[22.239594,36.204906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.435813,51.826078],[-5.356766,51.684719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.946,58.301],[-1.7895,58.389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.14,23.327],[-157.376688,21.308563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,0],[90,-1.549]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.872,28.83],[123.096,28.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.165375,22.086781],[-86.056187,21.765438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.309,36.79125],[21.40825,36.68125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.475,71.126],[20.7245,70.6305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.08,35.901],[26.822,35.812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.891109,53.926875],[7.99075,53.869]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.793,14.963],[-69.105,14.132]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.712,15.528],[-25.07,16.489]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.5545,43.327875],[8.54625,43.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.639,40.753],[12.58675,40.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.913,41.987625],[9.876875,41.803938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.082,36.146],[25.809,36.103]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.241,47.716],[-9.225,47.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.825,16.97],[155,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.645,57.7505],[11.654469,57.646875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114,6],[114.373,6.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.665,56.8305],[5.7845,57.281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.452625,39.15675],[3.5575,39.2255],[3.7285,39.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.089,37.879],[-24.9815,37.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.429,64.9995],[23.6245,64.96375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.432391,54.645688],[-5.340438,54.457469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.588062,39.093312],[0.4265,39.3425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.844,37.68],[-60.503,39.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.039,58.927],[-5.8305,58.8805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.4355,39.67525],[18.385406,39.761953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.779875,65.187375],[22.783,64.997]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3605,53.059],[4.2105,53.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.484,48.2365],[-5.3965,48.123375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.21525,56.34525],[-2.3285,56.291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.155,60.667],[-5.84,60.721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.6295,24.9085],[-156.874,27.047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.334,51.334],[-8.23875,51.02725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.0265,58.6295],[-6.662,58.578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.753,38.1865],[13.56625,38.18525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.318,48.93],[-20.348,49.687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,50],[-160.002,46.037]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.888,57.609801],[9.254,57.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.991,-35.378],[-45.192,-35.166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.601104,41.911591],[8.535,42.227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.654469,57.646875],[11.649736,57.447521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.11,-45.405],[8.595,-41.573]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.6335,44.21175],[13.66225,44.06325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.815,68.139],[-95.423,68.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.341961,39.129945],[25.0655,39.07925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.822,41.979],[-10.81,42.436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.754,26.454],[143.037,27.131]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.597,35.782],[18.902,35.641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.1155,56.3765],[20.00975,56.34725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.01975,19.973625],[-64.3405,18.893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.153844,50.273531],[-3.74625,50.163313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.374844,38.326188],[15.29875,38.2425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.983172,37.421102],[24.051451,37.548637]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.256797,54.157672],[6.0985,54.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.5,14.3],[-79.664,16.009]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.4465,38.7015],[1.674,38.232]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.299312,43.419438],[9.427875,43.411812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.674,45.1445],[-8.670625,44.65625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.167,49.85],[-140,49.813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.473277,37.622613],[24.367508,37.438992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.562057,54.684709],[-5.432391,54.645688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.639344,36.376688],[24.714,36.223]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.663,36.535],[13.951375,36.629875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.5755,38.543625],[-28.485,38.629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.272,73.743],[73.107,73.014],[73.986,72.545],[72.404,71.347],[73.502,70.906],[73.326,69.662],[73.81,68.436],[72.447,66.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.67425,55.83475],[20.559312,55.7235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.205312,56.75725],[18.01975,56.725062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.95,-5.4],[117.7265,-3.4845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.700063,59.883688],[5.6505,59.70675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.91975,53.831],[4.058,53.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,-50],[120,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.004,44.147],[9.1325,44.136844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.919,57.579],[24.14,57.671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.842281,42.673063],[9.759906,42.419344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.52625,37.5765],[15.454,37.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.035546,19.990821],[-60.108432,19.972234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.573383,37.237562],[24.397195,37.265648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.8595,32.6085],[-74.749,31.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.181125,38.49725],[-123.96925,38.28475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.15525,41.04325],[2.197,40.978],[2.203,40.933],[2.2335,40.7045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.256,54.056],[-162.56,54.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.927484,36.445719],[23.035125,36.354312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.709437,52.145875],[-5.825875,52.152125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.627719,53.392437],[-3.635,53.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.621,0],[50,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.244375,36.64075],[24.273031,36.518203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.663,58.345],[-5.392,58.488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.381625,53.789125],[9.532,53.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.676,49.827437],[-7.25675,49.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85,-15.17],[87.411,-17.548]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.3195,43.755],[-8.402055,43.614492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.112,-45.402],[110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.5485,43.6635],[-8.619375,43.835906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.399141,55.309422],[7.3005,54.952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.15749,36.356752],[-3.36875,36.371844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.132344,36.812094],[24.074703,37.012719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.197,51.004],[-5.359875,51.328875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.254,57.415],[8.943,57.286]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.45,23.96],[-87.313,22.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.291,17.3685],[-50.01275,19.968875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.645,11.8085],[45.001,12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.4365,43.29025],[14.522313,43.238125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.0415,42.124],[16.087812,42.21875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.51225,57.988031],[8.64375,57.9235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.881938,54.76175],[-0.765,54.8335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.616,41.406],[140.176875,45.08725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.066906,39.810875],[23.903,39.868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.264,64.918],[-24.116,65.0035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.6645,53.90625],[1.493,53.924],[1.444,53.934],[1.282125,53.973125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.25,-23.3],[-41.3,-23.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.278,-10.017],[162.748,-10.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.079,3.12],[56.17,6.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.556875,37.612313],[23.711118,37.566561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.83275,38.746875],[-9.822688,38.526875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.824,56.1365],[11.680563,56.1585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.846,44.26],[-9.02,43.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.772875,54.1965],[14.5505,54.181]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.831875,37.66025],[15.692875,37.29175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.667,38],[4.397,38.377]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.3705,57.96675],[8.289,57.9065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.704,22.244],[-75.204,21.506]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.14325,43.036],[9.04475,43.060625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.032266,36.463187],[23.272176,36.528695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.069,35.92],[-7.120647,35.925677]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149,-43],[150,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.497,33.0425],[33.904,33.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.346,57.45],[19.554,57.3935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.220656,39.039656],[8.083047,39.066297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.78075,40.069],[-72.744,39.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.843,38.332],[-28.3005,38.593]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.807,50.592],[-139.325,52.066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.124,39.845],[10.143,39.667]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-40.558],[160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.689,40.998],[-73.028,40.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.478188,42.446594],[10.461437,42.272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.209781,35.9375],[-6.564188,36.107438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.537,14.85],[-68.314,15.132]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.549,34.763],[13.73,35.396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.131,38.92],[-32.34425,37.84675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.8,24.7],[52.1,24.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.682125,-17.353625],[-152.303,-18.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.416,53.47225],[-4.563,53.529625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.481,41.781],[-70.339,42.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.752,51.459],[0.9465,51.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.060047,50.623906],[-0.920531,50.60275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.554156,42.821313],[15.488188,42.670313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50],[-19.53,50.548]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.707875,37.04275],[23.61675,36.92625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.875,32.511],[-78.102,32.311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.77275,38.6635],[20.636258,38.502305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.08175,49.885469],[-0.085391,49.915937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.504125,38.08125],[25.596625,38.007312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.612,51.558],[-6.937,51.544]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.74875,50.464],[-5.856625,50.363937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.504,28.339],[-86.3105,28.157]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.782,32.9665],[34.648338,32.723348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.49425,36.581375],[-3.223,36.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.204687,50.567141],[0.011582,50.526684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.748,-10.02],[163.02,-9.825],[165.557,-5.612]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.52225,38.9125],[7.389,38.691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.405313,55.742437],[10.564031,55.702922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.583,44.966],[13.559125,44.77125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.267,4.85],[-51.901,5.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.049625,43.51475],[15.114062,43.681008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.316312,36.979156],[25.174547,36.856313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.179,41.61225],[3.4775,41.7185],[3.62275,41.78625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.978375,38.415469],[8.86925,38.55225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.187,14.031],[57.926,18.689]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.014125,58.300438],[10.20925,58.237813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.875875,36.610687],[23.901047,36.726672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.295,66.63],[-15.273,66.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.375,51.709],[3.40425,51.55325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.589,-1.403],[109.38,-2.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.76282,43.569477],[-3.91,43.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.109,28.185],[-88.637,27.227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.556373,50.14482],[-3.389625,50.096125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.9695,54.889],[18.830938,54.952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.518703,45.136062],[12.528937,44.994906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.320125,38.425875],[-9.4335,38.5745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.805,35.245],[23.732074,35.143287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.681,14.207],[-79.783,12.531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.919254,37.184895],[25.056,37.212477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.774,36.257],[-8.21,36.323]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.428,65.265],[22.325,65.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.162812,37.692531],[12.068,37.655625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.011,56.246],[6.153,56.241]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.556875,37.612313],[23.62393,37.715352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.619,37.895],[10.833,37.6445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.1875,54.676875],[13.04675,54.646]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-112.917,-30.055],[-111.268,-31.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.39775,57.53725],[19.48725,57.58975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.486,14.65],[158.375,10.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.742,70.806],[18.72,70.921]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.1805,40.038],[24.972625,39.941094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.051,55.835],[12.009125,55.935625],[11.837977,55.960992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.081813,36.791625],[24.958703,36.849672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.884,50.047],[-63.641,50.171],[-64.475,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.001,-25.001],[-3.205,-23.397]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.378145,18.715595],[-76.545481,18.741766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.420625,59.4495],[22.192,59.395625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.964,35.112],[-12.675,35.481]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.2215,49.992],[-2.28575,49.881172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.3675,54.854],[7.343,54.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.689,51.729],[0.738,51.726],[0.841,51.733],[0.978875,51.767437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.565,41.125],[-27.31,40.282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.986,51.63975],[1.097938,51.588313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.339,37.493],[-10.054,37.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.623188,38.008844],[24.668891,37.886359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.447,40.003],[13.454,39.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.746,54.695],[7.638312,54.561875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.693188,48.387812],[-5.507973,48.596453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.97675,21.97175],[-86.161,22.377]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.952,36.419],[-3.36875,36.371844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.33725,39.5515],[14.388,39.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.896313,60.581609],[19.039656,60.36375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0695,55.3905],[7.950375,55.312438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.35875,54.260125],[-5.211375,54.429625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.846,14.46],[-68.537,14.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.394,-26.942],[-42.258,-27.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.6285,59.0075],[-2.801,59.002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.5,-53.648],[-90,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.416,53.47225],[-4.220406,53.539359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.6535,55.6385],[18.776,55.626],[18.903,55.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.138,40.557],[4.739,40.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.565,38.657],[-74.55,38.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.4675,39.127437],[23.62875,39.09075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9435,43.356],[-1.8115,43.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.751,25.786],[-85.717,26.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.457,36.644],[-70.789,36.836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.29,27.3],[124.785,28.027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.678,56.7105],[20.697,56.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.370219,43.833156],[14.386258,43.984094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.066375,55.035562],[13.934062,55.021375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.781,1.319],[172.864,1.391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.744688,48.002531],[-5.98725,47.8615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.5,-35.1],[-54.614,-35.249]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.816,29.055],[-81.1415,30.291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.606,28.174],[33.503,28.117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.759,29.283],[-178.5,28.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.056781,42.458625],[17.215,42.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,20],[-30.254,20.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.834,58.063],[16.780188,57.689125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95,-25.277],[90,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.692,36.56],[18.355,36.747]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.909016,52.970562],[-5.73325,53.072]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.527,38.939],[5.675,38.824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.456187,36.115125],[14.348312,36.107188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.484063,55.252078],[-5.43,55.068375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.126625,59.117875],[5.068,58.939625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.403438,65.552219],[24.237,65.446]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.722,71.541],[19.6625,71.2395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.07125,59.727875],[23.153719,59.551219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.121,41.560625],[11.387625,41.58325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.1,-18],[167.379,-18.213]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.654,28.182],[-78.182,27.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.816375,37.652375],[6.525,37.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.743,70.599],[17.438,70.516],[17.124,70.134],[16.885313,69.991437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.249,56.770875],[-2.0575,57.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-21.41],[77.601,-22.543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.480375,54.814172],[18.416,54.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33,43],[36.269,44.669]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.712938,38.337313],[12.756689,38.228457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.465,42.635],[35.296,42.206]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.460153,56.16288],[12.438195,56.321961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.92975,57.38025],[19.094938,57.35625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.344,40.035],[-54.574,40.098]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.951,-13.657],[50.0055,-9.99425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.252,26.495],[-82.663,26.451]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.5405,54.88],[14.482,54.686]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.47,-49.577],[70.696,-49.374]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.16,44.283],[15.010719,44.154125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.103,35.57525],[26.249437,35.433906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.0505,37.27225],[13.18675,37.21475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.002,52.888],[0.116,52.94475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.488,34.235],[26.529,34.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.42959,48.744031],[-5.507973,48.596453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.525,38.68],[7.5205,38.427]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.081,36.465],[-72.287,34.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.509594,53.730672],[6.404063,53.723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.815,27.897],[-91.558,27.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.663,-15.802],[163.78,-16.373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.023,32.419],[-71.249,31.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.7335,63.275],[18.944187,63.182125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.733,37.3455],[16.293,37.308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.667,30.809],[-77.1925,30.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.691625,49.615813],[-4.531297,49.444938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.90125,36.9885],[-7.846406,36.884875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.739125,-14.418875],[-170.619062,-14.248125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.015,60.465],[22.072,60.444],[22.109,60.399625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.143,32.065],[-64.2005,32.01275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-119.999,-24.322],[-119.999,-23.133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.971,55.404],[-131.82,55.052]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.598375,42.457594],[15.706062,42.360062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.390937,42.396812],[15.40325,42.551813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.89,-45.405],[-20,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.178,-9.889],[136.878,-9.694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.027,20.671],[127.724,24.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.092875,50.8015],[-5.74875,50.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.4005,36.2535],[15.13,36.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.186,53.5275],[-5.052,53.487]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.424,50.727],[-6.423,51.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.403,40.002],[2.4275,40.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.837875,37.0335],[13.676605,36.988188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.417,45.128],[-160.002,46.037]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.429,34.7135],[33.663,34.903125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.58,49.738],[-18.16,49.831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.834,64.701],[22.7955,64.5765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.242,67.853],[14.302125,67.72325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.839023,53.641422],[-5.592125,53.629375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.84,51.749],[-158.305,51.776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.193,-60],[-59.498,-62.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.535,51.375],[-4.749937,51.477312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.244311,54.539781],[11.113,54.6675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.891,38.527],[10.6095,38.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.647,57.784],[-6.775,57.887]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.605,48.556],[-132.692,47.579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.66925,35.99725],[-4.5765,36.101375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.4755,44.975125],[-8.670625,44.65625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.807,36.847],[-75.337,36.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.846,60.098],[-0.74,60.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.175,43.679],[-9.4665,43.5815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.5705,57.875],[9.383016,57.757641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.66225,44.06325],[13.835406,43.943969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.59675,56.417125],[20.422875,56.409813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.7185,45.7765],[-3.796,45.557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.76025,64.056],[-22.7565,63.839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.613,47.446],[-6.298,47.783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.056,36.4805],[-9.163937,36.269188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.948,40.149],[2.364,39.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.454,37.345],[15.436781,37.155094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.46,-36.56],[166.075,-35.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.593,42.057],[7.449,42.124],[7.32025,42.198]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.273031,36.518203],[24.36773,36.4685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.546594,40.587594],[18.493688,40.443703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.420781,57.265594],[8.5715,57.399563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.136,31.709],[-65.8955,31.81575],[-65.73075,31.88825],[-64.853938,32.354]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.68825,57.74475],[20.010844,57.876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.905781,35.438344],[-2.9155,35.2935],[-1.245,35.93],[-0.637,35.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.359,40.67875],[12.316,40.773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.941,54.965],[6.869,55.048]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.97725,53.05975],[4.713,52.9865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.757,44.094],[-65.54,43.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.933875,65.3335],[22.780563,65.353563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.568,34.586],[-13.83,33.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.511547,56.048703],[10.607,56.162],[10.655414,56.058281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.163937,36.269188],[-9.024,36.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.187813,51.267063],[2.049148,51.229781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.4965,38.576813],[20.355625,38.634625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.002,-35.757],[160.4,-35.679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.822,33.488],[-8.834,34.152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.176,36.713],[-7.569,36.66325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.928,62.229],[5.3005,62.2955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.280984,54.713938],[-5.194,54.8315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.703125,55.893],[-1.921375,55.959125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.6695,36.949],[-8.866,36.771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.47,-49.577],[70,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.455,38.392],[-70.852,38.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.034,26.408],[-73.99,25.264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.074,53.873],[0.179469,53.560531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.614,74.782],[9.175,74.468]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.392,38.658],[10.50575,38.57075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.739906,49.082062],[-4.771375,48.932875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.72,49.31],[-8.691,49.421]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.631438,41.748188],[10.336469,41.665875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.357,-30.662],[108.266,-31.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.306,27.483],[-61.34,28.538]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.356344,42.7935],[6.6825,42.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.051,28.2135],[48.718,28.606]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.428,27.571],[-148.9705,29.0905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.787,66.101],[12.099,66.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.016,39.588],[18.385406,39.761953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.116375,59.861187],[25.304,59.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.322094,55.174047],[-5.283672,55.005711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.178,60.77325],[3.557,60.7985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.145875,36.635],[27.057719,36.526059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.555,38.7135],[25.697797,38.693305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.414,44.857],[-1.38,44.6405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.709031,36.578938],[23.649891,36.446328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.245,37.365],[12.106922,37.287437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.417075,18.877696],[-77.891133,18.951694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.754,38.101328],[25.899906,38.140844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.492125,51.66425],[3.52675,51.96125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.667,40.268],[-68.618,39.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.148688,57.831875],[20.454,57.7895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.738955,51.010418],[1.922406,51.213344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.874625,57.731375],[17.948438,57.816688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.544,37.085],[3.2755,36.9965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.954,28.334],[-15.203,28.276]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.53,39.523],[-13.759,39.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.551,39.919],[3.787,39.983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.71175,41.5865],[8.701,41.484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.788375,43.8085],[9.8625,43.9005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.222,58.91],[-3.60125,58.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.52275,44.891],[36.4,45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.644,66.252],[40.746,66.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.7715,42.266],[16.86825,42.487547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.778,13.508],[-69.98425,12.99075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.439219,42.239266],[16.191125,42.334812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.152,38.6095],[0.9125,38.4885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.639,40.753],[12.936,40.513]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.155,17.819],[-64.231,18.794]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.252187,41.795797],[2.8495,41.5255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.009,43.553],[139.018,44.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.572,41.056],[8.077875,41.142875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.998,-36.681],[-166.117,-36.416]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15,64],[-15.175,64.111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.755,38.273],[-12.22,37.771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.49,36.3835],[22.656,36.3935],[22.927484,36.445719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.11575,45.9715],[-1.363,46.06],[-1.483437,46.081187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.023,32.419],[-71.121,32.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.164,13.697],[-73.3215,14.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.102375,54.561813],[7.880016,54.607469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.52,27.664],[121.965,28.037]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.104125,37.996625],[26.093688,37.843187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.458,39.335],[19.303,39.425313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.97075,51.525688],[3.107648,51.392562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.915437,55.128125],[16.0135,55.25525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.121,35.568],[123.976,35.423]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.734,59.853],[-168.574,59.042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.796,43.825],[-2.9925,43.809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.847875,48.8505],[-5.968813,48.644281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.815275,54.580532],[10.906,54.483]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.747,22.389],[-55.239,25.047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.614,58.413],[142.938,55.334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,10],[-99.99,10.663]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.002,-43.455],[80,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.308344,54.149055],[10.943109,54.001172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.826,57.239],[-0.9475,57.1615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[46.654,69.842],[51.446,70.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.677316,43.012395],[17.178562,42.905812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,5.057],[-141.065,8.956]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.604,50.460875],[-0.750258,50.333555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.0855,40.8505],[11.795,40.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.2345,38.78125],[9.091,38.767],[8.90025,38.70575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.679,28.904],[-15.8605,28.702375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-50],[-124.888,-45.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.086,52.773],[-10.2,53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.217,37.056],[27.219625,36.92575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.44225,57.37925],[17.593125,57.25925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.12475,49.33025],[-4.00425,49.214875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.361391,36.752797],[24.35275,36.97275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.28575,49.881172],[-2.432,49.604]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.918,-6.021],[55.3,-4.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.296,42.206],[36.392,41.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.360813,55.012187],[18.346,55.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.444969,50.004984],[-2.603875,49.910625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.841,34.87775],[25.114,34.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.565,54.068],[1.282125,53.973125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.8655,49.4095],[-4.990125,49.567187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.436,57.2265],[20.257188,57.102688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.058,53.796],[4.18575,53.974]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.647563,36.102063],[-3.834281,36.283469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.93975,64.01575],[21.65925,63.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-50],[-154.889,-45.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.794,50.373],[-165.623,50.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.993,8.9],[-81.175,9.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.867,39.871],[0.87875,39.71975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.578,39.879],[19.513125,39.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.827875,54.105344],[8.705844,53.926219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.48725,40.60825],[1.62475,40.476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.2155,58.5015],[0.801,58.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.992,58.456],[8.921891,58.37575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.231,18.794],[-64.224291,18.787721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[79.62,6.141],[78.149,7.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.335,34.942],[-7.9735,34.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.979188,54.837812],[17.126,54.884],[17.296,54.907],[17.55075,54.91325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.613,11.217],[121.429,11.4945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.789,0.834],[172.902,0.384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.39025,49.289],[-2.307953,49.198984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1825,60.43825],[4.005,60.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.589875,56.393375],[6.507219,56.241031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.226,50.123],[-4.144164,50.056672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.558,32.782],[-57.79325,32.43325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.257094,44.096219],[9.338219,44.012188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.460153,56.16288],[12.622281,56.071172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.710062,44.33625],[14.675031,44.151812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.076,37.617],[2.236,37.491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.609,33.614],[-7.857,34.031],[-7.825,34.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.50575,41.53925],[9.408062,41.516797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.594,43.44],[-133.877,43.939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.16,60.814],[19.311906,60.771219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,20.001],[130,16.854]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.878,-14.821],[3.543,-16.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.3245,42.045875],[10.241,41.973]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.86825,42.487547],[16.916,42.35475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.5,-21],[-172.486,-16.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.618,52.545],[-149.792,52.314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.668,37.28875],[11.298938,37.419125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.803187,55.4435],[18.6535,55.6385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.223,50.906],[-18.319,51.961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.86425,36.047],[14.235687,36.193938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.731883,38.950109],[25.828234,39.089973]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.281656,49.501211],[-0.136047,49.512703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.83575,55.258875],[10.858875,55.359875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.439,-17.919],[116.555,-19.077]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.417,-30.083],[-96.127,-26.341]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.526,57.806],[4.6255,58.0665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.024188,50.514437],[-2.0695,50.406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.527375,58.41625],[20.724125,58.5305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.8185,47.6855],[-7.691,47.88125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.54075,59.33725],[4.71975,59.117234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50],[-19.58,49.738]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.495,36.984],[-13.895,37.183],[-14.458,37.228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.123682,37.488928],[25.227953,37.48968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.609375,38.91375],[25.468312,39.035625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.43,55.068375],[-5.322094,55.174047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.359,53.11625],[0.357625,53.318875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.3625,61.832125],[20.4665,61.749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.609633,42.895539],[16.677316,43.012395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.806004,40.759469],[25.0195,40.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.487125,60.2875],[4.19375,60.206]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.368625,50.495],[-2.2605,50.41625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.60725,54.06425],[8.584625,53.929375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.835,40.4185],[0.942,40.278141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.9625,59.297],[3.635,59.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.431,21.538],[-67.284,21.717]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.624781,55.029219],[16.92725,54.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.28825,49.666],[-4.391438,49.57325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.102,55.371],[-6.86275,55.3365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.113,45.402],[-155.417,45.128]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.018,54.687],[5.76,54.7775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.815688,51.500125],[-5.699,51.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.9195,54.919875],[14.666,54.888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.241,49.344],[-0.281656,49.501211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.758,58.679],[-149.792,58.848],[-149.053,59.241]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.914109,55.239125],[-6.86275,55.3365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.916,56.179],[18.529,56.128],[18.417625,56.110875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.435766,40.569461],[14.278859,40.599051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.201375,37.474625],[16.733,37.3455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.393,71.116],[26.461,70.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.136,36.117],[-70.587,34.269]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.846,44.139],[-8.160375,44.033375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.613,58.012],[17.638,57.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.038885,45.242312],[12.993453,45.124258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.1325,58.114875],[9.997937,58.12425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.77725,49.4025],[-0.758,49.544]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.45725,42.572],[5.36925,42.73625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.706176,48.730629],[-5.847875,48.8505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.133,34.493],[-144.976,35.364]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.447,66.24],[-19.801,66.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.98,49.773],[-4.024188,49.587063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.600777,43.526945],[7.74975,43.37025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.765,56.462],[6.6725,56.3195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.88932,43.614086],[14.675906,43.631531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.6695,36.949],[-9.046,36.987],[-9.10275,37.405875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.887,-52.201],[-49.998,-52.433]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.26,-6.313],[-144.62,-6.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.92,37.865],[20.383469,37.928031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.545,36.025],[-8.5355,35.9135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.569781,59.857125],[23.808625,59.80775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.60375,38.728375],[15.345625,38.912625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-0.984],[-120,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.1285,12.6205],[-58.451,12.233]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.768,50.744],[0.757086,50.611703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.56,54.273],[-164.908,54.456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.575,-9.25],[116.439,-17.919]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.761,68.859],[16.648562,68.89125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.026,26.285],[34.553,26.902]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.765,36.649953],[21.59425,36.52275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.613,55.70225],[16.656,55.829]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.754,44.054],[-8.846,44.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.571,43.888],[37.5115,44.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.570812,63.52575],[20.71725,63.51225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.619922,55.17168],[16.76,55.209],[16.903813,55.244687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.749,31.44],[-74.226,31.282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.471,57.76875],[-3.414,57.752],[-3.1695,57.7475],[-2.940484,57.706078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.014,-15.1565],[-2.2455,-12.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.106406,48.123625],[-4.97325,47.97775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.28825,49.666],[-4.410312,49.677875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.92775,38.517],[11.70975,38.57625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.86325,38.5275],[7.744,38.088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.868125,35.259625],[26.767484,35.322164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.8175,51.854875],[-7.766063,51.692312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.2,16.2],[56.369,17.194],[57.926,18.689]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.531,-8.499],[174.735,-5.321]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.446,-40.852],[152.868,-42.084]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.0605,68.7865],[12,68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.37125,46.746781],[-2.25125,46.65675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.997,59.115],[4.71975,59.117234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.269633,38.625922],[24.473312,38.727063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.3035,58.535],[-0.11625,58.3085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.8185,49.741],[-1.892469,49.848457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.0705,48.8205],[-2.938,48.808]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.503602,56.56732],[20.63,56.6155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.337,36.631],[-74.99725,36.06675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.26,-55.905],[-64.798,-55.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.701,41.484],[8.574344,41.261812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.762609,58.781531],[9.786531,58.940641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.998,-34.051],[-146.83,-33.447]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.440438,-7.267563],[70,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.6,1.1],[103.872,1.2215],[104.478,1.442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.0845,57.555],[7.3395,57.45825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.305,40.754812],[13.207812,40.832594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.5,57.124],[0.978,57.111],[1.939,56.924]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.304,2.175],[-102.69,2.728]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.621,41.361],[10.499,41.42925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-50],[-14.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.504,37.552],[25.532438,37.443875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.659,-12.799],[-170,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.823,49.6955],[-2.498906,49.873219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-30],[-155.332,-24.658]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.559312,55.7235],[20.204,55.6295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.291,17.3685],[-55.4615,15.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.754891,56.695094],[11.555438,56.672406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.489,56.953],[20.375937,57.017969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.504,37.552],[25.352914,37.560074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.9475,57.1615],[-1.062,57.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,25.277],[-120,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.528859,50.208109],[-1.583625,50.356625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175,15.17],[-180,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.787,35.6945],[-3.724,35.946]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.23125,56.554703],[7.200188,56.443719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.586781,57.449531],[-1.609,57.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.738,58.75],[1.394,59.059],[2.159,59.143]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.884937,57.489125],[8.059094,57.563531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.19,51.91775],[2.998203,51.880914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.884,-18.205],[172.496,-18.199],[176.9,-18.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.8945,21.5975],[-80.425,20.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.9,36.74475],[14.185484,36.698141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.562,40.491],[-28.585,41.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.916,53.729],[-4.296,53.81425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.325188,44.284687],[14.266375,44.164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.235062,36.074],[24.082578,36.220953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.339812,55.3525],[-5.484063,55.252078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.635,-5.135],[153.136,-2.703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.197,52.4485],[-10.48875,52.19625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.055578,55.648859],[10.11575,55.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.767,35.814],[-7.70425,35.60425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.10975,64.289344],[22.959,64.077]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.665,40.72475],[4.138,40.557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.681,43.181],[35.635,43.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,-19],[7.25,-15.942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.831,-5.112],[129.665,-5.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.601,42.996],[5.409156,42.964031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.035,55.685],[8.016813,55.50325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.79,53.24275],[2.839,53.048]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.314,43.824],[-3.639,43.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.15425,42.4815],[6.796,42.534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.005,65.264],[-13.839,65.299],[-13.661,65.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.210703,36.538219],[27.123125,36.415875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.3,46.1],[-55,45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.739438,42.443531],[16.638875,42.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.768812,56.5435],[17.42,56.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.889,47.787],[-6.697,48.078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.552,38.801],[-68.415,37.827]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.5,8.6],[-79.202,7.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.90725,59.3835],[18.758125,59.309562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.893,27.783],[-89.89,27.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.319,38.6405],[-10.261,38.528]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.297,34.251],[27.095,34.502]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.2005,64.2395],[-15.045,64.214]]}},{"type":"Feature","properties":{"pass":"gibraltar"},"geometry":{"type":"LineString","coordinates":[[-5.6775,35.958375],[-5.439953,35.9825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.82575,36.01725],[24.967281,35.9845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.601,59.246375],[21.54525,59.088219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.019813,55.372281],[-5.0125,55.247]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.323187,48.24875],[-6.329,48.103]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.761,35.38325],[25.701406,35.484406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.68825,57.74475],[19.644,57.605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.342,54.525],[-36.436,53.898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.0355,44.05925],[29.184,44.25],[29.426,44.532],[29.443,44.551],[29.528,44.651],[29.5915,44.73925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.999,9.999],[-151.961,13.589]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.058,66.745],[-20.819,66.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.320094,54.841844],[13.465187,54.965562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.254,-16.799],[-146.132,-16.56],[-145.417,-16.628],[-144.063,-16.094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.19575,54.83725],[12.025281,54.918359],[11.881,54.985156],[11.741,55.01575],[11.605922,54.988219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.132344,36.812094],[24.020375,36.906375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.026,38.384],[-9.822688,38.526875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.10775,37.20425],[11.358,36.789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.857516,44.946891],[12.984188,44.807578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.794375,64.834375],[22.593625,64.693375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.001,-12.814],[82.853,-14.861]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,-50],[-44.889,-45.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.978875,35.972875],[-4.66925,35.99725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.2715,38.46075],[0.630594,38.774281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.4,-24.8],[153.427,-23.882]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.991812,49.876688],[-1.943531,50.01925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.68875,39.76825],[25.782812,39.842437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.705,32.59],[127.146,32.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.995477,36.805496],[26.06975,36.939312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.841031,49.984406],[-1.943531,50.01925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.375,-27.634],[-29.999,-27.993]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.57225,42.61175],[-55,45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.84143,50.167727],[-2.005125,50.132875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.837688,19.982813],[-73.899,20.2085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.157,-18.049],[118.1,-17.848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.501,64.263],[-4.013,64.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.083,38.6375],[12.96525,38.81575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.451,44.204],[-1.708,43.79025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.3165,30.8885],[124.891,29.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.151,-6.153],[-81.899,-5.251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,67],[1.985,64.579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.248,54.623],[12.3655,54.654375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.409797,43.429766],[16.447,43.327],[16.424,43.332],[16.409797,43.429766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.454,57.7895],[20.6975,57.72375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.5915,44.73925],[29.078,44.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.199,37.102],[125.5,37.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.3495,34.09],[-17,33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.902,35.641],[17.902,35.846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.041125,60.252875],[19.245125,60.090375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.369,26.579],[50.981,27.249]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.424238,51.448891],[1.544219,51.431562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.48725,53.17825],[1.076,53.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.903,32],[-70,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.837688,19.982813],[-73.1,19.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.372,45.281],[-1.421,45.152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.388,10.01],[140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.530898,59.382117],[10.615795,59.285332]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.106922,37.287437],[12.227859,37.204313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.135187,51.086938],[1.738955,51.010418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.032,39.59575],[10.143,39.667]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.826,47.459],[-135.113,45.402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.407,52.508],[-27.341,53.102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.62275,48.976375],[-4.771375,48.932875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.7565,70.0365],[16.885313,69.991437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.5,64.1],[-23.298,63.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.668,47.8],[-6.816,47.612]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-10],[159.98525,-10.1215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.769,63.212],[-22.497,63.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.55925,48.805484],[-5.42959,48.744031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.39,-20.061],[-120,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.729875,54.8175],[16.624781,55.029219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.861,23.327],[-180,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.432875,41.806375],[8.489227,41.981977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.305,50.367],[-1.48575,50.30325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.798,16.25],[-87.466,17.619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.555,51.296],[-167.472,51.486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.030375,48.788125],[-2.137031,48.747781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.375125,52.03625],[2.50275,51.828812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,-50],[-55.264,-45.741]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-30],[-165,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.049,50.703],[-140,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.083219,40.662633],[14.278859,40.599051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.686719,55.634297],[12.832,55.579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.2855,60.514],[18.397,60.571],[18.4745,60.63475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,20.71],[-140.73,20.774]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.8655,49.4095],[-4.856625,49.25625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.559,66.756],[-15.273,66.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.503,31.631],[139.417,34.162]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.712203,57.602812],[9.455406,57.531531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.953625,68.253375],[15.861313,68.311375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.865656,42.697406],[6.077,42.825125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.031375,61.317125],[4.974,61.436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.307125,53.777125],[13.954,53.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.195,60.563],[27.184,60.537],[27.1435,60.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.009,28.936],[-88.855,28.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.127,40.55],[139.4,41.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.516,29.055],[-78.818,28.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.638,62.636],[19.479125,62.294875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.79875,36.8085],[12.7285,37.01075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.446,43.79575],[-7.37575,43.98975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.923813,36.666719],[24.815102,36.763]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.582,0],[-40,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.790188,39.014688],[12.213125,39.891875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.846,14.46],[-67.68,14.047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.677,39.904],[14.725625,39.76425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.344,60.48425],[28.42825,60.5685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-5.001],[71.147,-6.068]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.1,43.8],[-3.704,45.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.090375,57.911875],[8.289,57.9065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.336312,37.837047],[24.192812,37.770094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.2365,36.945],[-7.983,36.866]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.866594,58.323113],[5.979,58.1875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18,-35],[17.343,-34.178]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.882,-6.094],[106.454,-5.547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.86,39.231],[-9.867,39.077]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.9,35.95],[23.73175,35.95725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.050775,36.267631],[13.799125,36.461125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.662,52.727],[-50,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.8765,40.8155],[26.057,40.3235],[26.196727,40.064031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.551687,48.709125],[-4.211,48.93775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.556,17.357],[119.565,18.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.077,59.223],[2.3475,58.942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.058234,57.74757],[10.206125,57.692437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.46775,58.38925],[21.362,58.154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.45,58.307],[18.435875,58.189125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.364,-17.761],[161.947,-20.501]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.565062,47.619125],[-6.725719,47.313563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.5305,55.3685],[17.60025,55.279375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,39.176],[-60.823,38.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.5395,58.664],[-3.60125,58.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.176016,54.423125],[14.10525,54.3485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.20625,53.0425],[3.335125,52.962187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.369,51.078],[-13.279,51.287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.57778,11.642532],[-61.791,11.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.101,70.8845],[28.696,71.084]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.07,27.349],[-73.86375,27.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.814687,56.695625],[20.879,56.843]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.0905,40.2595],[2.2055,40.2865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.273,44.126],[34.029,44.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.780062,59.664125],[23.901535,59.690625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.816,29.055],[-79.688,28.494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.768297,58.363934],[10.670652,58.591402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.944,63.571],[-22.12565,63.708815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.503,35.4],[23.506,35.609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.1645,28.827],[-15.32175,28.284375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.702485,16.058561],[-85.324082,16.097444]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.751547,42.256609],[15.04525,42.33075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.881875,36.299],[23.9885,36.1685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.792,28.08],[-74.466,28.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-98.753,-20.017],[-100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.726773,53.505562],[-4.970297,53.366312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.394156,37.070969],[26.187359,37.083187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.014188,51.662188],[-6.937,51.544]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.237,41.3],[3.002,41.072]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.162,45.955],[-4.247,46.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.048828,50.385953],[-0.216875,50.345875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.729,10.891],[-75.938,11.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.476125,36.591625],[21.59425,36.52275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.522375,59.71075],[23.257469,59.677742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.095,34.502],[26.933,34.704]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.001,36.6805],[13.147625,36.622125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.305125,39.391562],[0.197,39.54275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.367,35.455],[26.103,35.57525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.68925,59.339125],[4.71975,59.117234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,-6],[8,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.37,58.85],[19.647,58.923875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.0405,52.33875],[4.267687,52.380437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3195,54.033],[4.18575,53.974]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.957,51.21],[-59.215,50.025],[-59.884,50.047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.770469,54.076375],[7.519008,54.151023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.889,-45.404],[-90,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.131,59.451],[20.912,59.3065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.002,27.586],[-83.382,27.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.868125,35.259625],[26.94375,35.4515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.046,58.802],[-6.489,58.641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.3245,58.663875],[20.31225,58.564063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.2055,40.2865],[2.25,40.053],[2.220125,39.832125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.390937,42.396812],[15.598375,42.457594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.463461,37.560992],[23.556875,37.612313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.966328,37.293547],[24.040229,37.114312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.352,-9.268],[173.699,-12.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.3655,34.474],[31.77025,34.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.602,8.603],[-17.007375,11.029125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.486836,53.93818],[-5.35875,54.260125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.924,34.489],[32.3655,34.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.106,41.275],[12.001,41.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.079,43.752],[8.20375,43.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.530812,60.227469],[21.751,60.222062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.714125,46.733063],[-2.622,46.884969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.797738,38.21166],[25.73368,38.316016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.508516,36.843312],[25.620797,37.164937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.555,54.3115],[2.985,54.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.045938,37.366875],[11.159,37.4445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.007062,54.683188],[11.008938,54.843375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.9945,43.918],[28.790438,43.889844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.344,-23.655],[-130,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.93825,37.46175],[-72.572,36.697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.537,14.85],[-69.848,15.413]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.152,0.007],[-32.984,-3.172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.889,41.841],[-69.701,41.848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.040229,37.114312],[24.168,37.168875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.154875,47.526],[-4.584,47.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.349,40.062],[-69.121,39.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.393,2.599],[128.15,2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.252438,50.074],[-1.170828,49.970023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.397,45.066],[-10.404,46.193]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.126125,42.04025],[10.3245,42.045875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.153191,55.347656],[15.298031,55.545687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.728156,51.331844],[2.357,51.179]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.9575,40.232125],[24.808875,40.13075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.824625,44.215563],[12.9945,44.2065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.067,36.696],[23.272176,36.528695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.475563,35.964687],[-7.307,35.982],[-6.622344,35.928063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.338219,44.012188],[9.302,43.91275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.28925,42.629625],[14.32975,42.50075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.482,64.012],[11.275,63.983],[11.062,63.868],[11.074,63.846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.07825,41.38225],[-71.168,41.325],[-71.357,41.117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.788423,35.822991],[27.450672,36.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.002,35.756],[-46.211,36.466]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.732125,56.57975],[11.905875,56.514875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.82925,37.291375],[11.950375,37.42875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.765875,59.948375],[25.591789,59.890969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.878,53.495],[-171.804,54.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.62875,54.51575],[15.4885,54.398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.4625,64.7145],[22.973937,64.72425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.732531,42.291219],[10.691,42.4565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.142344,37.966875],[21.012969,38.074219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.6525,35.4995],[12.375,35.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.471,54.902],[-0.001,55.0165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.02,37.959],[-68.552,38.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.868,-25.152],[-34.612,-24.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9265,57.008],[-2.0775,56.9045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.79325,70.05525],[30.106,69.821]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-50],[-2.805,-47.364]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.47,40.544],[3.599,40.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.181,17.157],[-63.121,16.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.389,41.944],[17.312594,41.849781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.424,48.494],[-6.391,48.358]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.917,37.225],[-9.6035,37.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.5935,43.573813],[14.75225,43.4335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.907,47.484],[-7.8185,47.6855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.489,58.641],[-6.662,58.578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.565,63.0435],[20.493625,63.190883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.002,-43.805],[73.589,-43.829]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.674,51.392],[-3.562,51.356]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.496,34.623],[30.621,34.539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.9055,47.983],[-7.096,47.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.80725,59.87575],[25.591789,59.890969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.023375,56.841187],[7.963188,56.625062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.586,30.3695],[-79.26,30.372]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.778,58.673],[-1.867,58.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.413,37.18],[-10.25825,37.08725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.86375,27.126],[-73.3325,26.57925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.1725,50.673],[-5.334,50.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.914398,39.395555],[25.208,39.204]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.031,38.4555],[1.152,38.6095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.523,-26.761],[2.015,-28.169]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.778,-36.039],[-49.915,-38.484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.112625,42.917938],[16.0295,42.8415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.7895,58.389],[-1.693,58.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.752187,48.922906],[-5.847875,48.8505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.723844,58.005],[9.84723,57.855687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.781,-5.072],[123.497,-5.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.42125,53.672031],[8.299,53.634],[8.170375,53.580875],[8.060965,53.768402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.038,19.012],[-67.928,18.4805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.312875,51.918125],[3.19,51.91775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.0925,42.6675],[15.935125,42.460375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.668,43.295],[170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.258,-27.962],[-43.78,-30.267]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.21,58.0305],[18.289094,57.821469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.7355,57.55],[6.895,57.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.297398,53.7685],[6.161125,53.778312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.583,-40],[178,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.037,30.94525],[-72.738,30.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.6835,36.6],[-7.09825,36.6245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.451,36.87975],[11.045938,37.366875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.886453,58.776234],[9.796375,58.65925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.954,16.075],[-112.56,16.222]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.972328,50.363828],[-1.073063,50.13225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.559312,55.7235],[20.705625,55.69775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.273031,36.518203],[23.96525,36.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-50],[-97.634,-52.466]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.607,37.6575],[20.793,37.282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.436813,57.398375],[8.291437,57.324875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.765437,55.888125],[12.646293,55.74748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.27,44.458],[-10.045,44.772]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.573,37.69],[-37.314,37.521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.33457,36.37425],[-2.465,36.443]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.23125,56.554703],[7.38725,56.57775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.5945,56.94075],[-6.44,56.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.999,-15.929],[-156.304,-16.456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.969812,54.525078],[12.023195,54.421016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.292,54.735],[12.248,54.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.002,46.037],[-161.568,46.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.0165,41.837688],[9.913,41.987625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.862,39.634],[14.083,39.467]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.298,1.202],[-78,3.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.8035,36.7185],[13.650875,36.742375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.184,-24.477],[111.507,-25.394]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.671,51.822],[4.589,51.897]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.674,41.405],[16.622687,41.567281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.372,4.683],[-145,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.434125,61.403375],[21.282656,61.290219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.724063,57.16375],[10.654891,57.282262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.949,60.75],[-146.769,60.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.895,44.9275],[-8.81,45.004]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.142,40.474],[19.305,40.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.322,34.47],[30.092,34.232]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-30],[-90,-29.076]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.324,53.584],[-150.844,53.472]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.937,44.501],[-6.84,44.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.295719,37.563],[26.268187,37.387125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.14325,43.036],[9.218438,43.126688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.771266,38.382219],[20.965719,38.400688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.6,34.4],[124.177,34.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.57075,55.83475],[-6.2935,55.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.809563,55.387188],[14.042,55.233]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.001,-35.5],[120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.183,44.86],[166.697,42.774]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.680563,56.1585],[11.454937,56.3865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.013375,37.744625],[21.2085,37.511]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.092875,50.8015],[-5.48175,51.108812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.70175,37.131],[-68.148,35.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.071,47.013],[158.563,45.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.877,-34.915],[118.001,-35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.1845,53.931],[6.161125,53.778312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.37575,43.98975],[-7.949,43.941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[89.328,8.964],[81.9,5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.420078,37.448047],[12.356,37.564]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.208188,41.559531],[12.292,41.483]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.5575,35.8275],[-7.767,35.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.024344,55.9795],[7.228313,56.164125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-8.282],[-121.277,-8.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.6305,43.964],[-9.5515,44.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.152,58.626],[-1.778,58.673]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.078,28.917],[50.365,29.247]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,5.057],[-162.473,7.576]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.99325,42.63725],[15.935125,42.460375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.654887,54.568508],[13.787547,54.365617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.786,31.734],[-13.138,30.028],[-14.677,28.749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.131,59.451],[20.986,59.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.446,70.001],[57.55,70.204]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.167406,37.277938],[26.009375,37.257469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.11375,43.244625],[10.09875,43.135898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.89,26.793],[-79.5955,26.7635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.685,28.422],[-72.143,27.8135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.519875,43.5275],[-1.451,44.204]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.9895,37.884125],[24.846875,38.019562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.3775,63.4075],[8.853,64.509]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.221,32.244],[-79.48,32.124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.678,-25.775],[-42.853,-26.052]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.823,49.6955],[-2.714219,49.826656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.5865,36.87825],[-9.358,36.619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.875063,36.291312],[26.814563,36.16925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.047,47.415],[-7.8185,47.6855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.1235,36.56425],[-9.02568,36.730164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.159,37.4445],[11.359938,37.590219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.60775,43.364375],[7.462359,43.401703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.94375,12.77425],[-59.7395,12.9925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.964437,36.909937],[26.883227,36.766941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.3415,59.6475],[5.181,59.565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.9535,39.087125],[14.828,39.26875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.987,40.9215],[3.158,40.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.4,-24.8],[153.682,-24.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.762609,58.781531],[9.6,58.71075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.448,40.6315],[18.22575,40.79075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.65425,20.05575],[-52.018,22.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.465187,54.965562],[13.781,54.9735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.02,29.989],[-89.12,29.492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.762,7.289],[-35,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.654887,54.568508],[13.503625,54.865125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.300688,50.459562],[-6.424,50.5835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.990547,54.009406],[7.99075,53.869]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.483,26.724],[-90.856,26.188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-98.025,-10.014],[-92.787,-12.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.826625,41.830687],[10.867687,41.646563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.875563,42.049125],[15.88975,42.1645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.825,32.765],[24.106,32.071],[24.464,32.577]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.098125,37.256125],[27.104,37.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.038125,55.41625],[-6.1,55.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.775,39.24],[6.093,38.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.801,64.414],[21.92,64.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.136,38.286],[-10.074,38.167]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.762828,53.372312],[-4.87375,53.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.218,41.7215],[7.898,41.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.223773,35.946328],[27.31343,36.005234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.730938,57.987078],[6.621906,58.036484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.025,63.792],[-13.889,63.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.613125,55.3965],[18.803187,55.4435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.459,24.727],[-154.6295,24.9085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2545,38.467],[14.214375,38.33675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.160375,44.033375],[-8.221,43.8965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-148.943,59.3],[-146.769,60.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.242,67.853],[14.375,67.894]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.555875,43.504],[15.4155,43.50525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.543,40.838],[28.1765,40.811]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.421,45.152],[-1.556,45.528]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.183,71.016],[-144.857,70.378]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.3705,57.96675],[8.51225,57.988031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.056,54.4755],[12.9345,54.67425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.286062,36.011562],[25.378188,36.126438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.792,35.763],[-123.315,37.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.88575,39.7225],[25.980125,39.599]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.75525,60.08475],[20.649,60.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.692,36.56],[18.145375,36.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.701,34.893],[-72.84,34.933]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.697,42.774],[170.668,43.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.375,-27.634],[-30,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.214375,38.33675],[14.081,38.376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.1135,39.5995],[8.121,39.4],[8.138437,39.238812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,34],[13.257,35.154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.575125,57.16825],[18.92975,57.38025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.996,-54.411],[-76.179,-54.832]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.706176,48.730629],[-5.968813,48.644281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.55125,25.853],[123.415,25.571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.767,42.16],[-12.215,42.302]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,40],[-29.9785,39.00525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.350734,43.1385],[5.409156,42.964031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.317875,60.1155],[28.176,60.128]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.604,31.905],[-16.158,29.067]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.950375,37.42875],[11.946125,37.543375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.26275,58.30375],[6.182156,58.209859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.67075,55.0135],[9.526,55.0495],[9.693234,55.11175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.5745,36.8305],[13.459,36.77175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.465187,54.965562],[13.618891,55.258641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.534312,36.54225],[24.59,36.708375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.602,43.617],[32.273,44.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-40.001,40.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.832,-51.697],[-57.687,-51.672],[-57.6315,-51.4805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.779,40.2425],[1.43,40.173437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.521,36.357],[-126.937,36.492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.121,47.296],[-48.028,48.148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.611,36.924],[25.766711,36.886488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.545,59.981],[3.397,59.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.776,38.485],[120.886,38.627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.95875,43.159688],[6.858375,43.04875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86,61.1],[-88.947,63.487]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.343438,50.175062],[-1.528859,50.208109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.002,-36.964],[158.55,-36.509]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.428766,50.403988],[0.355135,50.517465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.8295,35.335],[30.199125,35.627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.848,35.717875],[27.702,35.7385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.221,30.478],[128.135,31.387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.806004,40.759469],[24.642545,40.820645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.119,39.256],[0.808375,38.9915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.642,57.259],[-5.825,57.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,20],[-23.231,20.659]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-92.686,74.342],[-96.416,74.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.762977,59.489383],[24.673938,59.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.169,53.9455],[1.058625,53.893563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.694,42.2035],[41.223,42.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.407969,50.850938],[1.584432,50.986559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.915,51.687],[-8.253219,51.73225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.737,31.675],[-14.3095,31.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.924,60.446],[18.896313,60.581609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.224,35.846],[14.567266,35.916988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-10],[-147.511,-12.611]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.508,37.804],[7.478,37.60525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.083617,58.280844],[5.866594,58.323113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.002,57.553],[-20.102,57.536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.255281,35.512906],[24.231469,35.660031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.159,37.4445],[10.995875,37.481313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.4765,43.165],[4.644,43.1015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132,-8.9],[132.808,-9.031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.827125,36.454781],[23.724812,36.342438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.64,-27.27],[12.5,-28.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.32,43.37],[-127.424,42.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.2315,55.50075],[7.0985,55.051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.022781,57.076859],[12.136375,56.98425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.4665,43.5805],[-5.632219,43.586016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.709,50.127],[-10.958,50.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.356,37.564],[12.195594,37.575281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.969812,54.525078],[11.8145,54.60525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.869,36.362],[-9.67,36.427]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.725,-9.459],[116.68,-9.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.595469,42.98625],[7.2465,42.981]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,-25.277],[-110,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.803422,44.150188],[14.934,44.019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.841,25.427],[-54.685,25.303]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.654,61.707],[4.556031,61.746641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.204,54.754],[7.216188,54.630812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.587375,39.788063],[7.709,39.782],[7.748,39.785],[7.803,39.789],[7.966,39.801],[8.095156,39.792156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.527,-35.872],[-100.1,-39.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.488,-6.19],[132.313,-6.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.04975,39.51075],[10.136688,39.241187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.239,3.852],[-90.596,3.313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.018937,62.395094],[20.0285,62.5145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.956172,36.944266],[14.10375,36.782]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.636406,39.944312],[12.6,40.1205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.583,-40],[179.593,-40.271]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.509,40.40825],[11.6245,40.3635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.44075,58.222],[9.637625,58.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.321,55.868],[-4.461,55.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.734,41.3],[3.043,41.272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.972,43.33125],[8.910094,43.212531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.674,51.392],[-3.835875,51.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.532,-23.506],[173.054,-26.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.3285,42.898],[8.376188,43.007688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.075,22.199],[-135,25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.626,50.969],[156.90225,50.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.58675,55.142],[12.642477,55.288227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.153813,55.639187],[16.072,55.571188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.32975,42.50075],[14.447828,42.400266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.584,-18.62],[153.643,-16.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.8145,35.9215],[-11.713,36.11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-40],[-25,-40.107],[-30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.59975,30.13275],[-72.81,30.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.10025,40.5655],[10.842,40.697125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.8,44.1],[-5.958,44.088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,17.845],[-121.888,18.212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,-50],[115.112,-45.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.042,2.553],[-27.268,2.358]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.8,26.3],[-78.145,25.595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.147,49.969],[141.224,50.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.80225,43.353813],[9.704461,43.254555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.473,66.329],[-22.266,66.514],[-23.147,66.434],[-23.239,66.36725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.17725,58.648125],[20.31225,58.564063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.159,43.236],[4.057,43.264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.105906,53.503531],[5.9165,53.6335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.255,-24.09],[-74.658,-24.543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.8975,22.731],[-89.8,22.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.105,-39.958],[-50,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.588,-32.297],[-49.913,-32.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.052,48.628],[-6.865,48.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.562,40.648],[2.44575,40.680125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.114,34.748],[25.236,34.693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.046,58.802],[-6.0265,58.6295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,13.366],[-26.203,17.297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.369375,58.096125],[4.6255,58.0665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.127125,53.823289],[6.74775,53.742875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.7485,36.95025],[23.707875,37.04275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.72475,62.21775],[20.861,62.06975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.887,50.254],[-11.67,50.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.1835,42.4935],[5.18525,42.3465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70,30],[-69.3575,30.257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.197,25.601],[55.103,25.538]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.3585,37.255],[13.18675,37.21475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.829,29.073],[32.576,29.682]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.559,-17.795],[0,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.045219,58.080312],[11.054781,58.192828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.666,56.698],[-178,58]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.283234,43.576547],[15.422688,43.642125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.696297,37.756797],[25.464344,37.906844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.41,-9.488],[159.4,-10.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.073063,50.13225],[-1.170828,49.970023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.168,43.147],[-10.29,42.797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94,6.7],[94.681,8.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.00075,54.44225],[4.744125,54.05025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.091,33.163],[-28.852,31.248]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.179926,34.677434],[33.422,34.519]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.332625,39.917344],[23.4695,39.878]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.9205,26.21525],[-91.672,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.811,34.004],[-8.834,34.152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.382375,40.479094],[25.465375,40.399875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,0],[133.284,3.327]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,-50],[-63.103,-53.008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.665,37.52825],[24.7825,37.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.037,30.94525],[-73.086,30.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.919633,42.400891],[10.732531,42.291219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.137125,53.032375],[1.334594,53.020719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.215,50],[-153.455,48.951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.4255,58.022125],[10.22775,58.01625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.879,36.896],[-11.6465,37.06575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79,23],[-79.634,23.534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.55,65.4755],[-13.661,65.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.05,53.315],[4.83625,53.406227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.143625,36.10675],[25.0875,36.002125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.98675,65.00225],[22.301,65.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.686,53.954875],[-3.575438,53.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.366,30.149],[122.678,30.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.531,39.168125],[19.8385,38.7775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.0065,-20.694],[64.733,-14.902]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.826,57.239],[-0.5,57.124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.859328,59.813906],[24.93675,59.990781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.683,59.898],[3.621,60.113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.179719,41.137687],[13.0215,41.1655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.239,38.327],[-26.425,37.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.948438,57.816688],[18.0965,57.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.932937,43.948188],[13.03075,44.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.474,65.093],[-13.524,64.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.1815,66.09125],[-21.006,66.134]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.96525,36.4775],[24.006125,36.64475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.635,38.93],[121.635,38.944],[121.9535,38.697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.690062,41.219469],[9.804312,41.211062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.063,42.368],[132.204,42.159]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.324,49.721],[151.068,47.08],[146,43.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.377,20.568],[-157.97,21.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.8,5.7],[127,8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.15525,41.04325],[2.514625,41.004563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.099742,63.466625],[9.9525,63.4815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.07,41.299],[4.366,41.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.738125,58.169813],[8.672,58.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.578875,49.9645],[-1.170828,49.970023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.71775,39],[24.69525,39.105125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,30],[141.104,31.201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.999,-27.855],[-130,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.51843,54.966344],[18.360813,55.012187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.911,5.508],[-89.239,3.852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.14,22.908],[65.726,22.571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.633,50.654],[5.644,50.667],[5.917,51.168],[5.9635,51.20325],[6.165,51.508],[5.5415,51.812],[5.2665,51.721],[4.8475,51.683],[4.65,51.717]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.699,-12.457],[172.789,-13.552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.6465,37.06575],[-11.071,36.999]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.235687,36.193938],[14.369687,36.318625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.209514,55.058687],[10.320359,54.993281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.899,19.75],[-68.407,20.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.53875,41.25775],[2.734,41.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.667,54.1465],[1.4165,54.092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.859523,51.49709],[1.112977,51.465672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.396,-4.615],[-135.762,-4.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.140406,50.548437],[-1.199516,50.392453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.04175,37.889],[16.158,37.8895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.8085,38.3535],[-9.723,38.413]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.38,54.507],[14.656,54.597]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.14775,58.519188],[11.223039,58.342094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.455,48.951],[-151.59,48.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.273,42.9375],[5.36925,42.73625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.357,-37.766],[150.443,-37.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.486187,36.420883],[24.534312,36.54225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.96,49.5905],[-3.211875,49.594375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-3.107],[-130,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.075,37.5635],[10.193,37.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.56275,58.10175],[19.661375,58.28575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.092406,54.189844],[14.165,54.0585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.565,41.125],[-28.585,41.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.39,41.409],[36.392,41.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.714,57.357],[16.663625,57.26975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.604,40.708],[11.3425,41.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.569625,65.921875],[-20.5945,66.034]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.8,5.7],[126.011,5.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.213156,54.943031],[7.94991,55.082172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.341164,45.222477],[14.29,45.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.028,-35.201],[-155.338,-35.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.794375,64.834375],[22.973937,64.72425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.080938,49.982313],[1.323875,50.06775],[1.22425,50.18675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.9225,42.523],[17.781031,42.435031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.001,41.408],[-130.001,41.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.556373,50.14482],[-3.415,50.202875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.12565,63.708815],[-22.391375,63.806125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.051312,49.472781],[-5.02025,49.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.556,38.667],[-140.001,37.671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.9125,38.4885],[0.41,38.1855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.46975,58.725672],[21.467,58.546],[21.46775,58.38925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.001,41.313],[-150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.089,-36.227],[-165,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.28918,37.929301],[23.062906,37.908219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.70175,37.131],[-69.9255,36.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.711344,59.493687],[4.68925,59.339125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.358,36.408],[27.394,36.29525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.2,-7.25],[113,-7.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.6,24.3],[65.726,22.571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.405313,55.742437],[10.476965,55.890152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.974,55.629],[-5.809,55.7815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.916,-54.765],[-67.019,-56.066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.72275,58.498],[4.802,58.7745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.330125,64.11925],[-22.517875,64.131812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.584,6.26],[116.845,7.123],[117.363,7.144],[120.05,8.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.917,35.4],[-74.793,35.509]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.002,-34.691],[10.002,-33.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.908,16.961],[-76.5905,15.75075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.66,-14.828],[58.0065,-20.694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.8495,57.318],[19.735969,57.3235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.4,54.4],[14.6365,54.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.967812,50.461156],[0.982,50.608625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.099,27.582],[-79.3215,27.4185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.5255,36.249],[23.432738,36.097727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.310188,54.656656],[-0.211,54.574]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.115,55.834],[7.024344,55.9795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.8365,39.399],[9.7155,39.2355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.390594,58.622781],[17.498,58.46775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.73825,41.006188],[11.76,40.893],[11.795,40.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147,-4.8],[144.73,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.581445,37.077711],[12.438375,36.958625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.2935,55.46],[-6.1,55.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.523,-37.714],[55,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.616172,47.031484],[-2.713891,46.962469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.878,-9.694],[137.148,-9.738]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.173445,42.647398],[10.014422,42.730695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.649125,36.286375],[15.79,36.308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.942,33.889],[23.299,34.061]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[83.979,11.557],[84.777,11.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.4315,61.0545],[1.928,61.288]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.368313,54.725875],[15.428125,54.877531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.669117,38.353867],[15.5435,38.32275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.265625,37.78325],[12.341563,37.663094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.943312,52.126937],[-7.03975,51.93075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.299,34.061],[22.628,34.242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.282656,55.106125],[15.482688,55.224187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.192,55.154],[-131.162,54.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.075,4.407],[166.323,0.534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.869,36.362],[-9.163937,36.269188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.0585,56.0545],[-2.933,56.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,40],[-130.346,39.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.623125,39.099625],[26.786,38.898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.604,48.324875],[-4.4535,48.3755],[-4.273,48.443]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.565992,43.739602],[15.675179,43.535677]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.365844,54.531406],[16.30375,54.65925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.453,56.8535],[18.603562,56.827281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.701,66.979],[9.477,67.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,0],[80.694,2.156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.646,41.87],[10.826625,41.830687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.563125,46.766312],[-2.714125,46.733063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.286,44.877],[-154.651,44.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.269633,38.625922],[24.329437,38.774031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.402055,43.614492],[-8.520125,43.51675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.15725,49.684],[-7.4905,49.7065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-20],[-165.186,-15.188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.347812,37.55925],[10.451,36.87975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.028,28.116],[-87.795,28.122]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.7485,69.081125],[16.6055,69.3495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.61625,51.50225],[0.752,51.459]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.881109,44.035281],[8.938125,43.935781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.493,58.234],[21.529875,57.969375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.890875,61.60175],[4.654,61.707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.554156,42.821313],[15.663,42.937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.069625,60.563875],[19.1205,60.433625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.716,35.924],[-2.68,36.0415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.655,35.31],[27.775,35.329]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.466,28.224],[-74.109,28.366]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.519,41.988],[-70.339,42.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.956,34.003],[35.09,34.111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.81925,58.022875],[-5.91,57.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.8925,66.486],[-16.169125,66.565125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.752187,48.922906],[-5.55925,48.805484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.40425,51.55325],[3.605855,51.41868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.875656,56.348],[11.9955,56.304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.79325,32.43325],[-60.001,31.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.620094,66.146922],[-18.627,66.291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.649,38.7205],[24.66125,38.470312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.788,34.522],[32.924,34.489]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.24507,57.844516],[11.07675,57.820687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.018,22.14],[-54.915,25.197]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.767422,39.177766],[23.85375,39.1165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.43557,44.48393],[14.334934,44.560594]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-70.875,-53.761],[-70.57,-52.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.679906,43.340594],[8.800363,43.646438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.321,-4.135],[125.23,-4.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.426,55.215],[13.618891,55.258641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.929,56.152],[5.127,56.182]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.942545,37.437957],[25.871895,37.599242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.382188,57.299813],[-1.470125,57.394125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.05225,38.1465],[-8.9695,38.009]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.845,54.903],[17.802795,54.899248]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.559313,58.235813],[20.366437,58.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.436063,57.685312],[6.984023,57.868031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.485,54.465],[14.38,54.507]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.636406,39.944312],[12.4675,40.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.289055,59.876461],[23.257469,59.677742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.120004,55.848078],[15.834,55.801004]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.14949,18.992057],[-79.556,19.775],[-80.425,20.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.425,20.069],[-78.14949,18.992057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.5905,15.75075],[-77.656,13.9785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.283,-15.463],[-77,-13.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.824375,57.880875],[17.948438,57.816688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.685,25.303],[-51.302,22.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.499,45.798],[-2.365,45.324]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.80375,42.980375],[8.6115,43.0815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.726,59.907],[26.68725,60.00425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147,-10],[150,-12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.3605,35.9945],[28.952,36.2245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.426,39.419],[-139.61,39.8795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.643461,43.293953],[15.479484,43.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.852,65.822],[-24.034969,65.871219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.704,48.149],[-5.55525,48.37175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.566375,55.043687],[-5.833563,55.30441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.46775,58.38925],[21.493,58.234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.464344,37.906844],[25.676539,37.887812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.179719,41.137687],[13.145797,41.031211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,-50],[135.102,-45.393]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.823125,51.924625],[-6.883625,52.02475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.1945,41.991875],[8.218,41.7215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.1125,42.07025],[16.210625,42.20618]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.411,58.457],[-158.741,57.932]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.987,45.914],[-8.059,45.818]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.494,37.254],[18.6,37.233],[18.687,37.214],[18.84,37.179],[18.892,37.167],[18.96,37.151],[19.07,37.126],[19.302,37.074],[19.85,36.949],[19.947,36.927],[20.06,36.901],[20.286,36.85],[20.31,36.844],[20.55,36.79],[20.688,36.758],[20.6925,36.747]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.549,-17.288],[-145.715,-14.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.38925,54.913375],[18.360813,55.012187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.173,9.696],[88,13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.342387,35.996514],[14.348312,36.107188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.042,5.145],[114.584,6.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[93.3,14.4],[94.871,15.084]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.7915,69.845],[20.7245,70.6305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.087,54.37],[9.028,54.375],[8.836,54.2565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.447828,42.400266],[14.231,42.466]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.8155,39.07775],[24.878,39.216]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.3405,-0.3245],[122.17,0.001],[120.772,-0.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.8995,55.495625],[15.812328,55.619172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.331,55.054],[142.039,55.181]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.875563,42.049125],[15.703383,42.106164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.607,-4.661],[-105,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.01625,41.074],[9.913,40.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.72375,42.275375],[9.663,42.187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.437125,57.663875],[6.517,57.389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.0485,27.078],[-77.243,27.604]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.511,57.805813],[17.3765,57.602187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.893,56.793],[8.88,56.782],[8.866,56.772],[8.692375,56.6525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.029234,52.6275],[-5.860188,52.41475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.058,53.796],[4.341625,53.804625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.04,43.8005],[29.632,42.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.04275,56.005125],[17.7855,56.029]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.470641,59.506891],[23.265313,59.50125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.376188,43.007688],[8.508516,42.971422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.197,45.616],[-3.5345,45.538]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.071984,38.668828],[26.224,38.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.379,57.785],[21.529875,57.969375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.013937,49.934313],[-4.082875,49.795625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.952,43.867],[35.681,43.181]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.889,-45.404],[-40,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.445227,37.265547],[25.301375,37.367719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.813875,38.304375],[13.926813,38.3505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.356766,51.684719],[-5.192016,51.640203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.972,43.33125],[8.963688,43.633125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.550375,57.671125],[19.48725,57.58975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.802,48.027],[-6.855,47.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.923,5.978],[-24.595,4.649]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.435,28.425],[-79.688,28.494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.347812,37.55925],[10.5245,37.4895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.35225,58.31825],[10.20925,58.237813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.11925,34.68775],[-7.892,34.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.044937,43.551812],[14.111,43.466]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.694,71.112],[20.396,71.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.863875,57.725],[7.956,57.643]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.8,-5.2],[110.698,-3.598]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.743,61.868],[-6.7205,61.579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.120941,37.270809],[24.168,37.168875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.774,58.338],[-0.642,58.557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.554,56.1665],[5.496,56.053],[5.477,55.93175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.464344,37.906844],[25.364375,38.108953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.822688,38.526875],[-9.8085,38.3535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155,-35.386],[-155.338,-35.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.035,52.40575],[3.175125,52.7395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.9245,51.2465],[3.107648,51.392562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.52325,37.5625],[17.341,37.352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.762,24.561],[-18.669,24.724]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.378,51.314],[-8.705,50.864]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.073,32.487],[143.01,33.272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.449,19.478],[-130,19.557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.036687,49.745063],[0.18675,49.8325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.554813,36.5405],[23.649891,36.446328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.248781,52.253125],[-6.075,52.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,8.458],[159.113,9.132]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.366437,58.093],[20.3985,57.97875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.869266,58.091203],[9.769,58.29175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.7,24.3],[-82.066,24.077]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.001,-31.837],[51.412,-31.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.251,28.013],[-73.052,27.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.895,68.985],[15.53,68.877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.0525,64.1395],[-22.87425,63.90875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.644,30.428],[131.818,30.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.8425,56.068],[6.881906,56.361031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.37,28.716],[-89.244,28.459]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.2575,60.67525],[18.2855,60.514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-50],[-99.98125,-39.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.364,66.27925],[12,66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.8925,52.521],[-5.860188,52.41475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.312703,58.878641],[10.163219,58.972406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.282,55.731],[5.4305,55.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.731,16.4215],[-156.443,18.957],[-156.651,19.782],[-157.108,20.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.108,20.499],[-153.731,16.4215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.498906,49.873219],[-2.458,49.705],[-2.432,49.604]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.9205,31.4715],[-67.507,30.899]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.21575,58.4375],[8.921891,58.37575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.587523,57.231133],[8.402875,57.058125],[8.247984,56.951031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.487,36.379],[-23.8715,36.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.933187,40.113875],[19.069,39.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.698,54.318],[-3.333215,53.965777]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.882,-16.934],[147.059,-17.187],[149.433,-18.747],[153.337,-23.766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.074,38.167],[-9.8735,37.8195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.875344,37.344346],[25.771531,37.319719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.459,36.77175],[13.147625,36.622125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.25,44.501],[-62.184,44.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.797,28.302],[-145.297,28.749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.166625,57.291313],[8.128875,57.01575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.953,39.787],[-9.95,39.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.063,58.755],[11.074625,58.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.459,39.182],[-69.518,39.928]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85.156,14.422],[85.735,15.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.89625,42.18725],[15.013125,42.132625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.4,54.674],[7.4405,54.452125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.773,62.36775],[18.102156,62.571313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.003375,54.852438],[14.151875,54.729875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.311656,41.372172],[9.141687,41.374812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.164125,48.943938],[-3.25225,49.061125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.3935,61.964],[18.1525,61.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.1175,30.3905],[-79.816,29.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.898,-33.151],[-95,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.4,19],[70,18.433]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.028195,59.747914],[19.121,59.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.617,60.9005],[-4.498,61.148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,50],[-30,50.116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.674,38.232],[1.434,38.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.106,-34.464],[2.577,-32.802]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.11375,43.244625],[10.219016,43.358938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.5,37.68725],[-74.491,37.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.557,60.7985],[3.454,60.7385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.532187,36.11375],[28.952,36.2245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.642,66.123],[-19.288,66.271]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.919828,36.942359],[26.06975,36.939312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.787547,54.365617],[13.958,54.373563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.364,29.657],[-169.125,29.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.536,59.001],[19.647,58.923875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.43,57.672],[9.64175,57.707063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.63,7.677],[-29.223,4.359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.708,60.047],[5.54575,60.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.032,33.711],[-77.893,33.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.995,55.156],[6.941,54.965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.648383,54.80768],[-0.416,54.749],[-0.310188,54.656656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.5305,54.831],[12.4745,54.709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.369375,58.096125],[4.216,57.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.357,34.734],[35.522,34.5055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.01575,55.424],[19.206469,55.504406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.723,-34.101],[160.002,-34.562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.074,42.3075],[-9.256,42.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.365,45.324],[-2.3655,44.4945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.295219,57.249313],[17.45,57.0095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.555,39.474],[6.304,39.399]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.40425,42.61],[6.191,42.524]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.963,37.096],[-11.6465,37.06575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.3045,46.242],[-4.7765,47.1735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.627875,54.857813],[19.634,55.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.763016,37.420797],[26.669344,37.348992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.087,39.791],[2.220125,39.832125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.308,26.359],[-74.235,25.469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.785,64.912],[21.6555,64.874125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.193,51.666],[3.297875,51.794812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.589,58.6165],[-1.47375,58.609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.882437,41.374219],[9.955953,41.245672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.391,41.61],[17.225375,41.650625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.703,48.116],[-12.355,48.017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.344,40.035],[-59.44725,39.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.001,40.998],[-40.951,41.016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.035234,49.205703],[-6.129,48.856]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.55325,55.665],[19.37925,55.527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.119,39.256],[1.2575,39.2385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.698,44.061],[-5.751,44.5445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.412,55.7145],[20.271,55.729]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.762,-4.289],[-140,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.105906,53.503531],[6.045344,53.659875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.76325,56.776],[20.062,56.595],[20.151375,56.527625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.052625,58.21275],[20.966,58.115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.763562,43.988937],[14.7825,43.889375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.922406,51.213344],[1.781094,51.149254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.452,53.817],[1.6645,53.90625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.497,56.753],[8.504,56.72],[8.692375,56.6525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.045,10.642],[-83.352,11.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.336,43.8555],[13.1265,43.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.652,27.583],[-85.068,27.086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.485,39.142],[-72.491,38.968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.466,28.224],[-74.42,27.703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.019367,57.973977],[10.922016,57.835414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.645,11.8085],[44.153,12.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.7635,37.2585],[5.416,37.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.824813,55.531312],[7.767188,55.361438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.664375,49.23075],[-5.7535,49.327]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.001,41.313],[-151.313,41.399]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.944375,36.861875],[12.043641,36.978828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.455937,38.751469],[20.355625,38.634625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.054781,58.192828],[10.923344,58.151258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.817,42.497],[38.604,42.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.165,60.359],[20.4725,60.666]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.564,54.726],[5.51,54.866]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.664,46.283],[-2.947,45.804],[-3.261,45.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.3395,57.45825],[7.260312,57.130813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.997,20.042],[136.747,20.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.03325,41.7155],[11.911102,41.74726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.861,-33.413],[10.002,-33.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.141312,37.48075],[15.255,37.490625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.929,36.99],[-70.789,36.836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.148688,57.831875],[20.3985,57.97875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.52825,51.629],[-6.391,51.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.633555,61.056664],[18.868203,60.951344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.291688,39.819742],[8.216,39.421]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.3005,41.716375],[16.240687,41.79975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.934,60.485],[2.683,59.898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.356,35.865],[23.3265,35.767125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.034406,53.331937],[7.341,53.318],[7.385,53.295],[7.3,52.859],[7.268,52.824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.568037,37.037578],[26.394156,37.070969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.9765,39.793],[14.934125,39.529875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-118.248,33.747],[-118.145031,33.559938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.456188,38.359125],[13.334937,38.390125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.565151,55.007522],[14.420875,54.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,0],[49.392,4.97825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105,-25.277],[-100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.3165,30.8885],[123.661,31.313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.5085,21.3435],[-157.639563,21.207063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.32,41.223],[17.525625,41.204813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.31425,36.45525],[14.369687,36.318625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,-25.277],[-118.051,-22.066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.390187,57.797875],[6.5265,57.7595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.041,50.789],[-7.7945,50.366]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.02375,57.04825],[3.997,56.632],[3.9585,56.3915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.852938,60.690344],[4.93,60.539312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-40],[70.002,-36.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.574344,41.261812],[8.408,41.159594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.11,23.954],[-73.88475,21.62225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.5,-20],[-38.328,-21.306]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.67675,36.54525],[34.318,36.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,0],[153.136,-2.703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[89.512,-19.537],[90.038,-19.9015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,9.752],[-81.153,9.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.616437,36.258125],[26.799813,36.065156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.269,58.1505],[23.766937,57.968063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.7465,43.7345],[28.647,43.524]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.575875,55.811],[6.078,56.053]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.8085,57.46],[20.7865,57.316]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.088375,40.11725],[22.92475,40.2505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.950312,59.026313],[10.807,59.011],[10.696469,58.992563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.977,42.752],[14.077,42.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.073,11.438],[110.028,10.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.0795,59.5895],[23.947219,59.497953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.2745,21.14],[-74.44025,21.20575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.4575,37.8095],[-9.479,37.911]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.693,53.569],[9.88,53.5475],[10.502,53.374],[10.676,52.493],[10.397,52.309]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-30],[-165.011,-30.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.392,18.478],[-60.01975,19.973625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.998,-52.185],[-79.996,-54.411]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.30725,42.94575],[10.2275,43.113875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.994187,42.495688],[29.098,42.199]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.150078,38.904078],[8.26625,38.835375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.154875,47.526],[-3.87,47.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.881109,44.035281],[9.1325,44.136844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.6655,35.197],[26.405719,35.342953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.681,41.272],[-11.247,41.869]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.6,-12],[136.8465,-11.7845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.226,31.282],[-73.856,31.169]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.019,38.552],[17.205938,38.69625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.13,64.176],[22.43,64.018]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.4885,54.398],[15.34625,54.40375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.871,64.59275],[23.7305,64.671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.528,-9.0925],[125.444,-8.0255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.509,57.7525],[8.353188,57.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.482,1.341],[104.478,1.442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.625875,44.79225],[14.738992,44.657469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.1435,60.4675],[27.034,60.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.3,33.277],[19.488,34.2305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.4095,28.881],[-92.321,29.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.86775,41.4815],[19.074,41.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.284,48.231],[-15.042,47.762]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.9605,29.97825],[-18.802,29.691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.697,57.795],[5.662,57.993]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.934781,48.869406],[-3.966625,48.740125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.06075,46.19725],[-124.9925,45.628]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.042,47.762],[-16.235,47.649]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.771062,57.953812],[9.061625,57.933375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.6575,43.849969],[14.555813,43.693922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,25.277],[-133.351,26.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.396,-32.831],[-35.329,-35.079]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.843312,59.674188],[24.861375,59.5605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.639563,21.207063],[-159.904,29.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.8305,58.8805],[-5.642,58.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.502,22.844],[-86.805,22.311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.334594,53.020719],[1.580313,52.89825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.236531,41.044938],[1.432,40.712]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.753,41.397],[-170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.079594,41.96375],[16.213461,41.962656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,5.057],[-38.995,1.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.58375,54.626375],[12.799844,54.771531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.574,21.858],[-74.2745,21.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.4,13],[103.12,10.2195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.22575,59.944875],[5.031062,59.847594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.828,48.899],[-50.001,48.263]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.761602,50.050055],[-5.892477,50.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.492036,58.225111],[21.475,58.068]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.879,56.843],[20.976,56.941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.59125,17.2995],[-67.079,16.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.423,38.83525],[25.468312,39.035625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.806,-12.935],[-25,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.6315,-51.4805],[-51.887,-52.201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.7565,70.0365],[17.565,70.589]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.08025,58.53325],[17.22825,58.537625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.2685,50.308875],[1.542,50.701],[1.467785,50.749156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.07,40.452],[139.4,41.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.023375,56.841187],[7.868266,56.714313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.428125,54.877531],[15.29175,54.825688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.154062,56.9635],[19.411875,57.094813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.670652,58.591402],[10.689438,58.726094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.027188,56.479687],[11.875656,56.348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.024,-25.299],[4.581,-25.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-8.92],[-100,-0.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.835,24.234],[-91.622,24.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.992,35.874],[34.802,35.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.227781,60.117844],[25.455875,60.225313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.058375,59.618047],[20.167375,59.504625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.541,46.3545],[-1.67225,46.22275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.724,17.293],[-62.643,17.187],[-62.60375,17.271]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.129,40.4825],[-9.1845,40.39125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.451637,38.456365],[15.669117,38.353867]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.220125,39.832125],[2.196,39.618]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.073063,50.13225],[-0.903,50.18],[-0.726344,50.178594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.456,26.456],[56.27,26.402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.001,-52.4],[-65.997,-48.817]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.15375,62.46775],[20.157,62.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.961,44.322],[15.010719,44.154125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.641,39.408],[-30.834,39.231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.275812,48.1095],[-5.385,48.321]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.356312,37.115141],[-9.300937,36.831469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.001219,58.291938],[11.054781,58.192828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.115,24.118],[-170.001,25.433]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.488188,42.670313],[15.629129,42.695691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.813,71.412],[-153.9565,71.984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.729125,43.4265],[-8.94,43.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.751,58.8205],[-2.588156,58.875719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.1475,22.9585],[-88.45,23.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.371875,37.2265],[21.3035,37.0535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.468,23.178],[-86.682,23.109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.613,63.693],[-161.946,63.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.002,42.707],[-40.002,46.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.131688,38.157562],[24.089906,37.972094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.082,61.049],[18.158125,61.129375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.952,39.9885],[19.069,39.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.132,36.3525],[24.0305,36.377]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.959,71.212],[-60.843,72.91],[-65.772,74.652]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.946219,55.885438],[14.818531,55.748875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.554,60.097],[23.543,60.087],[23.397,59.962],[23.289055,59.876461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.258234,55.887234],[15.158875,55.7545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.52,56.471],[-6.349,56.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.1505,38.4395],[15.188937,38.332734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.719,43.82],[13.795063,43.735625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.113,55.831],[16.974375,55.829125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.1,13],[121.429,11.4945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.62,56.504],[3.459,56.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.583625,50.356625],[-1.801687,50.291313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.128,42.647],[5.1835,42.4935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.34925,36.871625],[13.5745,36.8305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.484187,57.39625],[7.624656,57.279063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.475469,58.164906],[8.330156,58.098406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50.54],[-20.001,50.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.333,31.65],[-11.786,31.734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.568,34.586],[-13.1205,34.6645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.836469,35.917547],[-6.283,36.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.142,40.474],[18.996125,40.46475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.452,70.3295],[21.604,70.367],[22.215,70.443]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.056,16.585],[-58.392,18.478]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.527,13.927],[-23,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.67,50.346],[-11.239,50.819]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.021,48.888],[-2.137031,48.747781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.61725,37.91525],[10.347812,37.55925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.074625,58.621],[11.14775,58.519188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.583875,39.728437],[4.889,39.853],[4.9885,39.896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.7015,41.465],[12.001,41.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.69525,39.105125],[24.618437,39.248312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.134,74.25],[-88.985,74.388]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.591125,37.244969],[23.73993,37.28957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.51425,67.90525],[14.519,67.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.236,34.693],[25.333,34.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.360563,54.301414],[8.265,54.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.167,43.214],[35.635,43.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.271,52.303],[2.518,52.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.405,-11.475],[-130.876,-12.079]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.2825,55.17125],[13.37375,55.03225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.620699,58.013418],[18.5845,58.22875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.644,21.08],[136.862,20.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.756,-10.48],[142.133,-10.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.528937,44.994906],[12.711844,45.123281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.9705,57.9135],[20.90675,57.777]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.4015,39.074438],[24.425875,38.922625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.326813,57.37825],[17.326656,57.498406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.03,77.606],[9.175,74.468]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.502,30.713],[-78.336,30.358]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.8605,28.702375],[-16.0945,28.55275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.48,57.638],[4.526,57.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.584375,36.044],[24.82575,36.01725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.643,-16.635],[156.507,-18.151]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.403,54.62],[19.922,54.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.29,19.855],[-66.4395,19.8495]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-71.104,-53.9445],[-70.946,-54.081]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.729,39.0915],[7.903,38.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,40],[-30,40.531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.9175,62.0295],[17.731125,62.23775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.06775,36.97475],[2.495,36.948]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.677,50.785],[156.249,51.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.66375,53.405641],[4.69025,53.571062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.92725,41.702375],[9.892188,41.504453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.846688,38.314312],[24.66125,38.470312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.36725,40.08575],[24.199188,39.952063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.575,40.157],[13.87375,39.907]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.489227,41.981977],[8.289531,41.935969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.007094,42.077813],[9.913,41.987625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.504,62.74],[-26.15,63.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.00375,35.958875],[-6.209781,35.9375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.807,11.264],[110.202,10.417]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.775,39.24],[5.316,39.103]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.925,48.325],[160.194,48.11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.044125,55.693125],[14.966812,55.530113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.118,39.813],[-69.491938,40.297187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.30375,54.65925],[16.169688,54.784375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.78,37.814],[0.344,37.628]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.651,44.958],[-154.335,44.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.841,-10.007],[159.4,-10.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.2745,21.14],[-74.1065,21.0735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.8635,39.2805],[17.691375,39.0805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.326656,57.498406],[17.226156,57.496313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.352422,55.020484],[-1.319094,54.884594],[-1.197555,54.799437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.948812,43.112],[15.078563,42.92925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.4075,58.2605],[6.26275,58.30375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.166,12.479],[-110,12.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.899906,38.140844],[25.797738,38.21166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.088,38.421],[19.7915,38.6235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.8395,36.3455],[-73.824,36.671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.109,28.366],[-74.07,27.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.656,-3.173],[53.365,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.919,54.957],[7.746,54.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.466,-7.872],[125.444,-8.0255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.304,31.104],[-64.892,30.339]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-12.896],[-10,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.447,54.6175],[-8.635563,54.569938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.062,36.259],[14.050775,36.267631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.1305,42.5335],[3.182,42.726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.877375,43.491312],[9.802719,43.645828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.26,-6.313],[-145,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.208188,41.559531],[12.011,41.602594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.959688,37.590812],[11.006,37.769]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.321,1.34],[-41.713,1.737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.4,65.5385],[23.087,65.461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.2,-13],[140.6,-16.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.4,9.1],[165.673,9.202]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.924,0],[-42.582,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.00175,70.0805],[20.897875,70.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,-35.386],[-120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.4145,54.6625],[16.6175,54.6845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.285625,56.15325],[20.67425,55.83475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.621,-39.358],[-50,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.565,63.0435],[20.4905,62.74475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.72025,36.530187],[26.548821,36.637965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.854,-22.275],[-98.753,-20.017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.577,65.306],[22.428,65.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.052,48.856],[-123.006,48.733]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.289313,39.073],[23.7155,39.0235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.383,25.189],[-18.225,25.348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.3215,-7.153187],[-80.484,-6.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.882,53.699062],[5.716156,53.609313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.41375,55.7645],[18.4745,55.591]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.311906,60.771219],[19.361,60.937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.082,52.199],[2.175375,52.33825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.304063,56.600563],[20.422875,56.409813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.00325,41.54275],[8.221,41.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.764,6.792],[163.864,5.523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.1535,39.455],[19.328,39.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.0045,-27.009],[13.0875,-23.3505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.559,48.187],[-12.355,48.017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.695375,38.0285],[14.10575,38.21125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.8755,-41.8965],[-60.903,-42.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.246422,54.970922],[16.127938,54.944875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.05875,56.04875],[-2.183,56.078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.698,64.485],[21.382,63.9745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.9705,-2.287],[128.236,-1.332]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.23,54.857],[2.893,54.711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6945,59.2625],[5.34725,59.24175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.711,42.261625],[5.6905,42.116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.159,48.819],[-8.812,48.971]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.997,35.186],[-9.518,35.064]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.692,48.563],[-2.666,48.686]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.793297,57.53475],[17.694992,57.363352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.556,-9.023],[176.659,-9.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75,-25.277],[73.945,-24.182]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.6945,60.083188],[24.69075,59.824562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.67,56.492],[-7.792,56.866],[-7.633,57.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.417,22.161],[-86.578,22.223]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.005437,40.542563],[14.043023,40.375594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.671484,54.520078],[11.502969,54.491469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.948,48.857],[-4.771375,48.932875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.859,-18.24],[118.157,-18.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.054,36.918],[1.638,36.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.555,10.547],[-79.929,10.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.271711,41.397918],[17.204,41.325],[17.14475,41.34625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.675188,58.363],[-1.47375,58.609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.002,57.553],[-19.994,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.543,66.011],[-79.126,67.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.254062,56.020437],[11.242563,56.1445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.961,5.792],[70,4.783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.544,40.582],[-31.941,42.073]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.014492,39.010125],[25.961781,38.918188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.121,51.413],[-6.3785,51.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.798,-55.936],[-65.17,-56.0015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.091,25.434],[120,24.634]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.023,36.806],[13.0465,36.943]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.513219,41.580812],[3.335,41.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.5385,43.0485],[16.677316,43.012395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.16425,36.405188],[13.439,36.489]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.733,27.07],[-91.813,26.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.148,-0.519],[72.792,-4.237]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.37375,55.03225],[13.465187,54.965562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.459,39.45],[-25.3,38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.424,37.992],[11.572047,37.841047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.8,13.5],[145.232,13.606]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.245375,58.591437],[10.096687,58.556562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.996,55.314],[6.995,55.156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.9345,54.67425],[12.58375,54.626375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.143,0],[-30,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.141,43.237],[5.027742,43.146727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.36825,65.797],[-20.5945,66.034]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.0195,57.9865],[5.923063,57.919531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.169,53.699],[9.149,53.749],[8.836207,53.856746]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.294469,50.076906],[0.07,50.217125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.703,57.824],[-20.002,57.553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.5845,58.22875],[18.54725,58.390125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.452187,38.042813],[12.330875,38.221688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.903,51.619],[-135.057,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.056781,42.458625],[17.232875,42.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.136656,48.026813],[-4.97325,47.97775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.900937,57.53],[17.095148,57.475766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.486,14.65],[150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.128,42.440875],[28.718538,41.717609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.029,44.155],[36.4,45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.126158,54.943963],[10.033637,55.073915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.939,56.924],[2.143,56.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.763,40.292],[-68.618,39.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.742406,56.692188],[7.669,56.60825],[7.570156,56.535844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.33125,55.374875],[5.324,55.4995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.992,46.22925],[-125.501,48.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.126625,44.375],[12.91975,44.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,10],[-46.847,10.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.159,34.325],[28.075,34.488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.035875,60.996938],[19.984,60.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.224,38.632],[26.188469,38.487539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.713875,49.333188],[-4.739906,49.082062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.956,56.135],[6.881906,56.361031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.954,16.075],[-112.667,17.471]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.188875,40.913562],[12.350625,40.890625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.708125,53.435375],[3.564,53.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.1,5.8],[79.62,6.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.471625,59.77],[26.307,59.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.7155,39.2355],[9.679,39.077]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.753,57.075],[11.598469,57.102031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.454,53.06],[-150.618,52.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.298547,39.434359],[14.437,39.357]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.639578,40.049898],[25.543,39.821]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.787297,57.902203],[18.875133,58.064367]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.655414,56.058281],[10.985047,56.042883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.065,53.005],[4.484,53.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.259625,50.568875],[-0.492328,50.412828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.868,-42.084],[156.903,-43.469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.1315,50.585],[0.011582,50.526684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.43925,51.26],[-5.642,51.476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.437941,40.877031],[24.642545,40.820645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.953625,68.253375],[14.686125,68.023125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.705625,63.993281],[22.43,64.018]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.218,35.8535],[-6.607,35.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.47275,65.02225],[22.69025,64.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.749,14.173],[-23.741,10.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.1295,50.296469],[-1.258125,50.281281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.75025,37.608086],[25.871895,37.599242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.3335,38.78825],[26.071984,38.668828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.50325,36.49375],[-6.523844,36.615562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.15425,42.4815],[6.9445,42.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.404,35.853],[34.697,35.8635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.952,43.867],[36.397,44.039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.493,-40.053],[-140,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.861813,37.206406],[26.747031,37.257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.059,45.818],[-8.2565,45.7295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.001,41.297],[-130.834,40.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.001,66.5],[-29.239,63.134]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.031281,59.749813],[23.901535,59.690625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.2955,39.6565],[23.456,39.356]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.912875,51.426563],[1.835754,51.295676]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.544,43.165],[3.6845,43.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.181,-34.101],[14.333,-30.961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.2305,39.437875],[1.8105,39.4265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.835754,51.295676],[1.9885,51.341125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.582,41.595],[8.00325,41.54275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,2.743],[-40,2.174]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.564188,36.107438],[-6.745,36.1025],[-7.378031,36.212187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.419375,54.467625],[-0.231625,54.403687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8,3],[2.5,5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.443031,41.6635],[9.716375,42.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.755,28.024],[-78.932,28.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.8525,69.363],[16.315,69.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.094,42.8075],[17.178562,42.905812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.204125,54.073875],[-3.036375,53.953719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.887375,57.440375],[-6.7045,57.088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.45975,52.27725],[-5.5705,52.5285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.741,41.596],[-70.67,41.491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.9385,36.39],[21.728,36.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.783,12.531],[-79.949,10.461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.669,-38.794],[160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10,-50],[5.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.895,44.9275],[-8.808,45.054],[-8.793,45.074],[-8.706,45.189],[-8.683,45.218],[-8.581,45.351],[-8.432,45.547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.54725,58.390125],[18.45,58.307]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.667,39.105],[18.247,39.29]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.621,60.113],[3.545,59.981]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.15275,36.100203],[27.240258,36.166695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.1365,60.0135],[-1.297,59.803]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,30.272],[-146.104,34.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.9675,37.06725],[13.956172,36.944266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.522625,42.642375],[16.382094,42.727938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.564,4.618],[-149.999,9.999]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.973,41.755],[5.624,41.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.034,60.349],[26.876,60.272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.544219,51.431562],[1.46925,51.608875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[56.17,6.224],[57.133,7.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.298563,39.814875],[19.206,39.90675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.921875,42.861625],[6.077,42.825125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.343,64.56],[11.434,64.456],[11.381,64.47],[11.199,64.501],[11.148,64.524],[10.993,64.611]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.908,29.504],[-19.594,28.239]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.068172,43.096422],[16.201,43.211812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.792,-4.237],[76.599,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.575,40.743],[18.546594,40.587594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.752,51.459],[0.859523,51.49709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.233,39.706],[-11.236,40.079]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.473,57.536],[20.541938,57.3945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.012906,57.797512],[8.922,57.675312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.204,55.6295],[20.083375,55.649687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.137,56.2355],[20.1155,56.3765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.620699,58.013418],[18.875133,58.064367]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.153,39.449313],[0.939312,39.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.61,50.792],[-16.447,50.4765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.706,40.057],[24.876469,40.019656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.431009,43.743467],[-6.452633,43.745885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.671625,51.894875],[-5.835453,51.697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.231,64.859],[10.885,64.6985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.255,37.490625],[15.314602,37.31057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.531,39.168125],[19.4285,39.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.266,51.9815],[-6.943312,52.126937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.539438,56.547812],[-5.406625,56.604875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.292113,36.209797],[23.42825,36.301375],[23.522031,36.380711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.341,37.352],[18.21175,37.191875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.61325,41.319875],[16.622687,41.567281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.089,-19.203],[11,-19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.275,49.938875],[-5.395,49.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.767,60.19],[29.013,60.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.233625,38.927062],[15.420437,38.801219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.9375,55.80975],[18.14,55.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.839,18.403],[-75.269,17.741]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.915,28.17],[-141.797,28.302]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.941,63.722],[21.510375,63.660875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.56,18.744],[-76.545481,18.741766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.901129,37.534844],[23.839531,37.626]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.78425,39.4815],[13.584,39.666],[13.404,39.78525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.1435,60.4675],[27.127,60.493],[27.003,60.466],[26.93675,60.439312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.941,60.806],[19.8455,60.765],[19.744563,60.670875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,0],[-23.961,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.288,15.578],[-63.121,16.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.6285,49.975844],[-1.482875,49.87325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.454,-3.189],[119.1525,-5.892]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.795,41.531],[-64.633,41.223]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.414,36.575],[-0.366,36.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.029,38.876],[11.04975,39.51075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.55,7.306],[-88.911,5.508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.52225,38.9125],[7.525,38.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.438,33.873],[-38.269,31.881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.031281,59.749813],[24.193,59.714188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.722,9.293],[140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.824,19.359],[-24.8185,16.9815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.826,57.042],[5.7845,57.281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.283625,57.9055],[6.390187,57.797875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.516864,57.31915],[11.649736,57.447521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.055,39.596],[-69.241,38.951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.380375,49.082875],[-5.332906,48.881406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.598,-20.05],[-6.153,-17.264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.697,43.835],[-9.411,44.236187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.458,42.148],[-9.609,42.539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.605375,42.797031],[3.472,42.4145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.2375,32.5435],[15.305,32.405],[15.463,32.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-10],[160,-8.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.639,70.972],[20.475,71.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.1775,36.45275],[14.369687,36.318625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.0375,70.631],[32.382,70.504]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.030375,48.788125],[-2.021,48.888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.622687,41.567281],[16.45125,41.823125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.9,34.8],[141.3,35.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.66275,57.729375],[8.545969,57.573281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.01275,19.968875],[-55.65425,20.05575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,15.17],[-124.128,14.351]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.129969,40.136344],[12.636406,39.944312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.168,37.168875],[24.194,37.033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.1135,21.70575],[113.667,19.421]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.905781,35.438344],[-3.787,35.6945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.453,-37.736],[57.523,-37.714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.658359,36.855695],[24.591102,36.976594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.532,37.462],[9.748,37.4685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.33,36.073],[-11.361,36.101]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.563,53.529625],[-4.59975,53.37525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.59675,-34.271125],[14.0045,-27.009]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.716,51.716],[2.809,51.62975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.391,59.375],[23.672,59.498438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.613,47.446],[-6.449,47.6695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.953625,68.253375],[14.823,68.058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-20.75],[163.3435,-23.608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110,-50],[100,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.108875,51.252875],[-3.329,51.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.582,0],[-41.321,1.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.861,-33.413],[7.178,-33.068]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.652875,-23.02875],[167.736,-23.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.212,64.025],[-14.775,64.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.225,44.3275],[29.805,44.188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.922,29.287],[-150.25,30.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.020625,53.732812],[-5.977055,53.391461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.571469,44.039531],[14.519,43.924]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.136,41.9055],[17.312594,41.849781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.937,51.544],[-7.614,51.582]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.212,33.116],[28.074,33.288]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.6,15.2],[-62.056,16.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.605,54.465],[10.544281,54.556969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.67125,38.844],[13.970688,39.329062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.148,48.725],[-12.605,49.32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.4035,29.139],[-94.416,28.907]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.641,36.829],[30.624,36.4315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.249,51.407],[-8.966,51.434]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.3315,55.449875],[18.499625,55.4135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.988,66.807],[32.793,66.863]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-13.081],[-126.699,-16.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.4335,38.5745],[-9.299875,38.631281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.894,-5.6115],[116.8605,-5.729]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.954,56.342],[-1.722,56.369]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.744,38.088],[7.678,37.901]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.94975,37.154],[12.694438,37.352875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.048672,55.312602],[10.941992,55.214016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.33975,46.118],[-1.483437,46.081187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.443,-37.633],[155.201,-36.699]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.622445,-10.108843],[43,-12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.805,44.188],[29.788,44.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.464,32.577],[25.161,33.562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.875,38.365],[-28.182,38.374],[-27.843,38.332]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.376,15.466],[-158.794,15.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.892,42.962],[15.078563,42.92925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.787,-12.916],[-90,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.455,44.103],[-127.753,42.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.766156,38.505625],[15.669117,38.353867]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.10575,38.21125],[13.753,38.1865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.186,61.391],[-53.2,63.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.557457,37.924184],[23.624,37.938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.059,57.215],[-15.209,55.466]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.011,-30.093],[-170,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.834,40.889],[-132.406,40.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.06825,37.381],[15.692875,37.29175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.060996,39.812531],[24.948125,39.674809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.14,-55.241],[-76.303,-55.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.817125,36.06025],[23.73175,35.95725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.742,25.647],[139.999,22.746]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.193891,43.80825],[8.246813,43.923437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.828,39.26875],[14.732,39.306]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.907,57.73575],[17.059,57.6375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.922406,51.213344],[1.9885,51.341125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.098,56.324],[-1.9545,56.176]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.909,55.909],[21.048625,55.733375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.517,57.389],[6.7555,57.38175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.286,69.502],[17.985,69.316],[18.005,69.183],[17.726,69.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.817125,36.06025],[23.580719,36.035313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.4405,54.452125],[7.454469,54.302594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.5675,40.79],[8.10375,40.953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.323,39.059125],[8.361203,39.166469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[86.061,69.459],[85.134,69.77],[84.384,69.586],[82.813,70.125],[82.735,70.216],[83.063,70.435],[83.281,70.933],[83.028,71.204],[83.399,71.657],[81.395,71.955],[80.735,72.272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.14,55.601],[18.2085,55.3965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.98525,-10.1215],[159.717,-10.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.814344,53.521469],[4.947,53.862]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.87875,39.71975],[1.0475,39.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.802,44.843],[-4.614,45.157]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.9975,59.9865],[26.726,59.907]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.121,41.560625],[11.048813,41.719125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.42325,59.60925],[21.601,59.246375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.844188,41.195719],[12.966,40.993],[13.004344,40.877812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.191125,42.334812],[16.210625,42.20618]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.029234,52.6275],[-5.8925,52.521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.252,26.495],[-81.992,26.357],[-81.521,25.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.128,14.351],[-125.642,14.519]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.652,49.887],[-5.76275,49.82525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.978875,51.767437],[1.120984,51.713039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.934,40.3385],[18.689,40.374]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.13,65.412],[24.403438,65.552219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.497,63.584],[-23.0095,63.7755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.668,43.295],[172.638,43.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[99.982,-8.482],[100.02625,-9.99825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.438,-37.635],[107.841,-37.507]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.82,22.608],[135.644,21.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.54375,51.34625],[-6.649,50.751]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.587,34.509],[26.015,34.517]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.443,40.15],[18.996125,40.46475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.694102,42.070801],[11.789,42.092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.225,59.805],[-163.612,59.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.04525,57.22125],[7.987688,57.083188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.334,58.665],[18.5365,58.72875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.53,25.293],[-77.709,25.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.046,58.39],[3.589,58.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.522031,36.380711],[23.367672,36.441352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.484,24.787],[-24.3685,25.8585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.13275,57.338],[23.27125,57.48325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.28632,39.449203],[0.178937,39.403063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.8895,12.045],[-66.833,14.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.347,41.851],[-168.753,41.397]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-97.1,75.07],[-96.416,74.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.642,69.857],[16.2055,69.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,0],[70,4.783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[151.5,-34],[152.723,-34.101]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.807,50.592],[-137.542,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.639578,40.049898],[25.1805,40.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.121,31.234],[-70.762,30.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.873703,39.856859],[19.9585,39.66825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.7915,69.845],[19.279,69.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.706625,54.952625],[-0.878,54.961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.951,40.475],[18.8245,40.5645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.415781,54.933609],[-5.43,55.068375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.328,45.723],[140.475,45.842]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.984,25.881],[-76.618,25.946]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.437125,57.663875],[6.627,57.507],[6.7555,57.38175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.433,28.814],[-89.586,28.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.003,44.262],[-30.001,48.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.392,18.478],[-55.65425,20.05575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.08175,49.885469],[-0.027125,50.029375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.792,57.203],[-134.565,56.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.429,64.402],[-165.64,62.793]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.780949,37.976156],[25.8535,37.8855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.8,-5.2],[107.3,-1.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.636406,39.944312],[12.378,39.8945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.515813,57.624594],[21.448813,57.452945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.831,36.740313],[-1.672187,36.804]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.436687,42.380688],[5.558875,42.49275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.367672,36.441352],[23.554813,36.5405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.701,50.461875],[0.562078,50.371922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.530828,53.493547],[-3.627719,53.392437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.289,30.232],[-85.774,29.838]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.098,42.199],[29.108853,41.49247]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.5635,59.075375],[20.2645,58.8945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.35625,43.219],[8.43,43.148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.988,56.018125],[20.909,55.909]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.443,39.262],[17.844,39.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105,-5.057],[-106.834,-3.208]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.888672,49.878625],[-3.639953,49.750961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.699,51.623],[-5.40275,51.486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.73,1.069],[164.764,4.84],[163.864,5.523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.46375,55.110625],[16.619922,55.17168]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.00175,29.074],[-68.514,27.394]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.447,48.506],[-5.3965,48.123375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.976,35.364],[-140,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.008938,54.843375],[10.854008,54.863625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.315375,38.36275],[25.360312,38.260813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.38425,59.75125],[20.2055,59.76425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.590312,41.846594],[11.4645,41.97425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.789,56.91],[2.984,56.726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.5705,57.875],[9.373,57.90075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.787,59.638],[4.666625,59.755875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.002,34.009],[-50.001,32.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.99925,40.55275],[4.138,40.557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.317875,60.1155],[28.747,60.048]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.027742,43.146727],[5.045574,42.939012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.377,20.568],[-161.866,17.573]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.52225,65.444],[22.780563,65.353563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.825,34.059],[-7.9735,34.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.116375,57.51025],[9.455406,57.531531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.86725,36.909336],[24.815102,36.763]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.799563,56.712313],[18.99475,56.60875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.514125,39.374625],[24.4015,39.074438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.09725,40.44025],[8.0755,40.187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.5765,52.78375],[-5.563,52.68],[-5.5705,52.5285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.68725,40.42225],[24.593125,40.491875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.4545,41.94675],[17.41275,41.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.914,26.459],[53.9805,26.373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.3,61.86],[-166.395,61.607],[-165.934,60.883],[-165.39,60.376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.147,55.764],[0.906,55.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.670652,58.591402],[10.769906,58.507578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.727,45.214],[-5.704,45.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.9545,39.044],[3.07425,39.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.84,14.317],[-135.405,15.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.262,11.985],[110.1,12.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152,57.5],[-151.933,56.963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.435,43.745],[-6.452633,43.745885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.741,10.545],[-25.243,7.811],[-25.923,5.978]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.739,41.6675],[16.984906,41.55782]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.164,20.058],[-120,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.5335,42.158],[10.3245,42.045875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.742,25.647],[143.445,26.271]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.5635,59.075375],[20.6355,58.98025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.420375,59.953031],[24.356008,59.773688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.86825,42.487547],[16.739438,42.443531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.562,51.356],[-3.413312,51.341313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.781844,42.169281],[9.759906,42.419344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.095156,39.792156],[8.291688,39.819742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.822,19.546],[124.687,19.241]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.705,32.59],[124.751,32.442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.11875,54.781],[5.00075,54.44225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.042125,55.0455],[16.2875,55.08225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.082,29.133],[-149.605,29.627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.639563,21.207063],[-158.052,19.384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.477,41.31],[-71.334,41.417],[-71.07825,41.38225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.1,1.1],[174.899,3.437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.890781,50.790844],[0.874273,50.62893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.137,37.131],[0.057,37.5065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.6025,65.2295],[-23.75,65.1835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.10525,54.3485],[14.21975,54.20425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.696,28.133],[-88.766,28.286]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.809,36.103],[25.804125,35.962438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.876,60.272],[26.93675,60.439312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.8975,55.784],[3.988,55.7395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.761812,54.184625],[13.875,54.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.615,63.415],[19.580813,63.26475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.37075,66.083375],[-21.234,65.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.8425,34.943],[28.484,34.728],[28.6855,34.6605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.093,66.593],[-22.99,66.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.5,-35.1],[-56.213,-35.117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.296437,57.999188],[21.409937,57.676063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.618,46.4045],[-2.664,46.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.419094,59.038344],[21.54525,59.088219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.363,-10.027],[-150,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.641,2.983],[119.5,1.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.33,57.095],[4.48,57.638]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.8165,38.165],[21.012969,38.074219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.976,48.337],[-10.559,48.187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.195,39.823],[3.551,39.919]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.876469,40.019656],[24.808875,40.13075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.290563,54.095875],[5.431594,54.11825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.4275,43.6615],[-10.195,43.496]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.463,21.815],[120,22.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.15275,36.100203],[27.072969,36.014047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.557086,54.990539],[15.749422,54.994109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.94375,35.4515],[26.767484,35.322164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.118875,52.629625],[4.223375,52.521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.645,37.878],[1.336,38.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.51225,57.988031],[8.509,57.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.205312,56.75725],[18.140875,56.603187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.0985,70.325],[30.979,70.453],[30.11,70.718],[29.843,70.7535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.406,40.074],[-135.451,40.732]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.832,70.384],[23.025,70.537]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.026969,56.404344],[17.056938,56.292625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.425,37.927],[-25.9265,37.9065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.828469,44.979125],[14.7045,44.886844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.841437,36.615871],[26.723492,36.675875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.903,27.051],[-77.723,26.778]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.303,48.835],[-2.3565,48.98475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.485594,54.052188],[14.5505,54.181]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.9,31.3],[124.49,33.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.854875,46.0455],[-2.0135,46.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0645,56.41325],[8.035,55.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.333,-24.947],[-170,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.0345,38.95],[14.9535,39.087125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.241,7.29],[157.408,7.458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.426,59.304],[20.5635,59.075375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.26125,48.4115],[-6.323187,48.24875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.598,32.096],[-125.794,33.382]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.139,-33.412],[-26.999,-33.263]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.751,-55.431],[-90,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[92.507,-2.543],[95.348,-5.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.09,38.071],[-133.138,37.104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.088035,49.877716],[-4.883437,49.86675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.497555,58.616561],[10.670652,58.591402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.365,43.295],[36.395,43.2535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.043094,57.403391],[8.04525,57.22125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.162,59.794],[2.683,59.898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9015,38.639],[10.2875,38.2405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.7395,48.4325],[-122.376,48.238],[-122.379,47.862]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.109875,58.472375],[20.31225,58.564063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.539,33.433],[13.8,34.426]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.078,44.293],[28.799625,44.006]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.65,57.634],[7.739352,57.566789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.799,27.605],[-96.073,28.188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.377,16.012],[42.022,14.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.806,49.336],[-6.766,49.223]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.06625,42.97975],[13.94275,43.39875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.9895,64.50825],[22.15,64.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.2875,38.2405],[10.3155,38.0295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.90975,44.938],[-4.2795,44.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.854859,44.386266],[13.717453,44.499187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.36725,58.076],[9.463125,57.949875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.56,49.676],[-5.593,49.552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.906547,43.517922],[15.785188,43.467188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.3315,55.449875],[18.336,55.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.004625,44.778375],[-8.81,45.004]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.161125,53.778312],[5.982656,53.751188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.634,53.057],[4.536,52.894]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.268,13.112],[140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.255,25.567],[-79.214,26.341]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.518625,3.509375],[-10,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.68,-9.135],[118.03,-9.266],[121.271,-9.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.2825,61.564],[18.498,61.322],[18.7305,61.341]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.959641,36.079094],[22.749125,36.0505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.071,47.013],[152.199,43.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.006,63.242],[7.791,63.166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.25,-23.3],[-43.167,-22.897]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.601,-15.066],[100.02625,-9.99825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.001,-37.736],[50.001,-31.837]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.792,57.203],[-133.035,57.014],[-132.531,56.612],[-133.221,56.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.33,48.439],[-5.106406,48.123625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.1,12.2],[111.831,16.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.702,56.451],[18.959125,56.402125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.909,-32.534],[9.998,-29.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.288,33.041],[-14.737,31.675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.748,-13.127],[153.803,-11.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.929,55.508],[-5.974,55.629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.635,53.551],[6.769625,53.588031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.395,36.641],[-2.7155,36.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.328,54.513],[-42.928,53.053]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.186,64.774],[24.2125,64.65175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.1415,30.291],[-81.2,30.4],[-80.232,30.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.561,42.279],[16.483844,42.372]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.605,74.632],[19.6625,71.2395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,50],[-59.884,50.047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.90025,40.867087],[17.9385,40.773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.75,65.1835],[-24.425,65.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.612,51.558],[-6.6915,51.6215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.585266,36.680078],[23.697344,36.851469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.562062,37.788625],[-9.6485,37.702]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.484,31.24],[121.581,31.396],[122.342,31.039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-10],[-102.574,-10.019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.874875,64.934438],[-24.017,64.8055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.649,50.751],[-6.5465,50.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.752,65.097],[-23.26175,64.9965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.0375,39.2665],[24.1695,39.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.632219,43.586016],[-5.798937,43.722375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.990063,38.303562],[25.014125,38.51025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.001,43.639],[-18.204,42.496]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.702219,52.418563],[-5.709437,52.145875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.248141,50.527687],[-1.140406,50.548437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.042125,55.0455],[16.0135,55.25525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.25675,49.799],[-7.15725,49.684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.703,-18.3575],[177.7685,-18.776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.179248,40.13094],[17.240875,39.144031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.553,32.7965],[-38.981,31.108]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.994,55.069],[17.766,54.988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.8175,55.761938],[20.909,55.909]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.5665,64.988875],[-23.73,64.9605],[-23.874875,64.934438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.7335,39.40575],[-9.823531,38.982125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.810187,59.548],[23.643375,59.616844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.010438,48.2005],[-4.90925,48.273438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.253,61.409],[20.118,61.178]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.983,45.45],[13.0955,45.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.163,35.96],[14.342387,35.996514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.5795,40.5335],[14.435766,40.569461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.8945,21.5975],[-85.695,21.942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.550547,43.312297],[9.704461,43.254555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.59675,-34.271125],[16.619,-33.274]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132,-8.9],[130,-10.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.4395,19.8495],[-66.3365,19.406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.531,37.119],[-8.556375,36.747]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.806,0.7485],[49.392,4.97825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110,-50],[115.112,-45.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.778,57.666],[21.91875,57.678]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.056781,42.458625],[17.011,42.2895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.369375,58.096125],[4.033,57.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.915,-38.484],[-50.621,-39.358]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.795844,49.741437],[-7.362,49.929]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90.038,-19.9015],[90,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.668,25.785],[123.415,25.571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.052,-16.511],[139.309,-16.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.09,45.655],[145.9725,47.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.131,51.5385],[-6.391,51.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.977313,40.664906],[14.083219,40.662633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.4615,15.6275],[-58.392,18.478]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.436141,36.939063],[15.611,37.170625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.043125,54.133],[10.943109,54.001172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,51.3],[179.8685,44.4765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.002,41.072],[3.5435,40.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.833,57.62],[6.730938,57.987078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.9205,31.4715],[-64.892,30.339]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.75,23.877],[-23.231,20.659]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.7075,34.736],[-9.4725,35.3005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.003,53.607],[-30.004,55.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.534,33.533],[-20.001,33.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.729,67.885],[14.519,67.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.96175,58.00575],[19.103625,58.0825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.248,-21.795],[-159.999,-22.627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.6785,37.505],[2.852,37.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.94,36.957],[1.396,36.939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.797738,38.21166],[25.883766,38.665375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.869,55.048],[6.5465,54.518]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.53,56.665],[17.559,56.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.06075,36.046],[-70.587,34.269]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.618,35.824],[33,35.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.153437,49.54475],[-5.179,49.6595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.177,38.21025],[12.330875,38.221688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.74975,38.2715],[11.71975,38.425125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.476,28.043],[34.352,27.696]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.777375,58.982563],[5.762,58.895],[5.766,58.946],[5.777375,58.982563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.21975,42.249031],[11.405,42.106562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.311656,41.372172],[9.195668,41.28693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.663,35.901],[-4.978875,35.972875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.17,54.124],[1.43,54.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.5075,46.1365],[-4.6385,46.0665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.674,47.052],[-14.378,46.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.48175,51.108812],[-5.926625,51.317281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.667,40.268],[-68.763,40.292]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.938859,57.578352],[10.962883,57.725977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.455,6.509],[-34.426,8.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.083,64.699],[-23.851,64.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.830828,51.997047],[3.52675,51.96125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.9,-27.8],[-46.3,-24.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.3365,19.406],[-66.26575,19.25825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.822,54.584],[1.43,54.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.706,34.842],[26.588,34.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.970297,53.366312],[-5.164,53.342]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.5,5],[3.769,1.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.5205,38.427],[7.514,38.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.381875,52.661125],[2.2465,52.74075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.565992,43.739602],[15.776185,43.685044]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.142359,36.045219],[23.107,35.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,20],[-150.001,15.524]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.787,59.781],[-3.454,59.521],[-2.984,59.426]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.677,50.6645],[-5.48175,51.108812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.47375,48.13525],[-4.598,48.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.715969,55.6495],[14.914,55.669]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.448,-5.607],[-145,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.075,55.507],[4.966,55.058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.298,28.551],[-79.816,29.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.753,39.594],[0.714344,39.443875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.001,48.245],[-150.002,43.636]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.697,42.521],[-154.85,41.633]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-96.416,74.299],[-99.994,74.456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.496,31.37],[-72.306,31.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,35.386],[-137.201,37.417]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.382,27.601],[-84.652,27.583]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.935,30.338],[-76.834,30.041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.064375,36.371125],[22.239594,36.204906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.608156,55.73575],[15.58575,55.59375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.083047,39.066297],[7.903,38.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.520125,43.51675],[-8.673,43.537]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.122,38.384],[9.903,38.129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.375,51.709],[3.297875,51.794812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.763,55.352],[19.774,55.109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.423875,37.7135],[16.539,37.714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.634375,55.140125],[15.588234,55.322172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.418,-9.531],[-161.223,-8.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113,-23.5],[111.184,-24.477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.146,32.995],[127.849,33.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.104,37.474],[27.249,37.229]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.816,-31.816],[169.996,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.344,60.915],[-1.724,61.028]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.248141,50.527687],[-1.199516,50.392453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1595,60.925],[4.2645,60.9155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.137,38.2],[-9.196,38.1005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.988,1.008],[105.046,1.235],[104.74,1.456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.648383,54.80768],[-0.881938,54.76175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.158,37.8895],[16.419,37.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,20],[-179.276,24.253]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.44875,47.672],[-4.606,47.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.6775,63.976],[9.478,63.9105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.454,60.7385],[3.2715,60.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.009,38.621],[9.1295,38.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.055,53.784],[-0.9005,53.6905],[-0.69,53.7015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.513,-40.546],[160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.776,16.377],[-40,13.267]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.0715,58.8095],[18.168,58.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.921,57.165],[5.077,57.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.59334,58.182074],[8.672,58.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.3015,35.8935],[-9.395,35.703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.944,63.571],[-20.769,63.212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.642,51.476],[-5.699,51.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.682,29.883],[48.802,29.937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.112,56.377],[16.147781,56.264937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-40],[55,-40.107],[50,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.78325,49.835938],[-4.781438,49.663469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.120438,42.2],[10.126125,42.04025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.47,33.999],[24.9115,34.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.916,-54.765],[-66.129,-56.014]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.017312,62.650937],[18.244,62.653]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.0295,42.8415],[15.908625,42.902125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.6495,43.041],[3.8595,43.1855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.765,55.484],[19.763,55.352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.551813,60.414812],[0.042,60.499],[0.165687,60.515812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.84,28.3385],[-15.798,28.316],[-15.558,28.249],[-15.384313,28.145375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.22232,61.4235],[21.172125,61.551312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.68725,35.7515],[-6.826,35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.495,35.625],[27.167,35.406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.859,45.621],[37.602,45.829],[37.619,46.817]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.859,45.621],[37.619,46.817]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.144687,39.117297],[15.008719,39.350563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.264781,36.874156],[12.14775,36.9025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-174.456,-24.723],[-170,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.783,48.397],[-37.184,47.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.958,59.10825],[22.109,59.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.644594,42.228906],[7.898,41.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.124,0],[-42.924,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.149312,36.059062],[-5.282619,35.947516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.42959,48.744031],[-5.302,48.677]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.032,27.123],[-69.571,26.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.9345,54.67425],[13.04675,54.646]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.941,64.554],[9.12,64.759]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.246,-15.2785],[171.884,-18.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.14,66.412],[-18.01,66.534],[-17.65,66.452],[-17.55075,66.33975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.43,43.148],[8.508516,42.971422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.631,40.43525],[14.539281,40.203156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.17725,34.951813],[24.636,34.76]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.722,39.012],[9.794,39.124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.9745,53.991375],[-5.487,54.261],[-5.340438,54.457469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.477141,44.123984],[13.413,44.412]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.127,36.933],[-122.937,36.595],[-122.007,35.3725],[-121.532,34.577],[-120.884,34.436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.74725,39.38525],[13.78425,39.4815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.658469,54.879063],[15.428125,54.877531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.1525,55.3495],[19.056625,55.026859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.01,7.283],[77.942,7.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.383,70.668],[-126.6705,74.5495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.027188,56.479687],[12.155812,56.310563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.5025,47.67775],[-7.096,47.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.898125,40.631],[24.806004,40.759469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.85,12.26],[-24.527,13.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.329437,38.774031],[24.473312,38.727063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.296,7.347],[67.4,7.308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.945469,59.560281],[4.969,59.316875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.522,-35.635],[134.216,-35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.967,39.275],[0.808375,38.9915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.8385,38.7775],[20.007,38.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.627,-20.025],[-38.328,-21.306]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.246,32.442],[-50,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.062961,37.843938],[20.91925,37.83375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.705,28.7],[34.58575,28.46725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.729875,54.8175],[16.8635,54.828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.495,21.479],[-73.618,20.8825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-10],[-10,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.61125,53.64325],[0.729812,53.586063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.975797,53.878438],[6.995469,54.163219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.5185,37.229094],[13.592,37.111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.179,65.513],[-23.07,65.439]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.601104,41.911591],[8.489227,41.981977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.475,57.061],[10.363563,56.961953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.109,35.903],[-9.131,36.041]]}},{"type":"Feature","properties":{"pass":"corinth"},"geometry":{"type":"LineString","coordinates":[[22.808687,38.070687],[22.914,37.974],[23.062906,37.908219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.4215,38.86525],[-124.329,38.656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.265,59.326],[4.423,59.42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.941992,55.214016],[11.022891,55.124469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.862,38.147],[17.451219,38.898406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.776185,43.685044],[15.675179,43.535677]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.2705,59.967],[26.21475,60.0645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.393,2.599],[126.822,1.742],[126.582,-0.179],[126.688,-0.812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155,25.277],[160,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.355,42.921],[3.45425,43.04375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.778578,52.525672],[1.90425,52.560187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.171,52.348],[-142.434,54.88],[-146.031,59.511]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.9485,53.868],[6.161125,53.778312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.895,58.016],[20.9705,57.9135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.79775,37.625],[-9.689,37.364]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.125719,54.198719],[7.990547,54.009406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.894,40.96],[-34.864,42.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.259,42.027],[135.456,42.238]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.416719,58.424625],[10.35225,58.31825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.9975,46.991],[-5.068,47.123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.628,34.242],[21.469,34.553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.055594,43.343344],[-10.168,43.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.638969,36.126844],[25.41275,36.003187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.78,43.083625],[14.948812,43.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.218,55.147],[-0.001,55.0165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.675,38.824],[6.278,38.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.788,44.085],[30.142,44.0915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.05075,36.79025],[22.136,36.5255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.036,34.471],[23.821,34.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.93775,54.2815],[-3.747813,54.142844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.901,60.737],[2.436,60.496],[2.934,60.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.346,60.0775],[26.413812,60.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.575438,53.967],[-3.747813,54.142844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.69,10.788],[-110,12.449]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.028,57.874],[23.967,57.793]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.554063,38.455859],[25.497687,38.230871]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.301,-10.024],[162.648,-10.092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.164453,55.329266],[13.3815,55.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.7,65.318],[23.791,65.202]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.162,59.794],[2.6205,59.586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.506,35.609],[23.59075,35.67975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.848,43.58175],[-9.175,43.679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.831,29.681],[-15.1645,28.827]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.889375,59.896],[4.82775,59.78625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.741,31.439],[32.39,31.728]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.01125,40.086],[13.944,40.166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.8,-29.6],[-72,-33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.868,28.698],[-73.712,28.524]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.969,59.316875],[4.8015,59.343]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.15,-25.135],[-126.498,-23.712]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.5465,59.56225],[26.473,59.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.306,27.483],[-63.095,28.362]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.921891,58.37575],[9.032875,58.401687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.002,57.289],[-38.197,58.266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.001008,54.403805],[10.963938,54.581]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.9385,40.773],[18.034406,40.711969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.050775,36.267631],[13.563375,36.461875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.362,54.4985],[-166.802,54.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.654,53.7245],[2.133,53.5055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.195,57.938],[0.816,57.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.091,33.163],[-21.534,33.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.001,33.632],[-43.145,33.419]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.382,70.504],[32.6785,70.542]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.83575,55.258875],[10.941992,55.214016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.131,68.952],[16.8735,68.8745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.275,49.938875],[-5.088035,49.877716]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.686,25.864],[-82.04,24.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.584281,51.740625],[2.628,51.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.73,-22.113],[13.64,-27.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-20],[-3.598,-20.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.388719,42.002531],[16.213461,41.962656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.314,11.265],[-70.309,11.676],[-70.0755,12.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.923,38.818875],[14.915859,38.930516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6905,42.116],[5.38,41.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.378,51.314],[-9.51875,51.3205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.163,-36.158],[36.391,-33.924]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.426,60.948],[-63.373,61.046]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.76475,63.2915],[20.906,63.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.335,44.364],[30.225,44.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.848594,54.805672],[16.12575,54.61325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.090375,57.911875],[8.2545,58.0265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.290437,50.252063],[-4.463375,50.21625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.246875,41.291],[32.793,42.906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.019,39.227],[136.259,42.027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.695875,57.140875],[17.45,57.0095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.8975,22.731],[-86.573,22.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,25.277],[-128.612,28.689]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.1295,50.296469],[-1.252438,50.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.507,46.143],[153.969,46.591]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.304,-16.456],[-160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.725,35.664],[-68.416,34.223]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.737,-20.376],[104.601,-15.066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.676,-4.125],[-85.267,-4.789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.979,8.505],[165.673,9.202]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.850938,37.541313],[10.683625,37.49325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,10],[-32.762,7.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.997,-53.308],[-86.45,-53.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.607,45.27],[-5.727,45.214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.87075,37.3775],[13.0505,37.27225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.94991,55.082172],[8.01425,54.88775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.001,42.412],[-150.001,41.313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.833117,51.853805],[2.015,51.866]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.723,22.081],[120,22.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.019,26.967],[-76.514,26.476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.2855,60.514],[18.783,60.342]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,20.694],[-169.519,20.509]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.236,37.956],[16.158,37.8895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.081,65.757],[-20.9795,65.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.137,51.415],[-5.1365,51.54375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.932,28.195],[-79.3215,27.4185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.8315,41.2835],[6.026,41.298]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.642,66.123],[-19.667,66.303]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.885,42.957],[14.06625,42.97975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.227,57.414],[5.697,57.795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.712,17.954],[-78.14949,18.992057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.497555,58.616561],[10.3835,58.552125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.078563,42.92925],[15.205,42.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.935922,43.688109],[-5.958,44.088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.888,48.057],[-15.984,48.282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.125,29.4],[-170,29.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.54675,42.515875],[17.187687,42.506812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.14425,56.12275],[16.202781,55.981562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.509,57.7525],[8.7505,57.8335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.993,38.698],[-26.9,38.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.221,36.57025],[-8.21,36.323]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.16417,37.260051],[25.201125,37.355313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.22275,48.4845],[-7.159,48.819]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.423,-3.254],[5.578,-3.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.99275,39.06625],[19.862,38.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.727,57.158],[7.827,57.062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.69625,67.809],[9.933,67.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.329,11.897],[110.37,12.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.821148,36.500563],[26.947301,36.533693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.158938,58.655438],[10.245375,58.591437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.713875,49.333188],[-4.531297,49.444938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.292,10.706],[96.404,14.151]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.650844,39.329031],[23.574938,39.23257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.851,-29.331],[61.107,-28.954]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.587,4.819],[123.655,4.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.0245,1.169],[173.867,2.151],[173.278,4.027],[172.343,5.152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.916953,37.131188],[23.831051,37.19384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.566375,55.043687],[-5.43,55.068375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.113,55.831],[17.29425,55.553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.888,-45.403],[-170,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.573,50.507],[-5.74875,50.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.544,43.165],[3.608,43.282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.68325,38.161],[-9.569,38.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.527,35.048],[27.746,35.132]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.346,11.736],[-50.001,13.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.732,54.1965],[-168.938,53.76],[-171.878,53.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.3,-4.6],[60,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.188875,40.913562],[12.0855,40.8505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.85675,54.66875],[-9.302,54.721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.38975,58.9105],[23.382625,58.650625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.4465,55.463],[6.356,55.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.846,52.94],[2.852,52.832]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.766,-37.447],[26.107,-34.543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.57,59.807875],[24.505937,59.709625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.7605,52.923],[-5.8465,52.78125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.0195,40.792],[24.898125,40.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.165969,43.406406],[8.963688,43.633125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.043375,41.15575],[17.219,41.182]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.04,57.653],[8.9415,57.48925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.484375,37.986],[15.429813,37.774375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.0665,36.591],[-1.9535,36.561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.756,57.225],[11.901625,57.223375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.9,33.75],[130.639,34.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.136,36.5255],[22.192445,36.411152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.24675,58.373],[-0.774,58.338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.9535,39.087125],[14.915859,38.930516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.4435,71.1135],[23.2575,71.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.127375,37.039187],[13.418625,36.985625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,40],[-130,39.609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.755,44.017],[-9.411,44.236187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.40425,35.775],[14.224,35.846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-9.68],[69.842,-9.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.23175,56.1155],[18.417625,56.110875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.558,25.916],[-88.45,23.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.48675,36.039563],[22.7015,35.80725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.959,-4.539],[116.266,-4.077],[117.7265,-3.4845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.6585,58.153],[9.532,58.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.393469,66.001937],[-18.392562,66.210797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.580719,36.035313],[23.73175,35.95725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.850375,44.7345],[13.766,44.668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.056938,56.292625],[17.111125,56.458375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.97,28.7845],[-13.517,28.952],[-13.342,29.015],[-12.911,29.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.974328,58.589453],[9.886453,58.776234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.02025,49.165],[-5.03825,48.98025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.383047,53.934812],[7.2565,53.866125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.8375,52.8025],[2.005,52.8665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.193945,36.375039],[23.032266,36.463187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.986,59.145],[20.915,58.972],[20.836766,58.773047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.569,33.915],[27.297,34.251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.858,36.624],[27.584,36.642],[27.437883,36.621586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.689,37.364],[-9.542,37.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.43557,44.48393],[14.63716,44.425438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.203,39.3115],[15.144687,39.117297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.762,44.284],[-65.54,43.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.109,-45.405],[63.382,-43.612]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88,21],[87.401,19.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.609,32.912],[-122.262,32.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.9265,39.5015],[25.763141,39.488523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.002,43.636],[-152.399,44.459],[-154.286,44.877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.125375,49.736375],[-0.332,49.714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.623,43.1415],[5.731156,43.03925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.695,52.042],[-6.883625,52.02475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.196,38.1005],[-9.05325,37.9965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.917,37.225],[-9.689,37.364]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.291,42.442],[-132.388,42.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.99,25.264],[-73.883,25.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.78825,18.2635],[-65.84175,17.25425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.229907,5.372682],[-11.232,5.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.276,58.682],[-2.247464,58.669113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.873703,39.856859],[19.443,40.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.036,26.089],[128.3,24.9995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.599,29.745],[-74.724,29.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.853,64.509],[9.12,64.759]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.2605,52.213375],[4.422,52.338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.774375,58.54125],[-2.688125,58.72825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.342387,35.996514],[14.456187,36.115125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.42325,59.60925],[21.95,59.279125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.024,36.632],[25.814062,36.692281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.665,54.887],[17.445,54.887]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.892,40.07875],[1.537,39.659]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.6215,37.2355],[7.834,36.948]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.397,45.066],[-10.67,43.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.172625,58.456],[5.031,58.046]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.625,43.832],[8.531,43.771375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.184,44.493],[-63.5,44.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.522031,36.380711],[23.649891,36.446328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.774,14.953],[-163.208,13.491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.881938,54.76175],[-0.9815,54.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.61925,63.4275],[20.71725,63.51225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.233,55.604],[6.19,55.7165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.6,58.71075],[9.429016,58.589813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.541,-18.39],[176.9,-18.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.634,35.463],[-74.793,35.509]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.8425,41.6065],[11.744,41.572]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.346,39.68],[-132.117,40.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[84.194,-14.352],[85,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.732,51.1485],[2.377,51.071]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.3755,55.04625],[8.227922,54.829687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.99,26.0255],[-94.568,26.163]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.2315,28.4795],[-16.173,28.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85,-15.17],[84.281,-15.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.3,54.975],[3.23,54.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.012969,38.074219],[21.16,38.0985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.064625,59.397875],[23.046,59.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.798641,48.058188],[-5.010438,48.2005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.819,48.701],[-4.859375,48.492125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.641,54.82],[5.817,54.9705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.069062,55.492625],[14.966812,55.530113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.7185,45.7765],[-3.937,46.061]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.076625,56.4355],[7.23125,56.554703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.753,22.456],[119.724,22.198]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.767969,40.617031],[13.873,40.482]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.69,53.7015],[-0.559,53.702],[-0.38675,53.709937],[-0.250625,53.695687],[-0.137437,53.632687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.809,51.62975],[2.97075,51.525688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.282656,55.106125],[15.309875,54.976125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.17725,50.509],[-2.024188,50.514437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.133,53.5055],[1.076,53.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,0],[-171.019,1.034]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.559125,44.77125],[13.674945,44.780828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.29475,64.38125],[-14.404,64.3835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.345375,56.9675],[7.4275,56.721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.228313,56.164125],[7.115,55.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.936,38.729],[-9.83275,38.746875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.713,35.992],[33,35.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.002,-35.01],[0.002,-34.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.087625,42.570625],[9.941361,42.586406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.53325,29.310313],[-15.574,29.138]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132,-8.9],[127.45,-8.317]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.798031,37.177859],[25.875344,37.344346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.249,51.407],[-8.719,51.518]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.16,42.968],[5.273,42.9375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.7485,-2.4555],[126.85825,-2.37225],[126.9705,-2.287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.726,50.343],[-5.777,50.2265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.4615,41.7225],[11.516,41.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.565,38.25625],[21.709937,38.299813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.917,50.48],[-5.98425,50.81275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.292,41.483],[12.292844,41.374625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.614,42.7425],[6.49075,42.71425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.632,-36.222],[160.002,-35.757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.3015,35.8935],[-11.877,35.748],[-11.98,35.742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.215,32.995],[-69.903,32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.508516,36.843312],[25.402727,36.842187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.568594,57.987469],[10.443266,57.8495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.573,-25.426],[-124.857,-25.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.768125,36.398812],[26.616437,36.258125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.403,40.002],[2.728,40.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.302,22.551],[-50.001,23.197]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.448,37.497],[2.105,37.214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.645,37.878],[0.78,37.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.663,42.187],[9.716375,42.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.397625,37.981],[8.534,38.121]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.569,40.892],[6.968375,40.64525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.949625,49.013875],[-2.021,48.888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.936625,58.022125],[7.930719,57.919812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.899,19.75],[-69.009,20.803]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.633813,54.423781],[11.799836,54.459984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.6925,54.9265],[-8.85675,54.66875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.505,-7.529],[120.946,-7.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,-60],[-60,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.837,-37.08],[65,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.0135,40.427],[3.126,40.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.535312,36.193156],[24.584375,36.044]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.4465,36.349],[22.192445,36.411152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.4335,35.1125],[30.735563,34.47975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.950375,55.312438],[8.046344,55.201281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.94,52.333],[2.082,52.199]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.591875,1.5175],[104.756,1.622]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.39025,49.289],[-2.302,49.3655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.761812,54.184625],[13.787547,54.365617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.943531,50.01925],[-1.737563,50.055656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.78,43.083625],[15.078563,42.92925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-40],[-15,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90.001,-32.086],[87.384,-32.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,20],[-129.449,19.478]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.814625,37.765],[15.957219,37.721516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.848898,38.534312],[14.684125,38.549875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.6,26.3],[50.981,27.249]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.308,23.23],[-86.468,23.178]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.537,19.987],[-22.851,20.679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.204125,54.073875],[-3.333215,53.965777]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.014125,38.51025],[25.165,38.416]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.5,14.3],[-80.297,12.453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.074,41.375],[19.057,41.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.85575,65.947],[-24.034969,65.871219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.415,71.427],[-159.067,71.066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.233,60.818],[18.2575,60.67525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,40.62],[-50.002,42.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.74175,50.073625],[-3.559766,49.923234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.51,60.993],[17.8325,61.018]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-40],[62.832,-37.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.261,45.701],[-3.519,46.0415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.007,50.4875],[-6.028,50.099875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.426,66.426],[-14.295,66.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.515844,50.214344],[-0.616695,50.238164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.83,-4.788],[11.803,-4.768],[11.891,-5.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.433,39.4515],[19.458,39.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.383,58.611],[-85.156,59.947]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.995,10.936],[45.314,10.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.18925,37.805],[25.141,37.91325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.915,27.9665],[-60.001,26.158]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.631047,44.227828],[8.921125,44.238812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.926,36.251],[16.298,36.383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.691,47.88125],[-8.241,47.716]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.40825,43.841641],[9.302,43.91275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.8285,35.994],[-73.8395,36.3455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.359,-37.563],[42.953,-37.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.319141,50.777234],[-1.289,50.71],[-1.28,50.729],[-1.319141,50.777234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.053,54.245],[-4.182,54.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.0945,9.9615],[-115,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.196,39.618],[2.331437,39.515187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.866,-5.099],[165.404,-5.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.399,34.879],[35.272,34.852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.491938,40.297187],[-70.919,39.109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-118.145031,33.559938],[-118.915,33.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.308344,54.149055],[11.175812,54.2445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.497555,58.616561],[10.416719,58.424625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.441,63.278],[19.34,63.243]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.468,52.49],[-129,52],[-129.506,50.987]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.862258,53.790398],[8.060965,53.768402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.432,28.92],[-84.652,27.583]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.186,1.951],[53.079,3.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.550187,38.285062],[13.564,38.396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.381875,52.661125],[2.5255,52.8755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.766,29.874],[-14.831,29.681]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.739438,42.443531],[16.483844,42.372]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,16.854],[125.7,13.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.138,49.809625],[-1.36875,49.81375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.069,53.58],[4.965219,53.57975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.220656,39.039656],[8.411719,38.901266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.8735,7.208],[-82.86,7.244],[-86.783,8.614]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.26525,-34.819],[-56.5,-35.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.319,59.455],[-135.376,59.266],[-135.028,58.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.487,43.5565],[-3.21575,43.642]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.578789,55.280547],[14.408758,55.256641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.046,37.762],[25.18925,37.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.956,7.141],[-81.8735,7.208]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.367,57.475],[9.231,57.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.279,-34.435],[-58.2,-34.295],[-57.26525,-34.819]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.32575,48.0045],[-5.506,48.0165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.966,15.2035],[-135.84,14.317]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.705844,53.926219],[8.584625,53.929375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.168875,50.49775],[-0.492328,50.412828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.6055,69.3495],[16.551,69.516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.567,55.55],[3.122,55.707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.743,61.868],[-6.568,61.81275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.152625,37.529375],[-12.262,37.129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.2605,56.950063],[20.053812,57.174594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.854,43.743],[38.571,43.888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.747031,37.257],[26.636656,37.207937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.034,58.95],[13.983,58.892],[13.567,58.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.627875,65.098062],[23.6245,64.96375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.1265,43.925],[13.03075,44.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.562125,57.032],[18.326141,56.815695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.25,-39.301],[-57.1,-38.25],[-56.162,-37.124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50],[-20.509,50.531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.802,29.937],[48.3045,29.107]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.772625,54.616875],[14.003375,54.852438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.37975,50.27475],[-1.305,50.367]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.645,25.612],[-40,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.43,38.05],[-71.664,37.778]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.775625,55.49725],[15.688719,55.436031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.01575,55.429375],[7.0985,55.051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.618,55.828],[17.636,55.946188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,17.755],[160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.193,18.05],[167.48325,19.464875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.1325,44.136844],[9.031625,44.250141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.233,34.383],[130.182,34.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.79325,32.43325],[-60,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.434125,61.403375],[21.371938,61.606813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.295,66.63],[-13,66.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.816258,41.956148],[9.781844,42.169281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.294,68.052],[43,69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,-25.277],[-165.333,-24.947]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.1895,36.3565],[18.0255,36.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.937,47.7505],[-3.942,47.592]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.94925,52.9315],[4.2105,53.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.771531,37.319719],[25.5865,37.32325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.267492,55.642883],[15.158875,55.7545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,30],[-122.262,32.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.76375,54.473375],[8.643953,54.449359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.7705,43.336],[14.06625,42.97975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.980125,39.599],[26.056984,39.46143]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.594,2.054],[-89.857,0.723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.1765,37.673],[26.011938,37.647875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.6315,57.2275],[11.516864,57.31915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.53475,61.186359],[17.363469,61.229141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.329156,49.909594],[-4.1355,49.899156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.059,66.171],[12.92525,66.2895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.9265,55.481],[-6.7335,55.47625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.1125,42.07025],[16.087812,42.21875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.551172,50.742578],[-0.575,50.60225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.199188,39.952063],[24.066906,39.810875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.85,32.15],[-19.9605,29.97825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.843063,41.006312],[2.799375,40.86875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.105,-20.708],[173.054,-26.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.783125,59.925],[22.984406,59.798219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.839344,42.003937],[17.011,42.2895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.581359,59.451078],[22.9095,59.5445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.781031,42.435031],[17.54675,42.515875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.362625,54.821125],[12.5305,54.831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.368313,54.725875],[15.4765,54.7095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.3,-23.5],[-39.5,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.5995,59.4905],[26.749,59.573]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.54925,52.57575],[2.74625,52.283687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.732,39.306],[14.797,39.16425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.112,56.377],[16.235,56.354]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.02225,57.6885],[20.094,57.606]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.825,34.059],[-7.1,34.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.814,38.062],[-73.808,39.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.599,29.031],[-94.4035,29.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.53975,39.632812],[24.665125,39.38025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.5495,39.8965],[7.361,40.1335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.45,57.0095],[17.489,56.965],[17.559,56.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.097938,51.588313],[1.112977,51.465672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.922438,50.531938],[-1.954625,50.379375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.888,-45.403],[-140,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.542,39.544],[7.563,39.075875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.224312,36.567625],[-9.1235,36.56425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.445,41.88],[-66.864,42.036]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[151.854,17.789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.830586,43.152195],[9.851766,43.256969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.268,40.596],[27.543,40.838]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.8,-0.9],[-87.763,-0.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.9985,50.19],[-3.74625,50.163313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.1365,2.1595],[155.0055,5.052]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.151125,43.399875],[15.205719,43.223625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.12875,43.70425],[8.963688,43.633125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.399,53.978],[6.297398,53.7685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.707,-11.357],[-130,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[98.87,-8.892],[99.982,-8.482]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.693188,48.387812],[-5.704,48.149]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.924,55.192],[20.58575,55.504]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.238,25.855],[-76.084,25.484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.42225,-46.9955],[-60.205,-48.384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.209,56.274],[4.3455,56.35825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.95,36.054],[15.837,36.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.831,39.0435],[1.401125,38.806063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.966375,49.761313],[-1.138,49.809625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.339,37.967],[-9.351,37.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.028,35.256],[27.409,35.286]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.45,-8.317],[130,-10.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.995469,54.163219],[7.0115,54.309]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.1215,67.6325],[14.181,67.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.620406,42.3635],[9.663,42.187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.923344,58.151258],[11.001219,58.291938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.571469,44.039531],[14.386258,43.984094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,34],[13.1,33.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.312594,41.849781],[17.140937,41.76375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.356812,60.36925],[21.242,60.3765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.985,37.657],[-24.9815,37.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.65875,54.40225],[18.582563,54.497375],[18.766313,54.523844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.808,39.015],[-73.806,39.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.3965,48.123375],[-5.506,48.0165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.166344,43.134563],[5.261875,43.049625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.313125,38.79725],[-27.811,38.839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.409156,42.964031],[5.7585,42.87625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.542,37.14],[-9.6035,37.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.040375,36.44775],[15.124953,36.624328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.391813,37.783563],[12.265625,37.78325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.063,-18.461],[168.025,-18.944]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.04975,39.51075],[10.709,40.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.329,48.103],[-6.565062,47.619125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.082578,36.220953],[24.0305,36.377]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.609,34.523],[25.781,34.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.802625,37.517875],[26.656375,37.4955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.6765,39.785812],[24.5285,39.795219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.748,35.8695],[15.116,33.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.60825,53.644062],[5.503,53.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.513219,59.995],[19.429512,59.82393]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.67825,55.933375],[14.780344,55.927063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.472789,58.105783],[6.560937,57.934938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.9,16.5],[-94.8,15],[-91,13.5],[-88.1,12.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.1755,44.5615],[-9.09325,44.6535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.330375,51.707375],[1.314727,51.915547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.967219,38.05525],[25.0345,38.1545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,4.252],[-130,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.852,52.832],[3.186,52.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.713,52.9865],[4.50025,52.78525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.008,5.628],[0.339,4.383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.153625,54.709937],[15.368313,54.725875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.552,38.801],[-68.792,39.181]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.296,34.725],[-26.236,34.092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.137,38.2],[-9.05225,38.1465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.777094,35.966875],[-8.19725,36.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.624,41.701],[5.6905,42.116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.674312,42.70125],[8.5605,42.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.620625,43.477562],[9.427875,43.411812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.0635,48.824],[-4.40575,48.75875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.66,30.031],[150,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.681,41.272],[-11.2235,40.382]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.91785,42.940591],[4.511,42.528]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.613,41.4505],[2.8495,41.5255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.924,34.489],[33.63275,34.32225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.922,2.927],[97,7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.505,13.767],[-35,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.8755,36.5355],[12.798,36.615],[12.636,36.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.981,49.62],[-5.901,49.39275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.827,43.326],[37.365,43.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.097,-4.96],[-180,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.475,50],[-65.4885,49.7935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.565875,59.18375],[18.009704,58.896689]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,50],[-131.605,48.556]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.429512,59.82393],[19.209125,59.737875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.052,53.487],[-5.41,53.429]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.573,37.681],[-70.929,36.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.001008,54.403805],[10.893,54.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.002094,43.844172],[7.865,43.7255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.997,55.648],[7.0165,55.547187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.157164,43.454414],[10.269317,43.531904]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.973,44.613],[-61.653,44.706]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.695375,38.0285],[13.422781,38.184656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.867,39.077],[-9.929938,38.868688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.378828,37.683078],[26.318219,37.858234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.452,34.691],[27.134,34.896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.729141,38.555117],[25.554063,38.455859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.999,-16.801],[-101.837,-11.929]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.002094,43.844172],[8.193891,43.80825]]}},{"type":"Feature","properties":{"pass":"dover"},"geometry":{"type":"LineString","coordinates":[[1.423472,51.172862],[1.305336,50.890065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.037,30.635],[-76.935,30.338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.997,59.115],[5.068,58.939625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.752,36.68025],[-0.366,36.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.828234,39.089973],[25.825812,39.271125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.754,39.773],[-139.61,39.8795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.884,34.436],[-122.702,37.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.999,62.3385],[19.0105,61.85675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.543859,37.880766],[15.52625,37.5765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.3935,55.03425],[15.557086,54.990539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121,-5.5],[120.671,-3.314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.817594,37.051125],[25.766711,36.886488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.503,36.7755],[24.361391,36.752797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.594,28.239],[-18.805,24.763]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-40],[-115,-40.107],[-120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.068172,43.096422],[16.112625,42.917938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.37825,53.71425],[1.654,53.7245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.390594,58.622781],[17.22825,58.537625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.553,26.902],[34.223,27.333]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.548,53.17875],[-5.511687,53.391188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48,0],[-51.901,5.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.751,38.33],[14.598,38.38475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.7505,57.8335],[8.771062,57.953812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.399707,38.524234],[24.57475,38.23775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.0565,56.138],[11.922625,56.101437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2545,38.467],[14.081,38.376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.941875,51.58575],[-7.614,51.582]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.069625,50.753687],[-0.1315,50.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.43825,36.750375],[26.28375,36.7175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.998203,51.880914],[2.8115,51.8115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.259625,50.568875],[-0.432156,50.575094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.488188,42.670313],[15.598375,42.457594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.01,49.633],[-18.16,49.831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.646,5.857],[-80.413,5.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.382,-21.526],[114.153,-20.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.538,30.4665],[-70.667,30.202]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.48325,19.464875],[167.5865,19.4465],[173.477,14.999]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.847,42.2555],[4.33075,42.59075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.0655,66.252],[-20.746,66.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.614,58.413],[150.314,58.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.014828,51.457344],[2.153977,51.413375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.6925,36.747],[20.899,36.704]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.136,51.934],[-55.653,51.728],[-56.957,51.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.001,31.604],[-38.269,31.881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.9255,36.7475],[-70.217,37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.668891,37.886359],[24.846875,38.019562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-30],[100.001,-28.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.50575,38.57075],[10.6095,38.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.097,53.067],[2.839,53.048]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.671625,51.894875],[-5.56875,51.8795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.727,13.615],[144.879,13.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.737563,50.055656],[-1.672227,50.166836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.349,41.90625],[11.245156,41.879453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.674945,44.780828],[13.583,44.966]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.7275,55.938],[10.819488,55.736742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.798,40.047],[-29.175,39.382]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.3395,41.3125],[-69.25,41.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.519875,43.5275],[-1.8115,43.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.827,57.062],[7.754,56.883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.967,-6.375],[-80.841,-6.527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.119,30.442],[48.887,30.346],[48.93825,30.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.421875,56.718688],[10.5125,56.93825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.657,36.236],[-4.895,36.185],[-5.010063,36.171625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.50625,49.928562],[-5.275,49.938875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,20.51],[-30.001,25.932]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.168,35.381],[-8.342,35.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.843,1.504],[106.313,-0.308],[107.418,-1.256]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.77625,54.59675],[-8.98525,54.511]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.963,45.5505],[-4.129844,45.311562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.713023,42.646078],[16.676,42.577],[16.638875,42.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.09625,37.6275],[0.295,37.989]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.941,63.722],[22.101,63.809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.006891,58.895237],[17.775813,58.775969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.5725,43.9135],[13.6745,43.91925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.365375,35.48075],[-8.175,35.527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.896,58.523],[4.72275,58.498]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.13275,49.067375],[-3.991312,49.086812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.90025,40.867087],[17.870285,40.901733]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-10],[-146.26,-6.313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.045,64.214],[-14.887,64.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.001,41.791],[-28.585,41.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.976,48.959],[-132.692,47.579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.8505,41.296],[8.98125,41.288]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.547,60.072],[6.544,60.103],[6.637,60.327],[6.622,60.44],[6.575,60.443],[6.407,60.389],[6.272,60.333],[6.202,60.277],[6.176,60.254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.737563,50.055656],[-1.84143,50.167727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.57,29.59],[-159.623,29.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.358,29.595],[32.576,29.682]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.49425,36.581375],[-3.5025,36.40275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.5465,50.568],[-7.66,51.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.1365,60.0135],[-1.1415,59.87675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.07275,41.63825],[-10.375,41.251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.21,35.3955],[23.035,34.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.461,27.338],[-76.03,27.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.949969,54.823281],[10.043996,54.757462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.326,41.989],[3.252187,41.795797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.758,73.197],[67.839,73.276]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.448,42.072],[-147.981,42.261]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.165,57.613],[-1.22525,57.38825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.771266,38.382219],[20.8165,38.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.457,36.644],[-70.587,34.269]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.574,30.624],[-42.397,30.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.732531,42.291219],[10.5335,42.158]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.510438,36.217375],[-4.86125,36.14225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.393,37.939],[20.383469,37.928031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.166344,43.134563],[5.027742,43.146727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.097687,39.923344],[23.903,39.868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.280984,54.713938],[-5.211375,54.429625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.507219,56.241031],[6.532,55.9855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.748,-13.80325],[-171.1395,-14.1495],[-170.902,-14.326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.641375,58.169719],[5.780375,58.159937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.013,20.298],[-68.899,19.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.017,44.277],[36.62,44.742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.818,55.0945],[3.878,55.441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.06175,-11.353],[116.725,-9.459]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[93.7125,-13.86],[90.002,-16.097]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.496875,58.794438],[10.670652,58.591402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.233766,57.507234],[11.105902,57.64757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.550938,42.344125],[18.5735,42.233]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.82,59.179],[-168,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.782,44.725],[37.842,44.689],[37.679,44.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.176,61.436],[19.248,61.312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.080938,49.982313],[0.332875,49.78975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.022,35.7675],[27.848,35.717875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-40],[66.651,-43.751]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.282,38.70625],[25.336008,38.551061]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.683,38.4155],[10.024,38.332]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.787,59.781],[-3.64375,59.22475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.28,52.05],[-54.136,51.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.343,-34.178],[16.619,-33.274]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.919,45.67],[-15.482,45.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.012078,56.967609],[8.144266,56.912734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.7045,38.94],[4.1855,38.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.33,64.835],[-13,65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-103.444,-1.851],[-102.927,-2.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.239,50.819],[-10.799,51.302]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.001,32.955],[-50,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-40],[-9.998,-35.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.983,45.45],[12.89,45.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,0],[-2.369,1.108]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.02,-0.273],[66.999,-2.158]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.131,35.45],[-12.995,35.682]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.901875,37.10975],[27.033859,37.086859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.46,-24.812],[-160,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.85275,45.485375],[-6.973,44.937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.436063,57.685312],[7.335,57.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,0],[71.252,-3.717],[71.8235,-5.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.5365,58.72875],[19.017688,58.729125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.10475,45.9665],[-7.98,46.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.422,54.95],[7.4675,54.562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.457,69.574],[-13,66.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.505,64.555],[22.2915,64.378]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.023062,60.089125],[-0.933,60.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.1,27.723],[-77.011,27.798]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.284,33.027],[28.212,33.116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.838,-53.311],[-39.997,-53.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.984,60.903],[19.86875,60.96175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.890125,43.116125],[15.643461,43.293953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.857609,44.045859],[9.8625,43.9005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.923063,57.919531],[5.662,57.993]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-2.019],[50,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,9.715],[-110.0945,9.9615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.888502,36.95017],[23.831051,37.19384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.568,61.81275],[-6.7205,61.579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.89275,57.126625],[7.018,57.11475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.001,-31.927],[18,-35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.701406,35.484406],[25.911125,35.455625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.8,-10.5],[131.8,-11.9],[130.8,-12.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.512,50.016],[0.31,49.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.153719,59.551219],[23.265313,59.50125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.844,37.68],[-66.515,35.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.551,58.386],[1.212,58.238]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.674672,56.071289],[16.442,55.811844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94.304453,-41.382312],[100,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.777094,35.966875],[-7.767,35.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.032,60.854],[19.02175,60.7085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.4875,25.9845],[-76.589,26.212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.922,-9.526],[132.808,-9.031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.4,54.674],[7.343,54.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.922,9.364375],[-80.528,9.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.138,16.439],[-73,17.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.3245,42.045875],[10.646,41.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.240687,41.79975],[16.45125,41.823125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.573,37.681],[-71.664,37.778]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.381727,57.740961],[11.509242,57.924437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.46675,36.75575],[-6.523844,36.615562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.836766,58.773047],[20.913875,58.669]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.22375,44.644],[-5.945,44.7175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.573,67.798],[9.69625,67.809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.752359,57.575352],[-1.842453,57.702484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.57475,-7.0675],[124.878,-6.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.50075,-26.92],[-46.221,-26.744]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.069,35.196],[21.574,35.383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.76825,55.82075],[7.824813,55.531312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.696,28.133],[-88.472,28.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.481,10.215],[-97.672,10.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.9255,53.926],[1.058625,53.893563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.262,32.46],[-123.541,32.109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.82525,56.18975],[16.90625,56.33675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,30],[165,35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.290563,55.696742],[16.442,55.811844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.439375,49.223875],[-4.546,49.189875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.31225,58.564063],[20.476,58.653]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.075875,57.366438],[18.184,57.388]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.5365,58.72875],[18.503,58.565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.939,37.619],[4.397,38.377]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.528937,44.994906],[12.655,44.909]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.473312,38.727063],[24.525875,38.461062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.101,63.809],[21.510375,63.660875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.186,52.94],[3.20625,53.0425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.007,-8.92],[133.731,-8.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.2435,37.88075],[-25.3,38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.03125,5.06775],[65.021,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.18,49.805],[168.214,48.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.008,55.3205],[16.903813,55.244687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-30],[169.996,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.5935,43.573813],[14.440312,43.648844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.761602,50.050055],[-5.777,50.2265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.649,56.724],[17.768812,56.5435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.463,58.176],[3.6375,58.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.977,63.336],[4.1,62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.799,-54.378],[-84.751,-55.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.950312,59.026313],[10.815,59.083],[10.755,59.167],[10.615795,59.285332]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.94,52.333],[1.873219,52.440906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.017,44.277],[37.332,44.366]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.9055,43.753],[15.114062,43.681008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.816,57.796],[1.346,57.72],[2.057,57.009]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.57275,37.6575],[-10.435,37.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,7],[-79.837,7.134]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.889,31.422],[30.087,31.744]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.067,44.087],[38.854,43.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.420078,37.448047],[12.533391,37.585156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.235304,53.17],[-10.236,53.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.298,63.71],[-21.378,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.136,27.799],[-92.264,27.064]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.728,28.434],[34.58575,28.46725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.986406,52.129875],[-6.0765,52.177375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,15.17],[-116.621,13.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.48175,51.108812],[-5.773,50.579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.766,-37.447],[32.918,-37.307]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.951375,56.953625],[6.821906,56.774562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.998,-29.998],[3.523,-26.761]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.102,-45.393],[130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.687,37.663],[6.052,37.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.370219,43.833156],[14.440312,43.648844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.7505,57.8335],[8.66275,57.729375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.697,48.078],[-6.57375,48.27575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.57375,41.32575],[5.565,41.439]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.42125,53.672031],[8.22975,53.878]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.399,41.044125],[8.5,41.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.305,50.367],[-1.199516,50.392453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.856,26.188],[-91,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.416,61.186],[7.005,61.088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.301738,38.272168],[13.198,38.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.943,35.209],[31.5805,35.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.453,58.3585],[24.269,58.1505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.0945,9.9615],[-120,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.012375,60.984875],[19.2135,61.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.38325,49.633625],[-3.211875,49.594375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.7155,39.005],[-11.905,38.489]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.34,63.74125],[22.487125,63.902125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.9385,36.1425],[-12.809,36.242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136,-35.5],[136.625,-35.562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.183,71.016],[-147.813,71.412]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.68725,40.42225],[24.776063,40.249313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,8.5915],[70,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.355,34.379],[-74.268,32.3085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.014,36.046],[-5.149312,36.059062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.55,9.765],[-71.608,10.642],[-71.59,10.769],[-71.579,10.878]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.013,20.298],[-73.837688,19.982813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.297,13.889],[-68.488,13.682]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.214187,57.974],[9.463125,57.949875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.937,36.492],[-130.001,37.491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.718,-20.503],[160,-20.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.55675,37.588125],[10.850938,37.541313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.292,10.706],[95.188,10.681]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.186,36.435],[15.906,36.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.955,-0.829],[50,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.94975,37.154],[13.041,37.105],[13.127375,37.039187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.2235,40.382],[-11.246,41.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.435875,58.189125],[18.376,58.087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.178119,50.895267],[1.305336,50.890065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.381172,59.662922],[23.257469,59.677742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-30],[-155.46,-24.812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.698,-57.126],[-60,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.194625,39.246],[2.030938,39.152375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.004,54.756],[6.7685,54.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.783,36.108],[-7.777094,35.966875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.24,70.804],[-8.687,70.758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.568126,-7.144806],[72.440438,-7.267563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.647,36.111],[14.655,36.21975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.364,28.455],[-95.101,28.746]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.53675,60.915125],[4.49425,60.75125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.186,39.679],[13.30525,39.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.651,45.042],[-2.365,45.324]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.025413,43.585063],[10.0435,43.469406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147,-4.8],[149,-7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.621,0],[53.186,1.951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.186,64.774],[24.10975,64.69225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.63716,44.425438],[14.710062,44.33625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.273,24.529],[145,25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.20275,7.06625],[82.132656,6.798531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.768,-36.842],[175.2,-36.647]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.258,53.198875],[4.97725,53.05975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.484,47.633],[-150,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.067937,41.153672],[10.861,41.096]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.104563,58.672461],[-3.2045,58.697633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.002125,38.15475],[-71.91125,38.024687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.5815,36.75025],[22.927484,36.445719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.179,41.12775],[11.839849,41.034209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.51375,63.171],[19.688,63.0455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.537,41.41475],[16.376562,41.400156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.099,-19.147],[-97.306,-17.444]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,20],[-110.001,15.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.822,30.041],[-148.9705,29.0905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.457625,35.79275],[-74.401,35.394]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.451219,38.898406],[17.462,39.117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.798,-7.164],[170.0035,-9.993]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.032,27.123],[-69.686,27.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.86725,36.909336],[25.048098,37.050152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85.695,10.725],[89.328,8.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.8245,40.5645],[18.575,40.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.026,17.298],[-62.27075,17.0405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.697,50.884],[-6.649,50.751]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.439,36.489],[13.663,36.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.043,15.592],[-70.793,14.963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.819,53.993],[2.146,53.878]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.124953,36.624328],[14.920156,36.622395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.8075,55.13525],[-5.720328,55.036125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.642281,63.1215],[7.2445,63.032]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.729,25.379],[-89.462,25.708]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.33375,54.50225],[10.544281,54.556969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.619,-33.274],[12.5,-28.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.816,61.808],[20.3625,61.832125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.385,46.758],[-8.047,47.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.841031,49.984406],[-1.991812,49.876688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.42525,55.514031],[-0.878,54.961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.82275,16.004375],[-84.382306,16.038694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.748,37.4685],[10.246807,37.543968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.321,29.626],[-93.217,29.254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.849875,57.6765],[11.654469,57.646875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.152,38.6095],[1.3635,38.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.195,33.753],[-17.284,33.179]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.513219,41.580812],[3.363,41.548]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.161687,54.593969],[14.176016,54.423125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.661375,58.28575],[19.828187,58.286062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.7655,29.5235],[-93.668,29.453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.709938,60.229375],[18.919719,60.131031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.6255,36.501],[-72.544,37.487]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.341,53.5],[3.002,53.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.619875,61.102125],[19.811,61.17125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.58575,28.46725],[34.521,28.171],[34.476,28.043]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.9255,52.01575],[1.94,52.333]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.67475,57.12],[-1.664,57.00225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.071562,61.531188],[21.046391,61.372875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.289,38.551],[9.683,38.4155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.7,54.69625],[13.654887,54.568508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,39.609],[-130.346,39.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.2555,36.778],[15.2715,36.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.4,65.5385],[23.572,65.309]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.833117,51.853805],[2.155,51.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.509,58.616],[4.4465,58.40925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.255,64.926],[-23.381625,64.986375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.382613,43.609586],[7.076906,43.521563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.822063,55.28275],[14.042,55.233]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.332875,49.78975],[0.512,50.016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.663,36.535],[13.5255,36.691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.0865,35.628125],[-75.074,35.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.777,65.68275],[22.87825,65.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.837,5.12],[168.093,7.111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.276563,37.155148],[15.436781,37.155094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.670652,58.591402],[10.633281,58.488969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.9115,34.1825],[25.781,34.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.1945,19.33525],[-104.7,18.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.0355,60.15975],[27.55325,60.13225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.782406,40.969906],[9.831,40.812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.225,-19.68],[2.559,-17.795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.597,39.866],[19.53075,40.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.155,51.765],[2.379469,51.685312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.247464,58.669113],[-1.778,58.673]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.217,64.99575],[23.847875,64.741625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.181063,40.69975],[18.22575,40.79075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.334,51.313],[-10.73,51.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,20.001],[125.7,13.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.192016,51.640203],[-4.935,51.527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.131266,57.8945],[10.058234,57.74757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.528094,45.267156],[13.219891,45.249109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.089,33.786],[-69.423,33.559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.970297,53.366312],[-4.762828,53.372312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.218656,57.653188],[18.289094,57.821469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.968375,40.64525],[7.5675,40.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.6,34.4],[126.54,33.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.064,41.482],[-69.3395,41.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.777,50.2265],[-5.1725,50.673]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.161687,54.593969],[14.029625,54.566875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.09975,57.083],[19.086,57.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.153,12.054],[43.5275,12.482]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.834,30.041],[-75.641,28.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.904,40.813],[6.626,40.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.54,-28.545],[-129.999,-27.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.602,8.603],[-13.817,7.846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.892008,57.372164],[23.9625,57.13125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.57275,37.6575],[-10.339,37.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.4885,54.398],[15.519375,54.60625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.256,44.471],[12.383008,44.545586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.64525,51.857],[1.7845,52.05225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.7705,35.4235],[-8.654,35.267]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.584,63.667],[-15,64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.326813,57.37825],[17.226156,57.496313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.909195,49.889227],[-6.02425,49.933625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.379,47.862],[-122.438,47.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-177.48,30],[-178.683,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.448219,36.698781],[23.272176,36.528695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.096,28.45875],[122.957,29.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.072,26.289],[-147.428,27.571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.802625,37.517875],[26.622188,37.603781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,10],[-40,13.267]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.98725,47.8615],[-6.125,47.837],[-6.298,47.783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.238,52.393],[3.774,52.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.161,35.632],[130.182,34.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.826625,41.830687],[10.696,41.9715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.196,-9.807],[-102.534,-7.517]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.726,22.571],[65.109,21.35],[65.103,20.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.957,46.525],[-3.167,46.426]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.93175,65.16575],[23.627875,65.098062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.833563,55.30441],[-5.74625,55.16375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.137,52.567],[-10.5,54.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.859,45.621],[36.807,46.198]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.531,31.092],[-67.507,30.899]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.434313,54.599125],[10.33375,54.50225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.781438,49.663469],[-4.990125,49.567187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.534,41.262],[-170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.58375,54.626375],[12.520802,54.552705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.820594,36.086266],[14.93,36.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.10575,38.21125],[14.322,38.323]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.32375,69.22475],[16.1715,69.3165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.3625,66.1375],[-24.164,66.336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.750953,42.840031],[8.80375,42.980375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.205719,43.223625],[15.089797,43.182266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.631219,64.601719],[21.698,64.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.063,-7.186],[-30,-7.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.569,36.66325],[-7.09825,36.6245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.78725,40.66125],[-8.866,40.569]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.141,42.333],[132.204,42.159]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.914,26.459],[53.369,26.579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.776,39.083],[19.862,38.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.527,27.613],[-146.072,26.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.6795,39.3255],[2.194625,39.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,20],[-139.381,20.656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.282656,61.290219],[21.250352,61.193086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.61775,51.339],[-9.51875,51.3205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.145,71.403],[29.9765,71.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.5225,44.665],[13.653516,44.614742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.786,50.154],[168.214,48.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.259,38.249],[-70.969,38.037]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.113,9.132],[160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.2705,47.493],[-5.2725,47.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.947375,43.03275],[4.4855,43.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.385,59.118],[11.375,59.108],[11.211,59.087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.3675,54.854],[7.4,54.674]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.916555,64.593055],[-13.893,64.162]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.662,56.487],[-7.1965,56.750875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.414875,50.408125],[-3.530312,50.3175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.373,56.645],[19.389406,56.289125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.92125,47.863],[-3.8335,47.7205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.217,29.254],[-93.214,29.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.6285,59.0075],[-2.449,59.08475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.875125,39.163875],[19.99275,39.06625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.926813,38.3505],[13.729,38.39825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.12075,34.4865],[29.6255,34.0145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.634,27.559],[-87.003,27.148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75,-25.277],[77.601,-22.543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.6255,58.0665],[4.6735,58.321]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.448,50.727],[-8.3445,50.6435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.796,43.825],[-2.995687,43.5465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.051,57.140375],[-6.993375,57.26875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.5585,42.6005],[5.672,42.614]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.564063,57.590063],[11.485,57.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.594,25.549],[123.55125,25.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.882625,39.80275],[24.6765,39.785812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,7],[-80.413,5.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.76,54.7775],[5.675,54.6525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.362,-0.489],[126.336,-0.726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.133,-10.55],[141.3285,-12.5965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.192,56.046312],[-2.714,56.1705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.646293,55.74748],[12.675594,55.955906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.709,58.718],[4.802,58.7745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.02,63.739],[-20.3805,63.507]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.017312,62.650937],[18.102156,62.571313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.036563,59.35375],[23.81175,59.435125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.002,-34.562],[165.252,-34.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.338219,44.012188],[9.857609,44.045859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.479,27.618],[-140.001,28.033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.046,60.464],[-1.014,60.267]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.277719,36.044219],[23.356,35.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.043094,57.403391],[8.219125,57.452375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.334,-54.054],[-63.38,-54.146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.591125,38.638125],[-9.711,39.156],[-9.7335,39.40575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.966328,37.293547],[23.831051,37.19384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.002,57.289],[-40.003,56.058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.780563,65.353563],[22.616,65.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.888672,49.878625],[-3.705,49.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.884049,18.638186],[-76.025322,18.660483],[-76.148999,18.679757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.360813,55.012187],[18.253312,54.956063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.259,36.044],[-9.3015,35.8935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.925,55.622],[3.988,55.7395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.818,27.532],[-72.3305,26.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.434375,55.64575],[6.316562,55.509375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.129,48.856],[-6.415,48.906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.291312,50.692563],[-0.259625,50.568875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.456422,59.020891],[10.566531,58.892156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.240875,39.144031],[17.462,39.117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.2685,44.4395],[-9.1755,44.5615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.10875,49.89325],[-3.559766,49.923234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.301,11.6],[50.947,12.264],[45.001,12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.82,-14.338],[-110,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.619,35.65125],[-13.244,35.928]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-40],[-169.998,-36.681]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.308,23.23],[-86.161,22.377]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.146,56.665],[-6.005,56.609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.998,-35.12],[-39.999,-32.717]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.762,30.418],[-70.667,30.202]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.247,39.29],[17.896,39.107]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.337,-23.766],[153.4,-24.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.736,38.6895],[12.7085,38.8815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.996,-54.092],[-96.5,-53.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.6945,60.083188],[24.594,60.025],[24.420375,59.953031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.034687,60.73825],[20.973,60.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.578625,42.02875],[11.694102,42.070801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.716,36.346],[28.616,36.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.347,2.69],[-106.117,3.931]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.999,-27.993],[-28.168,-28.269]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.195,68.52],[14.953625,68.253375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.769,60.144],[-140.379,59.306],[-137.513,57.878]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.7605,21.986],[119.314,19.914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-10],[-120,-8.282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.806,35.6935],[-12.80925,35.90075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.969,38.037],[-70.526,37.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.939,37.619],[3.295,37.477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.334937,38.390125],[13.352219,38.52725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.5785,45.7045],[-1.654,45.829]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.71525,49.869875],[-6.616687,49.755812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.507973,48.596453],[-5.447,48.506]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.677437,55.485312],[9.785312,55.552937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.82925,57.105],[-0.965,57.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.81,-23.097],[58.0065,-20.694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.735,-5.321],[174.793,-5.486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.388,66.054],[40.644,66.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.514,67.102],[12.627,67.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.329437,38.774031],[24.425875,38.922625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.356,47.132],[153.969,46.591]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19,59.048],[19.011,58.891],[19.017688,58.729125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.8595,43.1855],[3.947375,43.03275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.619,18.906],[-92.097,20.352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.6255,36.501],[-73.8395,36.3455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.432156,50.575094],[-0.492328,50.412828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.01575,55.424],[18.986,55.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.257,-27.137],[154.246,-27.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.375937,57.017969],[20.504625,57.129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.215,36.603],[10.691,35.922],[11.379,35.923]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.41,53.429],[-5.305,53.374]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.572,36.697],[-72.581,36.439]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.686,53.954875],[-3.747813,54.142844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.225,56.070875],[20.285625,56.15325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.377,51.071],[2.357,51.179]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.160969,37.739],[6.816375,37.652375]]}},{"type":"Feature","properties":{"pass":"bering"},"geometry":{"type":"LineString","coordinates":[[-169.15,65.962],[-169.38,65.265],[-169.10675,64.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.959,-4.539],[113.903,-4.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.436,16.166],[-87.798,16.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.986406,52.129875],[-5.825875,52.152125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.586,30.3695],[-79.233,31.641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.514,56.567],[-1.49475,56.37125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.790438,43.889844],[28.60125,43.80125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.726,59.907],[26.585,59.668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.663625,57.26975],[16.84925,57.322375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.767,42.16],[-11.845,41.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.78925,36.71375],[-7.7715,36.4095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.626,40.918],[6.87,40.6065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.7235,55.215],[11.5835,55.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.365844,54.531406],[15.799,54.303]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[97,7],[97,11.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.3835,58.552125],[10.416719,58.424625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.937,36.492],[-129.819,35.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.84,60.721],[-5.501,60.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.415781,54.933609],[-5.566375,55.043687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.581,44.649],[-7.986,44.428]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.347078,41.885453],[16.474734,41.922687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.8605,56.036125],[20.743063,56.151656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.119062,39.170438],[9.06375,39.069203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.47125,40.87125],[12.639,40.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.842,62.228],[20.861,62.06975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.634,26.148],[50.713,26.461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.805,24.763],[-18.383,25.189]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.912,40.54],[3.0135,40.427]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.31975,38.362],[12.536625,38.329625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.239,-30.07],[-10.817,-30.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.26325,35.84125],[25.3785,35.882]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.562156,44.333625],[14.54825,44.178188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.682125,-17.353625],[-149.783,-17.341]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.813,40.446],[-73.538,40.251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.4945,37.2965],[15.6455,37.5105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.017,55.91],[-130.175,55.757],[-130.002,55.283],[-130.674,54.771],[-130.632,54.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.43125,54.432],[19.096688,54.63125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.56475,53.35025],[0.708469,53.284531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.609,55.80425],[7.578,55.634],[7.497187,55.448062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.91975,44.3725],[13.034688,44.483469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.157164,43.454414],[10.0435,43.469406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.42,31.518],[-77.037,30.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.961,5.792],[68.026,2.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.087,36.274],[31.639,36.413]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.934375,28.807625],[50.078,28.917]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.889,-45.404],[-50,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.25,41.8],[-69.527,41.592]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.1415,40.8395],[1.236531,41.044938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.568,35.283],[13.028,35.462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.184,59.405],[20.2645,58.8945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.04875,59.5285],[22.9095,59.5445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.607,-4.661],[-105.37,-2.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.462375,40.718906],[13.707706,40.727291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.157,36.6035],[35.926,36.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.636258,38.502305],[20.771266,38.382219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.315,-54.112],[-36.07,-53.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.324188,41.017313],[13.464594,40.920094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.580313,52.89825],[1.8375,52.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.077,42.756],[14.198,42.709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.416,43.145],[3.608,43.282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.742,57.23725],[8.587523,57.231133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.4275,56.721],[7.293625,56.684125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.833,60.855],[2.4315,61.0545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-30],[75,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.779031,42.454313],[15.706062,42.360062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.674,45.1445],[-9.13,44.384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.8,-5.2],[107.329,-5.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.921375,55.959125],[-2.05875,56.04875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.7395,48.4325],[-122.974,48.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.098125,37.256125],[27.217,37.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.5305,54.831],[12.799844,54.771531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.289,-6.825],[40.0135,-6.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.017,62.947],[-32.728,60.892]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55,45],[-60.562,42.994],[-63.295,41.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.947,38.824],[3.9755,38.4465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.131266,57.8945],[9.987586,57.908125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.999,-31.577],[-138.86,-31.239]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.551375,44.844875],[12.528937,44.994906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.468312,39.035625],[25.564,39.173969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.981,49.62],[-6.0245,49.4815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.848,35.717875],[27.788423,35.822991]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18,18.022],[-18,21.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.32,42.943],[6.20175,42.931625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.148094,39.671781],[0.197,39.54275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.397,30.045],[-47.966,28.079]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.583,35.928],[13.888,35.9465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.249437,35.433906],[26.405719,35.342953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.813,17.409],[66.53,16.679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-50],[-114.888,-45.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.84525,63.1775],[19.95325,62.944]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.558875,42.49275],[5.865656,42.697406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.5855,57.081938],[19.780969,57.144813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.13875,42.80525],[10.014422,42.730695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.9385,36.22],[-8.541,36.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.002,57.344],[-19.63,56.624]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6295,54.114],[5.5755,54.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.537,45.88],[-12.397,45.066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.999,-27.993],[-30,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.176,43.257],[-10.168,43.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.153,66.745],[12.099,66.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.786625,60.099375],[4.742,60.378]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.304,60.295],[22.29,60.187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.427875,43.411812],[9.550547,43.312297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.729812,53.586063],[0.8485,53.642625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.95325,62.944],[20.264188,63.044219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1595,60.925],[4.178,60.77325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.891109,53.926875],[7.776219,53.958375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.253062,38.459375],[12.07125,38.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.5595,70.8915],[23.4435,71.1135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.926,54.463],[8.76375,54.473375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.98425,50.81275],[-5.941,51.1665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,4.836],[-138.666,7.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.835719,53.408313],[-3.975875,53.351812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.999375,43.83025],[14.9055,43.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19,59.048],[18.5875,58.895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.28825,49.666],[-4.23925,49.463688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.584,63.667],[-14.263,63.766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.7535,49.327],[-5.62575,49.34825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.129,57.9625],[20.150562,58.106219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.58,56.055],[-151.879,57.082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.064016,63.151594],[19.264,63.161]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.001,15.48],[-140,13.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.62875,57.91475],[7.485867,57.924367]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.32,55.056],[3.122,55.707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.768,5.224],[126.011,5.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.722562,41.376844],[9.892188,41.504453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.618,65.832],[-19.567,66.073],[-19.0275,66.2495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.732742,37.148824],[24.796547,37.32475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.249,-35.185],[-45.192,-35.166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.45825,46.474875],[-2.484,46.1495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.821,58.262],[6.69275,58.240875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.409797,43.429766],[16.265332,43.470359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.292,36.3915],[21.12475,36.388]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.9,36.74475],[13.951375,36.629875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.941875,51.58575],[-8.070594,51.584297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.511,-12.451],[-77.627,-12.174]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.564,38.396],[13.456188,38.359125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.437,40.076],[-137.426,39.419]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.83,38.63725],[15.766156,38.505625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.875063,36.291312],[26.900813,36.420781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.418625,36.985625],[13.2485,36.9335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.2645,58.8945],[20.3245,58.663875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.422,54.95],[7.4,54.674]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.824,19.359],[-23.537,19.987]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.45975,52.27725],[-5.535656,52.177781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.054781,58.192828],[11.211383,58.103047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.33,52.244],[3.153,52.3015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.939625,43.833375],[13.835406,43.943969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.836891,58.662578],[17.822836,58.459117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.999,-31.577],[-140,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.756016,58.328711],[8.848,58.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.934625,55.349438],[15.8995,55.495625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.332617,42.138547],[16.439219,42.239266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.754,58.5605],[9.796375,58.65925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.996,60.532],[3.454,60.7385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.3755,57.552844],[8.436813,57.398375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.909195,49.889227],[-5.986687,49.76425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.493,14.128],[43.013375,13.174125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.70075,36.381625],[27.974,36.481875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.168438,57.759125],[19.126031,57.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.303,36.748],[13.147625,36.622125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.750258,50.333555],[-0.726344,50.178594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.429,64.402],[-162.613,63.693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.415,71.427],[-161.771,71.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.684,50.159],[-7.636,49.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.162313,38.649938],[-10.08,38.581]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.363,66.053],[10.358,65.006]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.099937,43.349375],[10.157164,43.454414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.0375,39.2665],[23.871,39.135],[23.85375,39.1165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.237,53.141],[8.257,53.146],[8.483,53.256]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.47,33.999],[25.781,34.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-30],[-129.999,-27.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.108,48.964],[157.616,48.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.209,10.754],[-93.659,11.087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.905,56.534],[6.765,56.462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.1765,37.673],[26.093688,37.843187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.592125,53.629375],[-5.474625,53.615375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.412,44.988],[-1.421,45.152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.132859,35.702266],[23.9775,35.743469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60.718,10.754],[60,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,60],[-50.002,52.494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.323187,48.24875],[-6.565062,47.619125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.0925,41.300125],[9.195668,41.28693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.0185,56.57525],[16.90625,56.33675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.221,64.847],[10.077,65.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.237,38.293],[25.360312,38.260813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.534,1.487],[-107.347,2.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-10],[159.41,-9.488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.488,34.2305],[18.971,34.42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.711118,37.566561],[23.901129,37.534844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.29475,55.996],[18.37,55.882]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.54,33.546],[127.146,32.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.898,20.807],[-18,21.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.106,48.106],[-163.817,46.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.598469,57.102031],[11.5545,56.932375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.16502,36.701812],[25.310437,36.650125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.995,10.936],[44.993,10.487]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.316,64.483],[-22.819,64.18525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.3,-8.9],[176.937,-9.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.780344,55.927063],[14.8135,56.038],[14.918719,56.112078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.176875,45.08725],[136.009,43.553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.45,66.952],[12.153,66.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.824375,57.880875],[17.874625,57.731375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.958,38.83],[-28.313125,38.79725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,60],[-42.672,57.674]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,0],[77.693,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.295219,57.249313],[17.326813,57.37825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.716,36.346],[28.400875,36.420125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.368,33.15],[-19.9605,29.97825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.973,44.613],[-63.25,44.501]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.069625,50.753687],[0.204687,50.567141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,20],[-120.001,23.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.914,9.536],[-81.888,9.523],[-81.714,9.512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.321,1.34],[-40.951,1.733]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.5235,68.0595],[13.964,68.116],[14.137375,68.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.484,53.265],[4.626891,53.269203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.9985,40.68925],[-9.129,40.4825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.086,30.175],[-73.197,28.729]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.986,45.724],[-15.482,45.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.654,53.7245],[2.2215,53.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[83.619,-33.935],[80,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.08525,59.9725],[-1.1415,59.87675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.605,61.772],[17.578,61.65275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.159,40.971],[17.957,41.072]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.412,55.7145],[20.204,55.6295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.916,20.06],[124.538,20.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.254,57.415],[9.367,57.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.19,55.7165],[5.991,55.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.001,15.601],[-110,12.449]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.593125,40.491875],[24.415844,40.292906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.475062,42.2835],[6.679172,42.509359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.998,-17.141],[80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.040229,37.114312],[23.916953,37.131188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.057,43.264],[4.165,43.278]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.341625,53.804625],[4.18575,53.974]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.853875,43.485687],[14.887352,43.367371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.182,57.626],[5.073,57.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.082,52.199],[2.2615,52.03675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.092,62.60125],[20.0285,62.5145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.030938,39.152375],[1.831,39.0435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.4,45],[35.492,44.466]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.657,-30.436],[-48.74,-31.323]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.92,64.331],[22.13,64.176]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.11575,39.31975],[19.79725,39.287688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.168,35.6615],[27.848,35.717875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.774,66.5575],[-15.2995,66.482]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.599,0],[77.693,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.469,-21.056],[114.153,-20.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.001,16.322],[-47.429,17.566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.32,-10.714],[-170,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.7845,57.281],[5.697,57.795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.965219,53.57975],[4.979375,53.474625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.001008,54.403805],[11.098937,54.607438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.633,57.923],[-2.695,58.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.4085,36.9005],[-9.300937,36.831469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.135,-0.877],[-158.408,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.858937,35.888188],[12.802,35.7655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.017688,58.729125],[18.923,58.633],[18.706937,58.325312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.1475,40.1945],[18.934,40.3385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.454422,52.444984],[4.3255,52.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.859422,56.530578],[20.678,56.7105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.1835,42.4935],[5.00275,42.4215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.157,-0.681],[73.148,-0.519]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.762828,53.372312],[-4.726773,53.505562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.001,55.0165],[0.822,54.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.557,16.147],[-72.259,15.65825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.986687,49.76425],[-5.981,49.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.218,-9.752],[173.699,-12.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.999,-38.629],[-149.998,-34.051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.702,21.902],[-74.574,21.858]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.103,41.692],[10.1985,41.6105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.0695,50.406],[-2.205125,50.286875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.255648,38.795563],[15.439125,38.654156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.596719,36.353],[-2.909,36.339]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.564,39.173969],[25.593719,39.019594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.972328,50.363828],[-1.199516,50.392453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.934625,55.349438],[15.915437,55.128125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.985313,49.198062],[-3.199,49.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.349195,54.779453],[16.866312,54.66775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0645,56.41325],[7.934,56.01675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.657,33.847],[-125.084,35.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.942545,37.437957],[26.009375,37.257469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.405563,62.363109],[17.731125,62.23775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.3155,38.0295],[10.445,38.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.872,-36.427],[-149.999,-38.629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.713023,42.646078],[16.739438,42.443531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.272176,36.528695],[23.193945,36.375039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.5735,37.804875],[20.607,37.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.236531,41.044938],[0.916,40.575],[0.835,40.4185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.415,37.827],[-68.373,37.529]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.685,18.404],[-175,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.572563,41.142031],[9.690062,41.219469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.531,-8.499],[172.218,-9.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.883,35.392],[35.272,34.852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.1235,36.56425],[-9.056,36.4805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.576812,56.035563],[15.696,56.016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.700969,57.004469],[11.598469,57.102031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85.111,-45.404],[80,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.793,-5.486],[176.556,-9.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.773984,61.835141],[4.96575,61.68225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.634,55.045],[19.774,55.109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.728156,51.331844],[2.359312,51.334812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.30375,36.56925],[13.439,36.489]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.007125,58.895625],[18.006891,58.895237]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.099,59.808],[-1.181,59.129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.641375,58.169719],[5.552,58.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.583,53.987],[-36.436,53.898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155,5.057],[-149.999,9.999]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.716375,42.049],[9.816258,41.956148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.134,49.447],[-6.0245,49.4815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.313125,38.79725],[-28.485,38.629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.494,10.655],[-75.164,13.697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.1045,37.404],[-11.741,37.578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.159,30.206],[-14.3095,31.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.466039,55.658266],[-0.218,55.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.511969,42.932844],[16.609633,42.895539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.352422,55.020484],[-1.425875,55.15175],[-1.427,55.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.971312,55.438],[10.803432,55.565219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.24025,39.00025],[17.205938,38.69625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.898,32.578],[-72.597,32.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.087,39.791],[2.196,39.618]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.7925,37.587],[-71.511,36.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.023,56.123],[18.963,55.778125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94.9765,-15.147],[100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.829688,39.325937],[0.588062,39.093312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.862,38.99],[2.243688,39.123438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.632,53.5115],[-5.680625,53.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.257,2.47],[-40.782,3.072]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.887,-52.201],[-54.374,-55.103],[-56.698,-57.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.517,33.936],[-69.423,33.559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.545481,18.741766],[-76.665109,18.760476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.902,62.972],[7.885,62.968],[7.778,62.972],[7.755,62.988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.44075,58.222],[9.36725,58.076]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.013375,13.174125],[42.498489,14.102685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.320172,56.856264],[12.117906,56.828844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,10],[158.375,10.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.951375,36.629875],[14.049,36.4915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.676,-12.69],[141.3285,-12.5965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.722859,41.281063],[16.674,41.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.622188,37.603781],[26.656375,37.4955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.845813,36.259187],[24.714,36.223]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.375,40.312],[25.639578,40.049898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.74025,44.051],[9.257094,44.096219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.072,5.983],[-130,4.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.6315,43.72],[8.800363,43.646438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.014,54.472],[-4.141,54.491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.298,42.3805],[10.204,42.258],[10.120438,42.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.058156,34.557719],[33.179,34.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.110809,36.492992],[27.974,36.481875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.3935,61.964],[18.604,61.583]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.676,-32.527],[171.021,-31.953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.5,-46.5],[-75.86,-51.434]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.228313,56.164125],[7.288,55.837]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.360563,54.301414],[8.236625,54.069906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.389375,58.667938],[-2.247464,58.669113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.45,-53.7],[-83.454,-54.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.7615,44.01],[-132.141,44.978],[-130.9255,45.6835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.663,42.937],[15.908625,42.902125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12,68],[9.918,66.174]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.9565,40.45625],[-9.089,40.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.1845,55.0125],[14.565151,55.007522]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.550813,55.421312],[-5.339812,55.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.3735,57.317],[24.0165,57.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.61325,41.319875],[16.722859,41.281063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.912,35.933],[28.092625,36.12225],[28.227,36.317]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.508,28.874],[-15.32175,28.284375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.749469,43.513031],[8.112875,43.403375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.608062,57.901125],[19.896906,57.983906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.038,22.017],[-66.473,19.9995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.999,29.199],[-78.222,29.662]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.486813,49.913687],[-4.663156,49.929469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.2345,38.78125],[9.1295,38.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.202,65.638],[-21.05525,65.543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-10],[-166.845,-10.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-40],[57.272,-43.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.378188,36.126438],[25.243562,36.1335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.485,38.629],[-28.431,38.79025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.869266,58.091203],[9.723844,58.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.6185,31.8515],[30.349,32.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.58575,28.46725],[34.352,27.696]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.746,-23.542],[-119.999,-24.322]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.815102,36.763],[24.658359,36.855695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155,15.17],[154.486,14.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.286062,36.011562],[25.243562,36.1335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.337,-16.489],[-85,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.4385,40.012],[-136.437,40.076]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.3595,36.848344],[26.472062,36.846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.729,28.799],[-56.661,29.006]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.921375,55.959125],[-1.825875,55.820125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.01275,19.968875],[-49.207,20.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.9385,36.22],[-9.163937,36.269188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.1845,53.931],[6.0065,54.07925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.894,61.295],[19.014,61.249]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.708125,53.435375],[3.371625,53.150438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.096688,54.63125],[18.65875,54.40225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.318,52.727],[5.326,53.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.355625,38.634625],[20.227,38.8435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.575125,57.16825],[18.77525,57.13575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.9565,71.984],[-156.705,72.2],[-160.415,71.427]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.73,35.396],[14.40425,35.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.429512,59.82393],[19.617594,59.841656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.251,60.57825],[19.1205,60.433625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.602,20.157],[-164.448,18.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.514,54.908],[16.729875,54.8175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.89375,39.8645],[19.034437,39.824531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.055594,43.343344],[-9.761,43.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.14625,41.74625],[12.016,41.755],[11.911102,41.74726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.151,61.3485],[3.72575,60.94075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.9,-40.3],[172.546,-40.032]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.6235,40.48025],[10.514531,40.822406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.8515,53.2035],[4.713,52.9865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.896625,40.681125],[9.913,40.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.499,52.0465],[-5.396313,52.1615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.881344,40.604789],[13.873,40.482]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.565,69.394],[35.555,69.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.5,-47],[-180,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.7285,39.3075],[4.455,39.651],[4.583875,39.728437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.828,48.899],[-50,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.0385,36.08175],[33.8,35.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.96,36.271],[-40.002,36.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.768297,58.363934],[10.709203,58.213766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.996438,52.000344],[3.885035,52.111375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.87375,53.285],[-4.938,53.167],[-5.107781,52.790656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.008375,43.8295],[10.096234,43.706109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.129,31.169],[-71.458,30.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.944,38.66575],[7.86325,38.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.342,42.497],[-151.313,41.399]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.866,17.573],[-160.765,17.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.410563,39.767125],[19.57175,39.43075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.992625,52.17175],[4.0405,52.33875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.491938,40.297187],[-68.969,40.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.666,36.0145],[25.662937,35.789938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.7715,36.4095],[-7.774,36.257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.6,1.1],[104.482,1.341]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55,45],[-50.002,46.559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.1475,40.1945],[19.206,39.90675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.0965,42.00925],[-10.089,42.129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.554156,42.821313],[15.629129,42.695691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.37075,66.083375],[-21.297,66.326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.4725,35.3005],[-9.518,35.064]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.0825,42.6135],[-10.296,42.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.80275,41.1905],[17.643062,41.204937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15,-35.386],[-15.384,-35.018]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.25,-39.301],[-52.97275,-39.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.503,-41.676],[45.109,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.056,37.645],[3.939,37.619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-30],[-135.016,-25.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.872,28.83],[122.957,29.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.917,35.611],[13.583,35.928]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.789625,58.690625],[-2.751,58.8205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.558,37.1],[-73.6255,36.501]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.697,42.521],[-157.721,42.552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.172969,35.561266],[25.26325,35.84125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.982,27.633],[34.352,27.696]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.235875,40.468812],[14.304,40.266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.877,-8.772],[156.2,-6.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.829,4.861],[-29.223,4.359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.551312,54.743437],[19.299,54.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.045574,42.939012],[4.9185,42.94125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.368117,50.268758],[-0.379,50.127]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.423,59.42],[3.9625,59.297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.532,55.9855],[6.42625,55.798875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.495,37.442],[-10.57275,37.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.120984,51.713039],[1.258,51.812],[1.314727,51.915547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.053,52.636],[5.1495,52.422],[5.318,52.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.99,-13.906],[179.91,-15.751],[179.932,-17.539],[179.733,-18.192]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.815102,36.763],[24.718953,36.683297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.43125,54.432],[19.25,54.702]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.2,-13],[-34.7,-8.8],[-33.8,-5.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.246,64.5555],[22.2915,64.378]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.564703,38.197852],[12.330875,38.221688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.5485,59.79],[4.3505,59.89425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.347812,37.55925],[10.193,37.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.569039,45.08082],[13.411812,45.124281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.568,-18.515],[-115,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.706,56.416],[7.70925,56.272562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[56.935,69.485],[57.026,69.269]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.694,2.156],[81.9,5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.237,36.152],[-69.683,36.538]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.985812,57.13725],[-1.801,57.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.895,40.88],[18.034406,40.711969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.308477,38.011313],[12.375688,37.894719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.427,24.693],[-125.335,24.945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.822813,44.277563],[14.961,44.322]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.5815,36.75025],[22.49,36.3835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.024,60.6985],[18.2855,60.514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,30],[-140.001,31.389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.928,53.053],[-41.898,51.979]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.471586,59.474203],[10.598375,59.528781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.99,38.729],[120.776,38.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.563,39.075875],[7.741,38.922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.685,42.967],[6.583,42.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.077875,41.142875],[8.02,41.297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.654469,57.646875],[11.470937,57.634844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.193945,36.375039],[23.292113,36.209797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.34,-34.71],[165.252,-34.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.293062,58.015375],[6.283625,57.9055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.0845,57.555],[7.15025,57.45975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.738,0],[-31.299,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.034437,39.824531],[18.952,39.9885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.881938,54.76175],[-0.7745,54.653]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.181562,39.72475],[25.014375,39.588313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.993,38.698],[-27.239,38.327]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.239,38.327],[-27.218,38.654],[-26.993,38.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.101703,54.818453],[18.9695,54.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.185,58.0405],[5.552,58.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.7785,58.614],[17.149406,58.661406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.250625,39.284125],[8.138437,39.238812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.971,34.42],[17.68,34.898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.79275,68.481625],[14.995,68.509],[15.195,68.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.807,46.198],[36.763,46.686]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.598,55.297],[-131.192,55.154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.576,41.297],[7.574,41.191]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.261875,43.049625],[5.045574,42.939012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.01125,40.086],[14.248,39.749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.850938,58.455938],[9.769,58.29175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.723727,37.156914],[26.636656,37.207937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.206,39.90675],[18.933187,40.113875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.598,-10.018],[65.054,-10.036]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.516,29.055],[-78.24,28.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.233,55.604],[6.104,55.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.337,45.62],[-8.2565,45.7295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.045,1.826],[73.458,1.425],[76.483,2.014]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.465375,40.399875],[25.639578,40.049898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.580266,60.355922],[21.718969,60.336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.038885,45.242312],[12.95,45.327],[12.741,45.37175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.7005,66.57775],[12.364,66.27925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.995,35.682],[-13.619,35.65125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.555813,43.693922],[14.537562,43.803438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.7585,58.001],[-0.11625,58.3085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.399,53.978],[6.256797,54.157672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.05975,58.5975],[20.960563,58.475219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.781,1.319],[164.764,6.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.25,-15.942],[5.878,-14.821]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.1725,50.673],[-5.092875,50.8015]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[80.838,74.155],[88.359,76.065],[96.183,77.46],[96.927,77.4865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,40],[-62.795,41.531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.645,57.7505],[11.849875,57.6765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.859422,56.530578],[20.503602,56.56732]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.082187,56.717187],[8.0645,56.41325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-10],[60,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.908875,43.650688],[10.025413,43.585063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.434,38.126],[2.076,37.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.157,-18.049],[119.69,-17.066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.8885,57.1615],[7.827,57.062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.469214,55.665447],[10.564031,55.702922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.9255,40.3615],[-9.953,39.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.564188,36.107438],[-6.622344,35.928063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.607,63.001],[6.466,63.062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.179063,36.795719],[26.06975,36.939312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.639,36.413],[31.978,36.498]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.940484,57.706078],[-2.97825,57.921625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.2675,59.591437],[20.398,59.557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.616,54.477],[2.358,54.479]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.981,42.261],[-150.001,42.412]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.431,42.08],[15.497625,42.175156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.2935,38.1955],[-9.196,38.1005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.874875,60.618875],[20.15675,60.833875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.61225,38.884687],[9.432375,38.72425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.3955,32.413],[135.0695,33.191]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.783,48.397],[-30,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.554,56.1665],[5.559,56.272],[5.58075,56.397]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.511,36.379],[-1.3815,36.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.21775,58.104625],[-6.3505,58.1765],[-6.466,57.914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.153977,51.413375],[2.379469,51.685312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.679,28.904],[-15.508,28.874]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.922,21.764],[-120.001,23.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.028195,59.747914],[19.08075,59.86525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.041,37.040719],[25.927406,37.128438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.50125,38.4285],[-9.4335,38.5745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.923,35.735],[-9.081,35.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.446875,40.761688],[24.4365,40.629688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.04875,59.5285],[22.788625,59.436875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.936,-17.107],[56.545,-18.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.183,12.66],[70,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.805,40.872],[28.934125,40.948875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.436188,45.1285],[14.341164,45.222477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.736,31.911],[-71.305,31.4365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.682,35.671],[34.0455,35.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.016,4.908],[-93.521,6.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.964437,36.909937],[26.78075,36.93875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.922,42.338],[4.342,42.089]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.775,64.007],[-14.263,63.766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.962883,57.725977],[10.922016,57.835414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.933,67.998],[10.313,68.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.713,59.054],[12.902,58.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.327,37.81525],[-74.5,37.68725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.841,-10.007],[153.877,-8.772]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.153,39.449313],[0.967,39.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.922,42.338],[4.813,42.188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.951375,56.953625],[6.974172,56.831703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.019367,57.973977],[10.907063,57.982016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.517,53.342],[-37.116,53.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.27425,56.293],[-7.1965,56.750875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.624125,53.82775],[7.50475,53.89825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.648,43.203],[4.749,43.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.321094,38.646359],[23.288,38.571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.99475,56.60875],[18.959125,56.402125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.84,60.721],[-5.075,60.371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.391812,41.269125],[5.8315,41.2835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.361,36.101],[-11.713,36.11]]}},{"type":"Feature","properties":{"pass":"kiel"},"geometry":{"type":"LineString","coordinates":[[9.1045,53.881125],[9.715,54.324],[10.1745,54.369625],[10.218484,54.489812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.0745,-13.939],[64.452,-10.033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.697312,38.561875],[-9.591125,38.638125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.366,57.581],[-1.357438,57.459688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.5715,57.399563],[8.772078,57.447109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.7345,34.424],[33.934,34.3615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.806,52.786],[-4.762828,53.372312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.055,-12.858],[-180,-14.492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.241875,61.227438],[17.103,61.308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.794,15.93],[-160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.37,-2.623],[-106.346,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.838,37.13],[2.054,36.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.94,43.48],[-9.048,43.517]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.948,40.688],[13.0845,40.594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.977,36.33],[-35.96,36.271]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.755,31.203],[25.751,32.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.798,42.866],[17.094,42.8075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.244,63.448],[-20.1435,63.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.768297,58.363934],[10.633281,58.488969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.665,56.8305],[5.20525,56.54725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.304,2.175],[-104.3,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85.735,15.792],[85.80125,15.948],[85.898,16.177]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.61675,36.92625],[23.61075,37.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.767,39.728],[0.753,39.594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.24525,51.617438],[1.3625,51.608063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.261,38.528],[-10.136,38.286]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.957,61.345],[18.1655,61.254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.820594,36.086266],[14.874,36.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.534,1.487],[-110,1.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.8135,44.31925],[8.921125,44.238812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.024188,50.514437],[-1.922438,50.531938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.173,38.322],[122.5915,37.8655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.8735,37.8195],[-9.79775,37.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.246,69.0305],[15.1885,69.164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.5835,53.9915],[-5.618,53.888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.836891,58.662578],[18.20425,58.680586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.483156,38.049844],[20.383469,37.928031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.994,37.909],[-11.155,38.477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.326,25.039],[-81.112,24.627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.001,31.339],[-130,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.418305,40.172133],[13.28775,40.11775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.345,54.925],[5.17375,54.925406]]}},{"type":"Feature","properties":{"pass":"babelmandeb"},"geometry":{"type":"LineString","coordinates":[[43.4725,12.5985],[43.013375,13.174125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.01475,35.73975],[25.26325,35.84125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.797,28.302],[-140,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.099,-19.147],[-99.999,-16.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.457,58.47375],[18.342375,58.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.843,51.497],[-153.215,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.556373,50.14482],[-3.559766,49.923234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.825,32.765],[22,33.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.9,-40.3],[175,-42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.82025,39.847],[-9.665688,39.541438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.313,22.905],[-87.502,22.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,50],[-140.369,50.739]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.927484,36.445719],[23.032266,36.463187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.068,37.655625],[11.885687,37.6785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.956422,57.596609],[17.827719,57.417594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.687,37.663],[5.879,37.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.01975,56.725062],[17.973375,56.86475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.0385,48.5115],[-125.502,48.267]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.198,42.709],[14.06625,42.97975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.428,35.997],[-74.831,35.7905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.34,63.74125],[22.192,63.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.114,40.104],[-155.72,36.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.176,25.627],[-87.502,22.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.224,42.4485],[16.191125,42.334812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.167,43.214],[35.681,43.181]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.257,7.87],[165.979,8.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.1,-18],[170.0035,-9.993]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.622281,56.071172],[12.675594,55.955906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.834,-33.93],[160.002,-33.482]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.769,-41.887],[95.112,-45.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.316,55.694],[6.19,55.7165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.7545,33.6495],[-8.811,34.004]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.541938,57.3945],[20.5295,57.278125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.283234,43.576547],[15.178625,43.549125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.456018,36.948008],[21.456625,36.946]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.651,47.251],[157.208,49.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.886453,58.776234],[10.028375,58.819312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.838,74.155],[80.057,73.624],[79.886,73.201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.868,54.2],[14.165,54.0585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.019,1.034],[-170,2.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.089906,37.972094],[24.187906,38.037906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.422125,51.954],[-5.435813,51.826078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.516,38.253],[8.75175,38.451]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.833031,40.499813],[-68.904,40.413]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.378,39.8945],[12.288656,40.061469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-10],[-4.26,-10.031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.731883,38.950109],[25.609375,38.91375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[62.832,-37.386],[66.837,-37.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.13,65.412],[24.237,65.446]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.859,27.734],[-96.073,28.188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,18.433],[69.999,16.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.973,44.937],[-5.893,47.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.03325,41.7155],[12.011,41.602594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.479375,54.991062],[10.5865,55.045375],[10.721563,55.021375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.48675,36.039563],[22.3185,36.11475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.75,30.985],[123.223,30.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.106,61.33],[-4.498,61.148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.354469,35.785625],[24.231469,35.660031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.1135,21.70575],[113.696,22.666]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.165687,60.515812],[0.472,60.4055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.513625,36.689094],[-3.781688,36.602187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.837688,19.982813],[-75.068625,18.51125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.898,51.979],[-40,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.358,66.137],[12,68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.11575,39.31975],[19.99275,39.06625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.2,47.75],[-58.604,47.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.932016,41.652781],[17,41.7495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.034,35.921],[123.121,35.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.667,66.303],[-19.288,66.271]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.794937,36.143187],[24.691,36.108],[24.584375,36.044]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.229984,45.702668],[13.0955,45.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.472,51.486],[-165.175,51.593]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.4145,54.6625],[16.349195,54.779453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.457,54.937],[19.634,55.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.42275,38.1165],[-0.566,38.182],[-0.748,37.822],[-0.5355,37.587625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.238969,55.420187],[8.384875,55.46825],[8.283,55.294],[8.26275,55.171875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.128,14.351],[-122.365,12.707],[-120,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.11375,43.244625],[9.984953,43.207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-29.076],[-90,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.533391,37.585156],[12.537016,37.42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.878,-14.821],[0,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.173,9.696],[89.328,8.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.632,54.635],[-130.33,54.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.89375,39.8645],[18.54025,39.7745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.149,7.185],[79.8415,6.9275],[79.62,6.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.799,54.303],[15.6235,54.3405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.805,44.188],[29.483,44.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.014,38.806],[25.961781,38.918188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.41,37.364],[21.5435,36.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.06325,54.242375],[5.078,54.476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.284,46.108],[-2.484,46.1495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.566,60.251],[20.395578,60.034437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.1135,21.70575],[113.2,19.619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.666,-35.073],[-32.79,-33.033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.345,55.714],[-5.4365,55.566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-40],[66.837,-37.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.533391,37.585156],[12.341563,37.663094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.314,15.132],[-69.393,15.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.834906,43.888906],[8.625,43.832]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.13752,37.961805],[12.140031,38.108703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.05,37.398],[5.283,37.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115.2,27.5],[-109.7,22.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.69025,53.571062],[4.765,53.684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.406,58.573],[5.250344,58.687391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.877,-34.915],[119.857,-35.011]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.929,36.99],[-71.511,36.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.922438,50.531938],[-1.851922,50.612422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.373,-10.184],[147,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.587,34.269],[-72.287,34.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.559875,38.549625],[14.598,38.38475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.893,57.655],[-162.092,56.731]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.34225,43.293],[9.445383,43.100578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.226,-22.099],[114.282,-21.712],[114.1375,-21.518]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.396,71.225],[20.556,71.253]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.562,30.349],[129.221,30.478]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.0135,39.457],[19.1535,39.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.222562,58.61375],[11.074625,58.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.928812,59.969875],[26.2705,59.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.965,70.355],[60.538,71.291],[63.1405,72.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.836,56.362],[20.8605,56.036125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.766,27.976],[-84.652,27.583]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.064,36.751],[35.926,36.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.105906,53.503531],[6.1825,53.4205],[6.635,53.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.997,35.186],[-9.027,35.3785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.088781,42.997656],[6.20175,42.931625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.15275,36.100203],[27.062875,36.194766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.935,4.992],[-95.795,4.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.414875,50.408125],[-3.426773,50.591031],[-2.715,50.482],[-2.5345,50.453625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.1,41.8],[40.694,42.2035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.965,53.273],[-30.003,53.607]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.8465,58.1685],[17.824375,57.880875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.978891,48.984687],[-2.985313,49.198062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.578875,49.9645],[-0.616695,50.238164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.247625,57.206937],[8.128875,57.01575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.323109,43.159414],[9.34225,43.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.541,36.1325],[-8.545,36.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.2365,36.945],[-8.273,36.750625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.384,53.792],[-156.278,53.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.875,-45.733],[-56.882,-45.737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.755,45.639],[36.859,45.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.727,36.087],[17.002,36.099]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.699469,42.973188],[14.78,43.083625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.178625,43.549125],[15.049625,43.51475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.989,65.59],[-170.375,65.488],[-169.10675,64.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.076906,43.521563],[7.188063,43.259031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.112,34.53],[25.781,34.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.57,38.683],[4.7045,38.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.205125,50.286875],[-2.093375,50.209563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.831,50.866],[-31.404,50.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.6365,36.335],[-3.49425,36.581375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.381,50.316],[176.09,47.682]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.301,11.6],[60,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.8625,43.9005],[9.9175,43.7535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.741,70.078],[-139.14,70.7125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.007375,11.029125],[-21.749,14.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.5,26.5],[128.782,26.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.459,-20.406],[156.451,-19.269]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.02225,57.6885],[20.148688,57.831875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.555438,56.672406],[11.753,56.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.882875,40.3875],[9.87125,40.131875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.012906,57.797512],[9.209812,57.838719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.259,37.172],[-123.127,36.933]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.586,55.326],[5.70875,55.473]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.61225,38.884687],[9.7595,38.7865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.703,-18.3575],[178.256,-19.043]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.88425,40.489875],[-11.1535,40.402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.1405,60.2145],[21.1415,60.0895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.814563,36.16925],[26.799813,36.065156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.311891,59.01743],[10.163219,58.972406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.527938,41.293125],[9.572563,41.142031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.297,12.453],[-80.113,10.776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.393,42.562],[16.224,42.4485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.8895,12.045],[-67.186,14.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.718969,60.336],[21.751,60.222062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.4135,40.9095],[8.399,41.044125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.33575,60.18075],[26.21475,60.0645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.69,58.702],[-3.903,58.712]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.360563,54.301414],[8.231156,54.456891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.041,50.789],[-7.428,50.492],[-6.8195,49.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.96,12.621],[-99.956,12.852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.056,34.144],[-13.329,34.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,5.057],[-167.191,7.242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.244,28.459],[-89.109,28.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.078,39.137],[-74.574,38.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.883,20.224],[-83.8945,21.5975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.45025,56.354375],[-2.528125,56.24425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.385,56.071],[11.254062,56.020437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,30],[-55.347,30.087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.5,-30.5],[-49.574,-32.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.301,-10.024],[170.0035,-9.993]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.669,24.724],[-18.383,25.189]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.194,56.664],[19.327875,56.923625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.414,41.74],[-168.753,41.397]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.34225,43.293],[9.165969,43.406406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.799,51.302],[-10.334,51.313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.038625,56.14575],[15.60525,56.14575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.875,54.236],[13.98675,54.238094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.3,41.9],[146,43.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.069062,55.492625],[15.153191,55.347656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-40],[82.981,-43.182]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.0255,36.3725],[18.145375,36.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9015,38.639],[9.5355,38.678]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.335,44.621],[-154.697,42.521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.123,50.798],[-6.2165,50.608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.667375,55.756125],[19.279375,55.78375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.327,62.855],[19.507,62.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.878,-50],[-80.716,-50.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.355,34.379],[-74.953,33.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.999,37.695],[170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.5,61.1],[-75,63.2],[-78.781,62.473]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.799625,44.006],[28.790438,43.889844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.298031,55.545687],[15.337141,55.427813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.163219,58.972406],[10.178562,58.801852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.626891,53.269203],[4.494438,53.131156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,30],[160,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.648383,54.80768],[-0.471,54.902]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.099937,43.349375],[10.001461,43.321117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.747813,54.142844],[-3.5935,54.1315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.5595,36.356],[-8.541,36.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.417,34.162],[139.3445,34.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.931,-31.162],[-10,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.405719,35.342953],[26.527125,35.095375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.998,34.382],[160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.564,38.396],[13.544812,38.512313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.507219,56.241031],[6.42625,55.798875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.62625,58.077],[-1.55025,58.34625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.8965,49.437],[-6.795844,49.741437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.148,-26.131],[-125.15,-25.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.008375,43.8295],[9.9175,43.7535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.232,26.002],[143.742,25.647]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.761375,52.509625],[-5.860188,52.41475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.298,39.006],[-72.211,38.8935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.049625,43.51475],[15.151125,43.399875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.92525,66.2895],[12.818,66.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.894,40.96],[-39.123,40.982]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.225,47.375],[-9.12,47.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.39725,43.766875],[8.20375,43.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.081813,36.791625],[25.080813,36.912281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.932,35.448],[-45.026,35.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.616,46.556],[-3.8225,46.443]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.97,46.43],[-154.286,44.877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,0],[-149.999,9.999]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.0205,47.744],[-5.129834,47.736476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.985289,54.818844],[15.848594,54.805672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.089,36.221],[21.777297,36.300844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.6205,58.5255],[-10.137,58.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.556031,61.746641],[4.4705,61.47825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20,-50],[15.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.731,-35.207],[-49.099,-35.201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.448,18.563],[-161.866,17.573]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.051,57.140375],[-6.7045,57.088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.104,44.634],[-125.32,43.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.289,43.92],[-13.361,44.516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13,66.242],[-13,66.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.416,28.907],[-94.417,28.082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.603562,56.827281],[18.205312,56.75725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.622344,35.928063],[-7.120647,35.925677]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.089,36.017],[-6.2465,36.04875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.463125,57.949875],[9.373,57.90075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.9,36.74475],[13.782219,36.822125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,1.173],[-110,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.3445,50.6435],[-7.984,50.0715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.57,40.33],[2.728,40.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.662,58.578],[-7.198,58.384],[-7.9135,57.7845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.299922,42.778953],[17.178562,42.905812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.981,66.418],[-14.501,66.334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.802719,43.645828],[9.908875,43.650688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.926,43.638],[-5.4665,43.5805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.320172,56.856264],[12.495,56.774],[12.8315,56.649]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.834,39.62075],[7.587375,39.788063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.304063,56.600563],[20.224305,56.801758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.161,22.377],[-86.165375,22.086781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.802,44.843],[-4.893,44.7455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.578812,56.433813],[-2.384,56.611031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.723727,37.156914],[26.568037,37.037578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.697,35.8635],[34.682,35.671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.18,38.019],[-0.27,37.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.2975,53.4695],[-10.235304,53.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.672,-0.333],[-95.001,-5.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.025,34.514],[35.052,34.348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.574,35.383],[20.597,35.782]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.383469,37.928031],[20.748455,37.943438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.362,38.533],[14.2545,38.467]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.041,38.4495],[-29.9955,37.929]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.6535,47.638],[-4.018,47.51025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.374312,56.094562],[10.30575,56.178203],[10.313875,55.911109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.834,43.617],[-79.343,43.619],[-77.183,43.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.43125,-2.88],[165.866,-5.099]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,20],[-151.254,21.329]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.6535,47.638],[-3.942,47.592]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.775875,45.926],[-7.521,46.247]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.6365,54.431],[14.485,54.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.355875,43.0495],[17.633,43.053]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.186,1.951],[56.353,5.899]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.284,52.8025],[-5.5765,52.78375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.164406,40.368625],[17.179248,40.13094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.821,34.546],[23.764,34.7415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.001,-28.244],[98.721,-28.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.692079,44.314373],[8.8135,44.31925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.261875,43.049625],[5.273,42.9375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.475,57.061],[10.724063,57.16375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.349195,54.779453],[16.30375,54.65925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.488,25.657],[38.641,21.138]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.6805,39.26],[9.64975,39.15775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.4315,61.0545],[1.505,60.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.301738,38.272168],[13.456188,38.359125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.828,48.899],[-46.515,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.569,53.431125],[5.716156,53.609313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.893,-17.372],[-149.682125,-17.353625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.00175,70.0805],[20.85,70.055],[19.7915,69.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.932,52.677],[-171.878,53.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.366,30.149],[122.83,29.953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.004344,40.877812],[13.145797,41.031211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.092625,38.133375],[0.2715,38.46075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.153,52.3015],[3.035,52.40575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.263,66.142],[-19.801,66.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.374,34.805],[-74.355,34.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.291,-5.762],[113.0025,-6.292]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13,65],[-13,65.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-0.465],[-99.672,-0.333]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.831,35.7905],[-75.0865,35.628125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.001,42.47],[-160.58,42.439]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.855,38.965],[4.7045,38.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.4325,36.1165],[-72.939,36.22]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.454969,38.787375],[8.560625,38.823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.187,-28.287],[-165,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.571,26.155],[-69.686,27.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.998,36.001],[30.624,36.4315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.526,41.952],[3.361312,41.888563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.439,43.023],[28.619375,43.390875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.586813,60.324062],[26.93675,60.439312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-30],[-119.999,-24.322]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.68875,39.76825],[25.673664,39.548664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.246688,55.863188],[16.290563,55.696742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.002,-36.964],[160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.76282,43.569477],[-3.639,43.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,30],[-32.827,30.053]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.516,41.623],[11.7015,41.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.9065,4.8305],[2.05475,4.873125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.478031,54.635594],[8.387,54.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.239,50.819],[-12.369,51.078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.656,34.712],[26.933,34.704]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.519,20.509],[-166.115,24.118]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.494,52.868],[-5.284,52.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.731,16.4215],[-154.685,15.481]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.179625,33.617],[31.603,32.717]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.419602,53.471922],[0.729812,53.586063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.495,32.083],[-71.294,31.627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.113,35.912],[-2.716,35.924]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.162,45.955],[-4.37675,45.8435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.112,45.402],[-147.516,42.782]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.46,-36.56],[164.126,-36.193]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.152,58.626],[-1.7895,58.389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.6,12],[-86.808,11.109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.802,35.7655],[12.682,35.926]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.002375,36.179625],[12.975875,36.46325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.954625,50.379375],[-1.801687,50.291313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.51425,67.90525],[14.396,67.832],[14.302125,67.72325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.528859,50.208109],[-1.84143,50.167727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.419602,53.471922],[0.5025,53.583]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.113,45.402],[-135.697,44.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.1815,66.09125],[-21.0655,66.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.249312,57.976813],[11.373734,57.904672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.3,-39],[146.433,-39.167]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.808,-9.031],[136.878,-9.694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.812,48.971],[-8.72,49.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.559875,59.018375],[10.456422,59.020891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.0285,39.4135],[23.8645,39.3795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.358625,54.525687],[11.244311,54.539781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.455,38.392],[-71.259,38.249]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.766969,58.820484],[10.805,58.647625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.742,51.085],[3.742,51.109],[3.801,51.225],[3.848625,51.372312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.713,52.9865],[4.7,53.1665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.011,42.2895],[16.887,42.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.845,54.0785],[1.012875,54.0385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178,58],[-179.908,54.605],[-177.29375,54.63925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.571437,54.234938],[15.374,54.217]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.3735,57.317],[23.9625,57.13125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.8995,54.911],[5.76,54.7775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.575063,56.531188],[11.732125,56.57975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.774,11.614],[-66.75,11],[-69.234,12.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.795,38.639],[-71.82375,38.36125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.904,40.413],[-69.491938,40.297187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.693,0.922],[-89.51,0.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.98,46.139],[-7.488,46.876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.255,51.683],[-161.84,51.749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.719,7.899],[-79.956,7.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.823,35.719],[14.224,35.846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.744688,48.002531],[-5.6915,47.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.362,58.154],[21.475,58.068]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.475707,37.775152],[26.318219,37.858234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.624,36.4315],[30.837,36.586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.558875,42.49275],[5.45725,42.572]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.110813,42.446813],[-9.256,42.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.62875,57.91475],[7.863875,57.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.84575,35.60475],[17.761,35.673]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.279,-5.998],[-81.034,-6.294]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.3005,54.952],[7.204,54.754]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.396,38.038],[-74.327,37.81525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.383008,44.545586],[12.51375,44.495125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.732074,35.143287],[23.683,35.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.729,25.379],[-86.682,23.109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1305,61.457],[3.8,61.346],[2.893,61.197]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.874625,57.731375],[17.793297,57.53475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.563125,46.766312],[-2.622,46.884969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.3805,37.5765],[-9.1675,37.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.445,45.863],[-1.4055,45.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,0],[-165,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5,-35.386],[4.606,-35.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.892,40.07875],[2.087,39.791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.688,-0.812],[126.886,-1.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.004437,42.9335],[7.595469,42.98625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.184,47.355],[-40.002,46.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.642,57.259],[-5.897,57.485],[-5.81925,58.022875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.83925,64.762188],[-13.9585,64.739437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.909,55.909],[20.8605,56.036125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.010063,36.171625],[-5.282375,36.112375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.686125,68.023125],[14.51425,67.90525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.91425,66.23075],[-18.77825,66.22925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.080867,37.187129],[25.927406,37.128438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.864,42.34],[-37.685,42.592]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.572,36.697],[-72.835,36.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,30],[167.48325,19.464875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.481,-33.785],[-10.817,-30.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.44325,58.742625],[5.250344,58.687391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.793,35.509],[-74.707,35.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.875,49.623],[-5.7535,49.327]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.556375,36.747],[-8.623,36.61075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.108,6.04575],[-53.948,5.812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.765,36.649953],[21.615625,36.79425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.99075,53.869],[8.060965,53.768402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.336,65.35],[-13.219,65.228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,-50],[160,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.852121,51.573113],[-4.017969,51.501]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.22275,48.4845],[-7.052,48.628]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.359,-37.563],[45,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.59,55.428781],[14.746152,55.300796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.02875,43.631],[8.205,43.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.003294,-13.145794],[-164.98375,-15.20575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.421,45.152],[-1.623,44.6505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.058477,36.863164],[27.046266,36.97412]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.89,-45.405],[-10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.97825,57.921625],[-2.929,58.205],[-2.914094,58.455031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.522375,59.71075],[23.381172,59.662922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.8645,54.6055],[5.00075,54.44225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.899,-5.251],[-81.25,-3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.98,54.65],[-132.517,52.806],[-131.99,52.488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.607,52.89125],[-5.494,52.868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.795,4.15],[-94.382,4.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.8605,28.702375],[-15.32175,28.284375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.339,42.025],[-70.118,42.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.632688,58.402563],[5.535094,58.613656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.167406,37.277938],[26.080867,37.187129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.023,56.034],[4.095,56.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.698,-3.598],[109.38,-2.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.069625,50.753687],[-0.191719,50.766719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.32525,42.0665],[15.703383,42.106164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.193945,36.375039],[23.358516,36.337297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.476125,36.591625],[21.40825,36.68125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.6,36.2],[-0.637,35.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.8,26.3],[-79.214,26.341]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.169,-24.419],[-90,-29.076]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.796552,53.753253],[4.765,53.684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.362,49.929],[-7.636,49.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.756016,58.328711],[8.738125,58.169813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.4855,43.07],[4.644,43.1015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.235875,40.468812],[14.539281,40.203156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.423719,50.409594],[-1.48575,50.30325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.448,40.61],[-69.3395,41.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.153922,46.763398],[-3.25975,46.68625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.825,24.219],[-82.149,24.392]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.911703,37.915875],[-9.121,37.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.485219,37.115625],[13.418625,36.985625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.019,-2.681],[117.7265,-3.4845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.97,46.43],[-155.113,45.402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.532187,36.11375],[29.3605,35.9945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.021,29.222],[-150.669,29.266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.108125,38.30125],[22.161,38.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.536,52.894],[4.494438,53.131156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.631336,38.342301],[22.4925,38.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.210625,42.20618],[16.087812,42.21875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.93975,64.01575],[22.101,63.809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.669,50.041],[0.512,50.016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.9895,64.50825],[21.73975,64.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.263,66.142],[-20.447,66.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.60775,43.364375],[7.852,43.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.141687,41.374812],[9.008375,41.3605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.684125,38.549875],[14.559875,38.549625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-103.814,-6.771],[-102.534,-7.517]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.341375,40.488125],[14.235875,40.468812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.001,50.89],[-30.831,50.866]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.274,29.688],[-79.286,29.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.3685,25.8585],[-26.469,27.424]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.749422,54.994109],[15.8615,55.27075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.017,64.8055],[-23.851,64.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.947,53.862],[5.003969,54.116563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.487906,54.9175],[11.605922,54.988219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.0935,-11.134],[-1.989,-10.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.267,55.302],[13.3815,55.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.409156,42.964031],[5.261875,43.049625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.442812,43.890937],[15.211125,43.996375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.151,-35.957],[160.002,-36.286]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.865,48.792],[-7.029,48.807]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,60],[-10.137,58.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.303,-18.057],[-160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.716,65.1395],[-13.546375,65.172562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.07,65.439],[-22.269,65.4005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.063,35.076],[-12.964,35.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.223,66.866],[-57.959,71.212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.360563,54.301414],[8.16725,54.30925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.438,47.764],[-122.495,47.923]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.499625,55.4135],[18.613125,55.3965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.790875,32.940375],[30.7,32.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.728145,49.875125],[-1.668875,49.755125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.355,56.022],[-3.192,56.046312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.808375,38.9915],[1.2575,39.2385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.118,53.17],[-10.086,52.773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-10],[-19.999,-14.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.121,31.234],[-70,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127,8],[126.4,10.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.393,34.686],[23.035,34.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.172,35.80525],[22.968,35.911]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.255,37.490625],[15.331537,37.454645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.4305,55.775],[5.575875,55.811]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.409797,43.429766],[16.411613,43.265967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.778,58.673],[-1.4245,58.776875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.341,44.621],[13.29,44.7445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.002,43.617],[-50.002,46.559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.776,48.754],[-122.7395,48.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.513219,41.580812],[3.62275,41.78625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,62.1],[-178,58]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.699,-12.457],[174.076,-13.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-106.117,3.931],[-105.304,2.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.47125,40.87125],[12.58675,40.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.02875,43.631],[8.112875,43.403375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.5235,41.6615],[8.35825,41.65725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.562,14.556],[-61.203,14.202]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.7785,59.9485],[24.6945,60.083188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-30],[-146.83,-33.447]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.87875,39.71975],[1.1325,39.7455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.585977,55.589227],[14.818875,55.517125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.432738,36.097727],[23.416,35.98]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.40825,43.841641],[9.661094,43.761875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.616,41.664],[3.513219,41.580812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.998,-52.433],[-47.353,-52.757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.243,56.234],[16.14425,56.12275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.5735,56.153375],[-6.95925,56.04425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.334852,55.396055],[7.2315,55.50075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.0465,36.943],[12.7285,37.01075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.574313,37.03775],[13.485219,37.115625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.227781,60.117844],[24.898484,60.112219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.521,-34.869],[165.34,-34.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.387625,41.58325],[11.516,41.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.001,37.64],[-15.088,37.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.3635,38.46],[1.569,38.308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.06325,54.242375],[5.379,54.449]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-30],[-131.54,-28.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.451,34.839],[-53.599,33.913]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.69525,44.439875],[12.695,44.5645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.682,35.712],[26.822,35.812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.130758,56.077344],[10.985047,56.042883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.638437,56.337063],[11.680563,56.1585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.357625,53.318875],[0.205,53.503],[-0.137437,53.632687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.633,57.47],[-7.495,57.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.7485,69.081125],[16.32375,69.22475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.293062,58.015375],[6.127625,57.972062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48,0],[-43.124,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.658359,36.855695],[24.86725,36.909336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.999,-27.257],[-169.999,-26.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.605,42.748],[7.599,42.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.14,23.327],[-153.635,23.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.499,41.42925],[10.724375,41.565875],[10.867687,41.646563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.932,38.898],[18.667,39.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.8645,39.3795],[24.0375,39.2665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.93,47.868],[-13.703,48.116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.369,51.078],[-10.799,51.302]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.464344,37.906844],[25.596625,38.007312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.018,57.11475],[7.216203,56.968812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.888,-45.402],[-142.555,-42.861]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.753,56.857],[11.895656,56.986219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.34275,36.946375],[-10.25825,37.08725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.658,60.46175],[19.972,60.424]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.168,43.147],[-10.151,42.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.438937,55.812125],[14.429375,55.577687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.07825,41.38225],[-70.146,40.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.60825,53.644062],[5.374,53.619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.992,35.874],[34.82225,35.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.22925,57.7345],[-1.983969,57.777156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.864,-15.03],[123,-16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.009704,58.896689],[18.007125,58.895625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.33725,58.64225],[21.155563,58.563688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.361969,52.951855],[0.359,53.11625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[112.625,-21.598],[112.687,-21.911]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.238,25.855],[-75.2005,24.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.526,38.458],[-27.239,38.327]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.434313,54.599125],[10.318812,54.628844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.32,40.807],[25.625,40.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.762,30.418],[-70,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.974,31.633],[-73.851,32.0965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.538,40.251],[-72.46625,39.45575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.051312,49.472781],[-5.153437,49.54475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.908625,42.902125],[16.112625,42.917938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.228125,41.423687],[11.45575,41.3615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-101.61,68.499],[-100.122,69.702]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.405,15.26],[-135.307,15.473]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.356414,43.345578],[10.425,43.356]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.420781,57.265594],[8.587523,57.231133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.2455,53.95],[-6.114562,53.977125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.423472,51.172862],[1.522187,51.093812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.471,35.46425],[26.354,35.607]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.016,4.908],[-88.911,5.508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.463375,50.21625],[-4.317813,50.068906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.692,36.352],[-69.725,35.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.5925,42.138],[18.3195,41.7635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.668,29.132],[-93.214,29.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18,-35],[17.181,-34.101]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.294531,43.294875],[5.141,43.237]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.437,19.216],[146.113,20.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.321,-4.135],[125.1,-3.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.373375,41.273875],[8.405,41.51825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.348,58.1305],[19.498,58.0105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.3275,60.784],[21.379,60.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.408,-9.422],[5.2,-3.536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.250375,38.670625],[15.343875,38.580125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.74775,53.742875],[6.84375,53.8065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.570812,63.52575],[21.382,63.9745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.7825,43.889375],[14.777938,43.697437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.148,-0.519],[73.113,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.333969,36.419],[26.232891,36.472391]]}},{"type":"Feature","properties":{"pass":"malacca"},"geometry":{"type":"LineString","coordinates":[[103.6,1.1],[102.893,1.498]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.990063,38.303562],[24.854656,38.153594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.81,38.429],[-11.49925,38.24975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.700063,59.883688],[5.534906,59.770281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.497,21.356],[35.488,25.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.257188,57.102688],[20.333,57.266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.846,60.098],[-0.642,60.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.214,43.747],[-10.195,43.496]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.181469,58.107875],[21.154875,57.74375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.320172,56.856264],[12.48975,56.506125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.95325,62.944],[20.1685,62.892125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.415,39.089],[19.531,39.168125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.578,-3.971],[55.3,-4.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.26,64.27],[-168.251,63.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.404,63.2245],[20.38225,63.0945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.9,14.4],[119.903,14.289],[119.9145,13.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.632,54.635],[-131.162,54.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.836,-22.385],[112.687,-21.911]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.886,18.469],[-69.382,17.704]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.975875,36.46325],[12.894,36.694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.946125,37.543375],[11.885687,37.6785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.358,36.408],[27.2455,36.38575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.16725,54.30925],[8.125719,54.198719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.468,65.624],[36.457,65.933]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.131,38.92],[-30,38.862]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.9525,58.354],[16.834,58.063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.973812,35.072219],[23.732074,35.143287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.18325,57.69425],[-0.286,57.876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.3955,32.413],[131.818,30.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.958,48.379],[-6.94,48.167]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.168,37.168875],[24.36323,37.119352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[81.9,5.9],[80.1,5.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.4885,35.7575],[24.610125,35.743625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.382,27.601],[-82.663,26.451]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.048891,56.557531],[18.154,56.293],[18.23175,56.1155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.775875,45.926],[-7.875,45.802],[-8.174,45.438],[-8.214,45.383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.23325,59.96575],[20.064,59.959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.091,29.844],[123.3165,30.8885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.892,52.268],[-9.949875,52.440313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.0795,59.5895],[24.079406,59.485641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.268,45.621],[-1.372,45.281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.558,37.1],[-72.572,36.697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.59,36.708375],[24.439,36.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.44725,39.45875],[-60,39.341]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.80625,43.211125],[14.948812,43.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.393,37.939],[18.586,38.761]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.852359,35.743156],[24.770766,35.906578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.249,55.431],[-26.354,56.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.766562,54.737938],[15.848594,54.805672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6725,56.3195],[6.532,55.9855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.0715,39.59325],[0.148094,39.671781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.16625,57.983],[-6.21775,58.104625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.241,47.716],[-7.8185,47.6855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.974172,56.831703],[7.06025,56.556875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43,-12],[41,-10],[40.0135,-6.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.5835,55.13],[11.3995,55.043813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.497187,55.448062],[7.334852,55.396055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.418,25.319],[-87.837,26.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.377,51.071],[2.135187,51.086938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.482,59.197],[10.456422,59.020891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.7,46.8],[-50.001,47.579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.133,7.185],[60,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-10],[-168.504,-8.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.59975,53.37525],[-4.726773,53.505562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.737563,50.055656],[-1.6285,49.975844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.506,48.0165],[-5.484,48.2365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.758984,57.331633],[11.901625,57.223375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.855,37.292],[15.692875,37.29175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.162812,37.692531],[11.885687,37.6785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.487125,60.2875],[4.1825,60.43825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.984953,43.207],[10.001461,43.321117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.331,59.298],[-0.177,59.329]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.922625,56.101437],[11.837977,55.960992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.98,10.008],[-100,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.764,40.314],[4.641,40.081]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.604,48.324875],[-4.598,48.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.689,37.364],[-9.53575,37.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.79199,40.292594],[11.6245,40.3635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[79.103,2.787],[79.545,2.607]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.392781,37.305688],[11.51,37.339]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.926,36.464],[18.692,36.56]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.76575,59.85875],[19.71725,59.737344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.98,49.773],[-4.082875,49.795625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.6555,40.221],[18.835344,40.158781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.703,47.604],[-6.8195,47.18975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.814,36.835],[1.396,36.939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.591102,36.976594],[24.503375,36.86575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.7825,37.5575],[24.678086,37.380227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.986,45.724],[-13.361,44.516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.792,50.186],[0.6595,50.30075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.70875,55.473],[5.575875,55.811]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.573383,37.237562],[24.488828,37.066336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.689438,58.726094],[10.496875,58.794438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.347,37.333],[12.511625,37.280813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.113,53.237],[-4.088,53.26],[-3.975875,53.351812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.768297,58.363934],[10.824063,58.20675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.129,64.511],[9.941,64.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.861125,52.4445],[2.54925,52.57575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.251,60.57825],[19.311906,60.771219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.697797,38.693305],[25.609375,38.91375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.382613,43.609586],[7.462359,43.401703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.656719,43.130891],[9.704461,43.254555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.81,-23.097],[53.889,-23.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.44325,58.742625],[5.535094,58.613656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.0035,35.914],[23.9775,35.743469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.98,-32.153],[-3.824,-34.158]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.416,58.758],[2.13,58.767]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.45457,45.588383],[13.454773,45.46168]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.502,50.492],[-1.248141,50.527687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.821,19.834],[-66.754,19.714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.542,39.544],[6.922,39.399]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.510625,38.706875],[-73.814,38.062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.507,-6.464],[129.147,-6.033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.362,49.929],[-7.25675,49.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.6,34.4],[127.6,34.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.659,39.505],[6.922,39.399]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.380375,49.082875],[-5.623812,48.989594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.51025,36.64],[-2.55,36.49975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.669,-12.7935],[108.351,-16.445],[109.737,-20.376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.241,43.515],[36.395,43.2535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.956,12.852],[-100.307,12.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.255,27.971],[49.934375,28.807625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.315,69.64],[16.2055,69.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.3,37.9],[128.538,39.424]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.5805,35.0075],[31.3675,34.8885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,19],[120,19.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.758,39.5],[9.7155,39.2355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.472,-55.092],[-62.539,-54.669]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.861,41.096],[10.431,41.148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.462,61.169],[19.391625,61.266875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.586813,60.324062],[26.479,60.321]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.2675,59.591437],[21.131,59.451]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.427,24.693],[-125,25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.1295,38.545],[9.432375,38.72425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.889,-45.403],[-150,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.213,36.365],[26.232891,36.472391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.3965,54.7765],[-5.432391,54.645688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-4.462],[-114.025,-6.029]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.076,-6.13],[-132.678,-10.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.892,30.339],[-64.663,30.087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.004,-9.87],[-169.055,-10.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.9255,45.6835],[-130.003,44.692]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.629129,42.695691],[15.908625,42.902125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.702,56.451],[18.851,56.53925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.334,40.431],[-73.538,40.251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.697,48.078],[-6.568,48.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.73,70.69],[-54.071,70.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.161438,56.555562],[19.373,56.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.003,45.457],[-140.002,46.614]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.849,-3.255],[-32.507,-3.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.569039,45.08082],[13.583,44.966]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.580625,42.8435],[9.5329,42.734301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.835453,51.697],[-5.802,52.02325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.687,33.213],[-8.7545,33.6495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.390594,58.622781],[17.647125,58.605219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.074,36.89],[-9.5865,36.87825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.588156,58.875719],[-2.449,59.08475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.001,33.951],[31.179625,33.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.20025,43.483],[-9.4535,43.4145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.4745,54.709],[12.799844,54.771531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.8,46.231],[-130.002,46.123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.352914,37.560074],[25.227953,37.48968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.469,42.281],[-10.842,41.209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.642281,63.1215],[7.791,63.166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.926375,53.418125],[6.769625,53.588031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.944,56.853],[12.026375,56.91575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.685,28.422],[-70.032,27.123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.48725,40.60825],[1.234,40.484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.861,30.269],[-73.037,30.94525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.366,41.299],[3.875,41.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.549,53.694],[1.766,53.587]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.666,36.025],[27.616375,36.217125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.11,-45.404],[30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.149312,36.059062],[-5.282375,36.112375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.649,56.724],[17.868,56.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,5.057],[-31.244,1.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.779031,42.454313],[15.838797,42.578672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.468,40.492],[-69.448,40.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.74,5.229],[-86.7,5.932]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.131,68.952],[16.7485,69.081125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.5,64.3],[-168.04,64.274]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.64,46.202],[-3.8225,46.443]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.269317,43.531904],[10.356414,43.345578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.507,7.557],[157.594,7.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.647125,58.605219],[17.822836,58.459117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.114,40.104],[-160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,0],[-180,-14.492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.993,49.5345],[-2.216,49.47325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.097625,40.112875],[4.678,40.29425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.9535,38.697],[124.3,39.4],[124.1,38.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.163,-36.158],[40.001,-36.949]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.0205,47.744],[-5.162449,47.89148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.4455,62.8875],[20.4905,62.74475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55,25.277],[-57.047,27.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.037641,43.936484],[14.055,44.086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-30],[-37.396,-32.831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.836891,58.662578],[17.976,58.642]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.333,51.659],[-7.766063,51.692312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.079,51.506],[0.2405,51.47825],[0.366,51.451],[0.49475,51.492875],[0.61625,51.50225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.878,53.495],[-176.955,52.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.866,17.573],[-162.839,16.706]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.249,-8.7],[106.669,-12.7935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[81,13],[81.232,11.931]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.227922,54.829687],[8.1295,54.8555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.293062,58.015375],[6.390187,57.797875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.571,-11.743],[159.48,-10.264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.928,61.288],[1.18175,61.662]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.613,34.743],[-67.057,35.103]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.172625,58.456],[5.185,58.0405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.333,26.737],[-79.458,26.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.455937,38.751469],[20.225,39.30825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.223039,58.342094],[11.309773,58.28552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.73,20.774],[-145,25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.126,27.642],[-67.081,27.243]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.94275,43.39875],[13.7705,43.336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.544531,54.906031],[7.638312,54.561875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.766,49.223],[-6.6815,49.0915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.459,62.7485],[19.95325,62.944]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.924,12.404],[57.557,11.283],[59.913,10.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.5775,49.83],[-8.534,49.9535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.370969,43.074438],[16.5385,43.0485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.1345,38.6975],[-9.299875,38.631281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.01875,54.0905],[-0.086,54.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.206,26.972],[-173.653,26.549]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.8075,55.13525],[-5.804,54.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.817,46.568],[-167.338,47.058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.937,10.263],[-61.7985,10.6865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.209125,59.737875],[19.121,59.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.383,20.997],[124.32,21.287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.30225,49.300625],[-5.51575,49.1745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.141527,55.233],[14.282291,55.167619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.961,0],[-28.143,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.810187,59.548],[23.81175,59.435125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.004,55.657],[-30,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.746188,57.418188],[-1.586781,57.449531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.388,42.5075],[-133.522,43.754]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.5515,44.0775],[-9.973449,43.527437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.689344,41.69],[8.432875,41.806375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.468312,39.035625],[25.39425,38.94475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.5295,57.278125],[20.61725,57.082688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.0855,40.8505],[12.359,40.67875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.78075,36.93875],[26.723727,37.156914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.76325,56.776],[19.832,56.341]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.013,60.155],[29.4,60.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.272703,60.148813],[5.135,60.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.106922,37.287437],[11.950375,37.42875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.994187,42.495688],[29.087,42.536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.953,49.016],[-40.001,48.819]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.701,41.083],[2.031125,41.131]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.405,42.106562],[11.2775,42.1305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.062148,42.430477],[10.919633,42.400891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.363375,50.070875],[-1.482844,49.987563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.4495,36.493],[-9.224312,36.567625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,30],[-165,35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.3675,34.8885],[30.735563,34.47975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.5605,42.7425],[8.458,42.82525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.688,63.0455],[19.84525,63.1775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.819,53.993],[1.94,54.027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.404,39.78525],[13.30525,39.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.101,70.8845],[29.113,71.027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.864,58.245],[9.850938,58.455938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.766,27.727],[-88.637,27.227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.336219,53.704219],[7.124805,53.676789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88.553,20.312],[88,21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.514625,41.004563],[2.397938,41.180969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.021,32.031],[-77.322,31.471]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.197437,44.300875],[13.234,44.193],[13.477141,44.123984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.12025,40.358],[12.910375,40.288187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.0975,69.6785],[45.498,69.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.161,67.069],[42.294,68.052]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.427,-23.882],[153.584,-18.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.967,50.653],[-4.986,50.839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.441,4.494],[-44.77,4.079]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.432,41.411],[39.449,41.424]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.789,26.774],[-75.406,26.452]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.134,49.447],[-6.17575,49.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.13575,49.6995],[-2.96,49.5905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.235062,36.074],[24.236125,36.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.608562,41.1935],[13.715,40.98],[13.707706,40.727291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.3155,57.931],[10.443266,57.8495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.326656,57.498406],[17.436,57.507],[17.626312,57.555813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.159,43.639],[-7.0265,43.5825],[-7.446,43.79575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.3785,51.4775],[-6.612,51.558]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,20],[-121.888,18.212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.223,30.94],[123.3165,30.8885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.62,47.1905],[-2.616172,47.031484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.153,39.449313],[1.291062,39.408125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.28375,36.7175],[26.179063,36.795719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.678086,37.380227],[24.54525,37.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.963688,43.633125],[9.1145,43.561125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.613125,55.3965],[18.757711,55.171898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.414,41.304],[2.397938,41.180969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.037688,10.012625],[65.056,8.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.385,48.321],[-5.447,48.506]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.024,41.212],[17.646,41.43525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.1745,32.696],[-17.072,32.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.859875,39.55475],[24.78375,39.332875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.105,-39.958],[-55.99,-44.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.959125,56.402125],[19.161438,56.555562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.888,-45.403],[-160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.711844,45.123281],[12.857516,44.946891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.376188,41.221563],[12.179,41.12775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2105,43.502],[14.4365,43.29025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.005437,40.542563],[14.116328,40.562297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.1,33.2],[13.549,34.763]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.223,36.6],[-2.7155,36.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.321125,60.134563],[21.1415,60.0895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.828187,58.286062],[19.896906,57.983906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.406,58.5545],[21.306,58.274]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.59675,56.417125],[20.5935,56.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.0035,-9.993],[169.42,-9.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.738563,55.471],[-5.0125,55.247]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.301,11.6],[52.924,12.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.780062,59.664125],[23.810187,59.548]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.002,-43.455],[82.981,-43.182]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.014422,42.730695],[9.842281,42.673063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.9315,35.91875],[-8.192,35.917]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.002375,59.752625],[20.058375,59.618047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.5155,54.5465],[12.34675,54.536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.99,25.264],[-73.912,23.8015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.305813,40.422359],[2.4275,40.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.852,38.87],[-70.821,38.76]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.507,46.143],[146,43.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.713,29.434],[-17.8,29]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.921047,55.630969],[10.945,55.789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.882,41.349],[-129.022,40.926]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.771045,57.590462],[10.592422,57.555328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.9245,51.2465],[2.728156,51.331844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.1075,41.753],[-9.1865,41.63375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.467,44.177],[-3.584,44.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.57375,48.27575],[-6.424,48.494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.26475,37.347],[18.361,37.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.785219,47.112094],[-2.938438,47.132688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.389406,56.289125],[19.31,56.043],[19.277,55.919]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.167,56.619],[-2.22475,56.46925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.3,-11],[121.528,-9.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.17475,40.54075],[8.0365,40.67025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.682,23.109],[-86.273,22.218]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.17,58.304],[21.23075,58.204]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.64925,46.56025],[-7.987,45.914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.175891,59.425],[4.969,59.316875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.5115,44.431],[37.434,44.296]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.426,59.304],[20.682,59.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.327,37.875],[11.462,37.828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.175891,59.425],[5.126625,59.117875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.94,54.027],[2.808,54.541]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.674594,55.428625],[12.723063,55.518375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.136,36.117],[-70.789,36.836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.2465,52.74075],[2.21625,52.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.1365,51.54375],[-5.192016,51.640203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.546375,65.172562],[-13.474,65.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.728,40.933],[6.511,41.217]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.074,42.3075],[-9.368063,42.244563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.183,43.66],[-76.389,44.108],[-75.305,44.844],[-73.544,45.5095],[-73.04,46.12],[-71.888,46.669],[-70.887,46.918],[-68.73,48.703],[-65.4885,49.7935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.625,40.648],[25.382375,40.479094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.940734,54.140664],[7.745688,54.37375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.519375,54.60625],[15.394375,54.535219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.514453,37.487023],[24.54525,37.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.008,66.536],[-18.3925,66.38375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.4365,43.29025],[14.468312,43.437344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.751,32.442],[126.54,33.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.1325,39.7455],[1.24,39.891],[1.363,40.069],[1.43,40.173437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.00825,37.67925],[26.897,37.592],[26.802625,37.517875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.667,41.576],[-170.534,41.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.981,34.425],[133.262,34.084],[132.952,34.151],[132.488,33.76],[131.952,33.609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.072,40.863],[11.067937,41.153672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.348,35.7705],[28.913,35.802]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.848,27.676],[-77.498,27.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.735,65.078],[-23.26175,64.9965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.036,50.25],[-5.023,50.244],[-5.074969,50.118117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.244311,54.539781],[11.098937,54.607438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.80925,35.90075],[-12.6765,35.9635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.195,27.85],[121.52,27.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.628,37.482875],[12.533391,37.585156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.662,60.948],[19.777687,60.865812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.334,68.527],[14.32,68.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.303,-55.025],[-77.268,-56.526],[-80,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.8105,39.4265],[1.460469,39.418156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.948125,39.674809],[24.882625,39.80275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.174,58.228],[22.52325,57.8175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.144,38.445],[13.928,38.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.307953,49.198984],[-2.4475,49.17025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.798,63.666],[21.510375,63.660875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.30175,40.94275],[18.199,41.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.9415,57.48925],[8.772078,57.447109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.092875,50.8015],[-4.986,50.839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.569,53.431125],[5.4795,53.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.647938,43.5355],[8.6315,43.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.309,63.786],[20.336,63.709],[20.34,63.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.518625,38.61025],[8.607281,38.723094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.840234,37.870719],[15.9425,37.828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.846688,38.314312],[24.921062,38.454375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.987,39.301375],[12.905,39.207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.717,32.66975],[-16.685,32.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.7855,56.029],[17.636,55.946188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,38.763],[150.941,39.132]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.1075,41.753],[-8.953281,41.528719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.765,36.649953],[22.136,36.5255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.011,42.207],[3.8555,42.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.19525,52.051812],[3.153,52.3015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.913,40.495],[9.882875,40.3875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.352422,55.020484],[-1.239625,54.994609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.511,2.548],[-94.382,4.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.102,32.311],[-77.561,32.171]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.555,45.3],[30.5215,45.18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.5945,40.452],[-71.661,39.652]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.418625,36.985625],[13.34925,36.871625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.34432,58.758523],[10.158938,58.655438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.972,43.33125],[8.811312,43.297313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.615,44.391],[12.684,44.30575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.808125,41.85975],[3.62275,41.78625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.79,-33.033],[-30,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.992188,43.27725],[15.089797,43.182266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.8765,41.2435],[18.69225,40.666]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.615,45.28],[-2.702,45.774]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.71975,38.425125],[11.6325,38.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.079,43.752],[7.828375,43.611688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.04875,59.5285],[22.911,59.453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.068,37.655625],[12.195594,37.575281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.938,-18.284],[50,-18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.157164,43.454414],[10.219016,43.358938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.761,-18.166],[171.884,-18.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.293187,41.019125],[17.171125,41.08675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.368547,58.168937],[10.521219,58.086594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.8035,36.7185],[13.9,36.74475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.359938,37.590219],[11.572047,37.841047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.130125,37.831125],[7.61625,37.5905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.40425,42.61],[6.2005,42.718]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.798391,36.547055],[24.718953,36.683297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.469,-37.722],[160.002,-36.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.475,35.387],[25.122297,35.373719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.375,16.79],[146.437,19.216]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.956,34.003],[35.116,33.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.827,30.053],[-40,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.229875,51.3815],[-4.145,51.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.522187,51.093812],[1.633094,51.153219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.910063,54.722562],[10.81,54.729]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.742,60.378],[4.6325,60.336875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.289055,59.876461],[23.194,59.777375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.475,50],[-66,50],[-65.4885,49.7935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.874,36.255],[14.928875,36.426625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.50325,36.49375],[-6.564188,36.107438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.471,35.46425],[26.405719,35.342953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.66,-22.217],[109.737,-20.376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.378031,36.212187],[-7.774,36.257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.8895,12.045],[-63.774,11.614]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.206,58.546],[9.39675,58.696375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.001,37.671],[-144.133,34.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[98.721,-28.792],[95,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-172.539,47.582],[-172.878,47.609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.02275,39.653],[13.92475,39.760375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.73,-26.4355],[-44.678,-25.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.0575,57.0075],[-2.0775,56.9045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.454469,54.302594],[7.519008,54.151023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.999,-32.943],[-156.028,-35.201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.949,37.77275],[26.181758,38.338969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.324,-11.39],[-15,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.2,58.7],[-5.279,58.6285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.614,42.7425],[6.744,42.678],[6.9445,42.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.124001,47.708755],[-5.13675,47.736]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.14,55.601],[18.3315,55.449875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.41125,37.695766],[23.443984,37.825055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.3215,14.918],[-72.259,15.65825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.002,52.494],[-51.588,52.279]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,60],[-27.504,62.74]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.002,35.756],[-50.002,34.829]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.653,52.24],[6.547,52.217],[6.413,52.166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.778,31.505],[-14.3095,31.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.049043,37.331059],[25.123682,37.488928]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.696469,58.992563],[10.559875,59.018375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.0135,-6.546],[44.482,-8.1005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.912,-23.657],[166.708,-23.944]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.111,44.144],[13.197437,44.300875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.411875,57.094813],[19.4295,56.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.765,55.484],[19.460875,55.291625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.077625,49.415055],[0.2395,49.4325],[1.046,49.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.618891,55.258641],[13.267,55.302]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.808125,41.85975],[3.616,41.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.04875,59.5285],[23.153719,59.551219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.482875,49.87325],[-1.577047,49.711531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.449,56.615],[-6.52,56.471]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.617,62.196],[-5.674,61.688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.1875,36.73675],[27.145875,36.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.103,59.323],[19.187313,59.176812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.186,14.27],[-66.833,14.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.381625,64.986375],[-23.5665,64.988875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.155938,58.25475],[9.36725,58.076]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.544,65.808],[-13.73,65.6335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.139,44.496],[13.854859,44.386266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.162,16.908],[119.4,17.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.408,0],[-160,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.349,30.881],[-126.598,32.096]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.613,-7.439],[-155,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.3955,32.413],[132.165,33.034]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.8645,39.3795],[23.957875,39.671375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.834,30.041],[-76.344,28.516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.399707,38.524234],[24.269633,38.625922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.569,53.431125],[5.60825,53.644062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.503,53.603],[5.2995,53.54075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.869,-50.861],[-62.827,-50.471],[-60.205,-48.384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.93,60.539312],[4.984438,60.133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.194,48.11],[157.933,47.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.693,30.578],[-67.531,31.092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.175125,52.7395],[3.306,52.773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.692,47.579],[-132.411,47.278]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.903,51.619],[-139.325,52.066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.998,-29.998],[5.891,-30.077]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.289,-5.055],[125.151,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.302,54.721],[-9.445,54.758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.707375,59.028875],[17.7595,58.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.175,43.679],[-8.619375,43.835906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.105902,57.64757],[10.938859,57.578352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.001,13.62],[-51.665,15.516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.125,-37.135],[20,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.197,4.084],[-88.693,0.922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-148.9705,29.0905],[-150,28.238]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-30],[-39.817,-26.511]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.77025,34.485],[30.735563,34.47975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.268039,57.791641],[10.443266,57.8495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.984,59.426],[-2.8735,59.1445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.938859,57.578352],[10.771045,57.590462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.696297,37.756797],[25.676539,37.887812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.903813,55.244687],[16.92725,54.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.425,-25.532],[7.894,-22.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.680625,53.365],[-5.977055,53.391461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.304,39.399],[6.487,38.892]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.483844,42.372],[16.522625,42.642375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.7,24.3],[-83.465,25.096]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.166,-15.364],[-75.283,-15.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.625,-38.322],[-50.621,-39.358]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.364,39.623],[2.331437,39.515187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.0535,18.407],[-66.59125,17.2995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.772078,57.447109],[8.587523,57.231133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.0535,18.407],[-65.26,18.1],[-66.59125,17.2995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.060965,53.768402],[8.42125,53.672031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.317922,39.711375],[25.5,39.677]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.2785,36.326],[-7.09825,36.6245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.613766,56.199719],[7.66925,56.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.377,57.937],[-0.126,57.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.55675,36.341625],[27.43725,36.450203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.93025,38.722],[15.7175,38.712],[15.60375,38.728375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.001,-31.837],[50,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.4,54.4],[14.485,54.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.255,-24.51],[-160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.565,69.394],[33.577,69.897]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,20],[-171.043,21.094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.38325,41.431125],[17.271711,41.397918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.655,59.996],[4.666625,59.755875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.858375,43.04875],[6.79,42.96775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.763141,39.488523],[25.598969,39.381262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.577562,60.231437],[25.455875,60.225313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.499,36.38],[16.298,36.383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.550813,55.421312],[-5.484063,55.252078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.149,24.392],[-83.465,25.096]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.3725,66.05775],[-17.3045,66.399]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.419,37.905],[16.727,38.027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.672,57.674],[-40.989,56.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.698,54.318],[-3.747813,54.142844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,5.057],[-120,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.647938,43.5355],[8.5545,43.327875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.942,36.237],[31.087,36.274]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.368117,50.268758],[-0.496,50.2845],[-0.616695,50.238164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.358516,36.337297],[23.522031,36.380711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.872,-36.427],[-155,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.455,6.509],[-35,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.433,54.173625],[6.256797,54.157672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.846406,36.884875],[-7.94,36.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.60125,61.943],[17.347,61.895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.3625,51.608063],[1.4545,51.7085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.581,54.15825],[11.620437,54.27225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.9525,47.60375],[-6.941,47.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.11575,55.8],[10.239295,55.738719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.22525,57.38825],[-0.4905,57.77225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.785,42.853],[-132.388,42.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.546,-29.571],[-20,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.153,56.241],[6.507219,56.241031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.4465,58.40925],[4.369375,58.096125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.366,39.853],[2.331437,39.515187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.98675,66.09],[-22.985,66.039],[-22.971,66.043],[-22.98675,66.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.495,35.625],[27.389,35.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.047,27.21],[-54.841,25.427]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.107,36.229],[-70.06075,36.046]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.412,28.223],[-89.766,27.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.713875,49.333188],[-4.856625,49.25625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.882,40.164],[150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.4905,57.8555],[6.390187,57.797875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.274,17.057],[-64.288,15.578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.279375,55.78375],[19.214,55.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85,-35.386],[87.384,-32.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.3525,26.02325],[-76.4875,25.9845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97,22.3],[-97.786,22.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.1475,22.9585],[-87.313,22.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.001008,54.403805],[11.186016,54.361187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.70575,59.367],[23.509125,59.37325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.999,-32.717],[-42.402,-32.612]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.990547,54.009406],[8.109,53.893562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.3265,35.767125],[23.492125,35.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.891634,37.335923],[20.87,37.324]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.412,69.697],[54.896,69.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.074,42.3075],[-8.979063,42.141562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.387,66.839],[-15.559,66.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.8975,22.731],[-91.835,24.234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.905781,35.438344],[-2.716,35.924]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.805,58.647625],[10.890566,58.507941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31,36.7],[30.966,36.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.805,58.647625],[10.689438,58.726094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.4995,71.639],[26.3,71.268]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,60],[-13.358,62.687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.153,-20.617],[116.439,-17.919]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.965,52.306],[10.031,52.31],[10.397,52.309]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.488,13.682],[-68.316,13.76]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.49425,36.581375],[-3.15,36.544],[-2.989375,36.541062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.643836,37.532453],[25.662875,37.394937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.067,14.6],[-61.187,14.471],[-61.043,14.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.124,39.845],[10.06,39.724]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.99,-13.906],[179.055,-12.858]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.1895,36.3565],[18.926,36.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.151,60.705688],[21.145812,60.519688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.112,63.27],[20.331,63.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.427,-18.306],[176.9,-18.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.631336,38.342301],[22.5995,38.1295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.70925,56.272562],[7.6925,56.117125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.291437,57.324875],[8.166625,57.291313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.98,10.008],[-108.069,8.107]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.6485,37.702],[-9.53575,37.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.36825,65.797],[-20.318,65.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.696,54.327],[-8.98525,54.511]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.754,68.963],[15.0505,68.918],[15.0015,69.006625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.572,65.309],[23.597,65.206]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.900187,53.406937],[2.79,53.24275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.837,38.602],[-74.55,38.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.023,50.301],[-0.254125,50.21425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.147,-6.033],[129.831,-5.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.128,40.998],[24.642545,40.820645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.698188,54.519414],[-3.698,54.318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.819,42.257],[6.679172,42.509359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.112,-45.403],[110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.546,49.189875],[-4.739906,49.082062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.469,34.553],[23.035,34.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.219016,43.358938],[10.344367,43.149219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.30225,49.300625],[-5.223219,49.133437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.24625,57.42375],[19.39775,57.53725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.1565,62.379125],[6.026938,62.43725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.1695,39.012],[24.4015,39.074438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.036,34.471],[24.9115,34.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.5295,57.278125],[20.436,57.2265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.436,16.166],[-86.735,16.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-20],[-30,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.618,55.828],[17.365,55.809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.547,10.551],[-50.02225,10.00675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.86125,36.14225],[-5.010063,36.171625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.271,66.561],[-24.001,66.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.8185,47.6855],[-7.5025,47.67775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.703,48.116],[-13.148,48.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.043812,54.524969],[10.218484,54.489812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.964,42.2375],[38.432,41.411]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.436,57.2265],[20.333,57.266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.37,69.994],[55.913,69.702],[54.896,69.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.364375,38.108953],[25.08425,38.042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.854938,59.180188],[19.7,59.116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.55025,58.34625],[-1.296,58.169]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,20],[-125.335,24.945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.953,49.016],[-31.582,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.349195,54.779453],[16.388,54.981]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.777,50.2265],[-5.856625,50.363937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.01875,54.0905],[0.153,54.005],[0.311,53.882],[0.5225,53.7095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.404875,45.23625],[-4.542,45.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.857,44.445],[-8.670625,44.65625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.619,57.11],[7.727,57.158]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.241,-43.629],[-80,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.705,49.955],[-3.8155,49.99325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.194203,50.105375],[-2.444969,50.004984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.271,66.561],[-22.99,66.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.182,42.726],[3.355,42.921]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.57,40.33],[2.9,40.38175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.598969,39.381262],[25.673664,39.548664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.672,26],[-91.176,25.627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.101,28.746],[-94.599,29.031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.782,58.8525],[19.7815,58.714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75,-35.386],[80,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.282,61.555],[21.22232,61.4235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.2,58.7],[-5.7395,58.6435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.926,56.491],[5.878,56.763]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.735969,57.3235],[19.873,57.516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.382375,45.6065],[-1.4055,45.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.9735,62.7375],[6.929,62.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.388,66.054],[41.929,66.83],[41.929,67.013]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.188,-5.453],[117.122,-5.686]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.142,32.541],[32.739,32.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.989,56.655],[-40.003,56.058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.001,37.671],[-140,39.592]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-10],[80.001,-12.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.4585,38.4735],[12.736,38.6895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.726,22.571],[67,22.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.735,16.184],[-87.798,16.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.175,39.382],[-28.431,38.79025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.064,36.751],[36.157,36.6035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.667,-20.1995],[117.859,-18.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-10],[-144.137,-5.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.848,43.58175],[-9.048,43.517]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.781,34.445],[26.529,34.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.998,-52.433],[-50,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.703125,55.893],[-1.585,56.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.332875,49.78975],[0.233,49.743],[0.2,49.732],[0.093,49.627],[0.077625,49.415055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.433,39.4515],[19.592562,39.30025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.003,27.148],[-86.8515,26.3215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.356938,55.977063],[16.533219,55.99525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.997,56.211],[4.023,56.034]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.14475,41.34625],[17.161313,41.523086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.329359,56.167422],[16.434,56.0695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.136375,56.98425],[12.026375,56.91575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.133,53.5055],[2.214,53.469],[2.243,53.456],[2.298,53.431],[2.3385,53.412]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168,60],[-168.574,59.042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.029234,52.6275],[-6.361937,52.285625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.475,35.387],[24.402188,35.598812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.2725,47.603],[-5.162449,47.89148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.148656,44.284717],[9.245094,44.238289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.757711,55.171898],[18.502,55.201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.329,38.656],[-124.181125,38.49725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.617,60.9005],[-4.441,60.769],[-4.346,60.428],[-3.91,60.235],[-3.833,60.048]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[87.08,14.742],[86.455,13.773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.394,15.292],[-61.6,15.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.29,38.171],[7.160969,37.739]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.029625,54.566875],[14.151875,54.729875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.799,54.303],[15.571437,54.234938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.264625,38.748],[10.386,38.576]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.092,17.216],[65.813,17.409]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.415,50.202875],[-3.389625,50.096125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.668,58.596],[-160.845,58.364]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.062,36.612],[-72.581,36.439]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.536625,38.329625],[12.330875,38.221688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.182,27.4675],[-77.903,27.051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.9,52.7],[3.33,52.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.1,-17.848],[117.705,-16.45975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.674,45.1445],[-8.337,45.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.860188,52.41475],[-5.702219,52.418563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.744,41.572],[11.781938,41.724312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.561,42.279],[16.739438,42.443531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.74675,55.739875],[15.608156,55.73575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.807,56.313],[16.7465,56.2005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.837,7.134],[-79.956,7.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,28.238],[-150.021,29.222]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.885035,52.111375],[3.830828,51.997047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.757844,36.720125],[23.888502,36.95017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.014062,38.378375],[-9.05225,38.1465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.788423,35.822991],[27.585375,35.853125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.334594,53.020719],[1.153625,53.091875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.5375,27.85875],[-92.472,28.476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.21725,48.96675],[-5.332906,48.881406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.397,30.045],[-50,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.415,57.868],[17.344,58.00775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.253219,51.73225],[-8.225875,51.56375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.131,64.809],[10.885,64.6985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-50],[-34.889,-45.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.774,14.953],[-170,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.68,45.541],[-62.973,44.613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.6,26.3],[50.713,26.461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.372,54.856],[18.181625,54.881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.12025,40.358],[13.287602,40.316414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.719938,37.163031],[11.392781,37.305688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.881,34.656],[28.9875,34.5585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.714125,46.733063],[-2.6615,46.64],[-2.582187,46.53325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.765875,59.948375],[25.928812,59.969875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.86125,36.14225],[-5.149312,36.059062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.434,44.296],[38.191,43.781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.907094,58.345531],[11.066281,58.405984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.32575,48.0045],[-5.162449,47.89148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.325,21.041],[-89.8,22.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.675906,43.631531],[14.853875,43.485687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.094,28.353],[-79.298,28.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.154,57.92],[0.274,57.948]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.383047,53.934812],[7.39025,54.168062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.407,52.508],[-25.002,55.194]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.627625,48.955375],[-6.767,48.968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.583,42.9425],[6.356344,42.7935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.3,35.9],[145.529,38.03],[150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.127625,57.972062],[6.283625,57.9055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.861313,68.311375],[14.729,67.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.781,62.473],[-79.821,64.929],[-79.543,66.011]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.965,70.355],[57.771,70.074],[57.37,69.994]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.790875,40.621656],[2.562,40.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178,-40],[175,-42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.125375,49.736375],[-0.023594,49.599656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.992875,36.197375],[24.918109,36.127172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.34275,36.946375],[-10.381,37.076]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.105902,57.64757],[11.24507,57.844516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.622875,53.805125],[-3.643422,53.590187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.42825,60.5685],[28.5045,60.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.352,27.696],[34.455,27.714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.483156,38.049844],[20.28425,38.16775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.391438,49.57325],[-4.23925,49.463688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.307125,42.51975],[10.120438,42.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.106,-14.262],[-156.304,-16.456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.545969,57.573281],[8.5715,57.399563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.42875,61.177063],[4.153,61.039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.61625,66.533812],[-16.169125,66.565125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-177.304,62.835],[-172.3,64.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.224,29.756],[-60,29.577]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.70925,56.272562],[7.613766,56.199719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.899906,38.140844],[25.780949,37.976156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.5045,56.395],[-7.69,56.258],[-7.825,56.112],[-7.86,56.073],[-7.932,55.991],[-7.978,55.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2275,37.059],[13.956172,36.944266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.04975,39.51075],[11.048,39.776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.557,34.955],[-54.451,34.839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.886,-16.567],[54.684,-14.364]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.449,19.478],[-125,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.529,70.55],[26.461,70.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.0755,55.905937],[11.130758,56.077344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.128875,57.01575],[8.144266,56.912734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.3195,41.7635],[18.231,41.22]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.3195,43.755],[-8.5485,43.6635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.848625,36.501473],[27.974,36.481875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.361969,52.951855],[0.436,53.1855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.057,50],[-133.976,48.959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.902,35.846],[17.194,35.991]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.1315,50.585],[-0.259625,50.568875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.934,60.485],[3.621,60.113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.209,55.466],[-12.137,52.567]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.47,40.544],[3.39,40.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.72,-13.623],[152.879,-16.231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.413812,60.001],[26.471625,59.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.991812,44.193875],[13.857,44.049],[13.835406,43.943969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.4275,43.6615],[-10.214,43.747]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.998,0],[136,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.934375,28.807625],[48.93825,30.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1,4],[-4,4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.519875,43.5275],[-1.9435,43.356]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.408,0],[-154.564,4.618]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.7565,63.839],[-22.5405,63.79625],[-22.391375,63.806125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.311891,59.01743],[10.312703,58.878641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.331437,39.515187],[2.2305,39.437875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.158,40.787],[2.942,40.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.923344,58.151258],[10.907063,57.982016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.460875,55.291625],[19.479,55.499781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.956828,51.375391],[2.97075,51.525688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.108,-40.024],[10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.349,56.625],[-6.2475,56.7045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.934,40.3385],[18.652,40.4765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.0765,40.52625],[2.942,40.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.422,53.2395],[3.371625,53.150438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.247,41.296],[8.373375,41.273875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-30],[-30,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.14275,38.0085],[11.268,37.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.262,-34.063],[-8.931,-31.162]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.1415,30.291],[-80.435,28.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.1085,52.0605],[-5.993,51.883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.455,27.714],[35.224,27.846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.2605,56.950063],[20.224305,56.801758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.5585,53.124],[0.708469,53.284531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.786625,60.099375],[4.655,59.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.3435,65.663],[-21.202,65.638]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.041375,39.890875],[22.8,40.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.165625,43.846063],[10.008375,43.8295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.003,53.227],[-30.965,53.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.13752,37.961805],[11.92725,37.891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.423625,45.31575],[13.528094,45.267156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.921062,38.454375],[24.66125,38.470312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146,-44],[150,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.751,32.2],[29.265,31.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.814641,52.630781],[-5.5765,52.78375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.605,12.575],[43.5275,12.482]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.575,40.743],[18.30175,40.94275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.3885,70.676],[31.4155,70.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.165687,60.515812],[-0.74,60.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.303,36.748],[13.459,36.77175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.5,-10],[153.841,-10.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.420781,57.265594],[8.291437,57.324875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.704461,43.254555],[9.851766,43.256969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.518,39.928],[-69.574,38.781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.389,38.691],[7.275,38.446],[6.717,38.243125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.561063,41.506625],[17.5925,41.309125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.195,40.031],[3.057,40.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.302,22.551],[-50,21.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.772,48.732],[-125.0385,48.5115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,60],[-34.586,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.09825,66.1495],[-23.239,66.36725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.965,42.04625],[10.85625,42.1635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.7,53.1665],[4.634,53.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.058375,59.618047],[19.987375,59.541]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.069125,49.372],[-3.211875,49.594375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.98075,41.019875],[-9.129,40.4825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.564125,35.614563],[24.610125,35.743625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.037,18.239],[-43.776,16.377]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.102,33.151],[-50.001,32.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.7835,49.326],[-3.591875,49.527438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.0585,44.106],[-7.846,44.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.45,66.952],[12.364,66.27925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.570156,56.535844],[7.593,56.37775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.567907,50.289996],[-4.4135,50.328],[-4.153844,50.273531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.6,36.2],[0.51875,36.50425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.31625,35.927125],[26.531,35.966]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.91,43.89],[-5.4785,44.03925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.807994,55.276076],[9.85175,55.0785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.001,53.8],[-164.472,54.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.9835,53.220344],[-5.947062,53.079391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.661,39.652],[-71.118,39.813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.34825,39.93975],[13.404,39.78525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.002,-34.305],[0.001,-32.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.592,45.619],[-5.607,45.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,10],[-33.147,10.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.439125,38.654156],[15.250375,38.670625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.565875,59.18375],[18.5875,58.895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.395,43.2535],[36.167,43.214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.57,35.003],[139.478,34.941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.639953,49.750961],[-3.753531,49.47975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.064,43.392],[-8.94,43.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.817125,36.06025],[23.724812,36.342438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.708,43.79025],[-1.519875,43.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.950254,58.636547],[-3.104563,58.672461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.79875,36.8085],[13.001,36.6805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.881109,44.035281],[8.921125,44.238812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.423,68.285],[-95.8135,68.3785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.998,-35.049],[-30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88.497,-16.94],[88.37975,-17.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.490312,57.152625],[11.397281,57.249102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.5265,57.7595],[6.682375,57.704125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.565,41.439],[5.624,41.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.156,42.8315],[-10.109,43.026]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.896906,57.983906],[20.010844,57.876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.934,44.019],[14.999375,43.83025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.803422,44.150188],[14.763562,43.988937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.614125,60.8495],[4.53675,60.915125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.475469,58.164906],[8.59334,58.182074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.78675,43.0515],[16.677316,43.012395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.637,60.209],[28.317875,60.1155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.801,57.1025],[-1.9265,57.008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.238844,36.939406],[26.3595,36.848344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.07425,56.94],[20.224305,56.801758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.216188,54.630812],[7.12525,54.292687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.692,47.579],[-132.826,47.459]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.333969,36.419],[26.395313,36.314844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.818531,55.748875],[14.914,55.669]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.604,47.325],[-59.071,47.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,15.17],[-143.697,13.947]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.333,65.166],[-23.6025,65.2295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.641,40.081],[4.66,40.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.609,42.539],[-9.368063,42.244563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.049,58.044125],[20.9705,57.9135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.957219,37.721516],[16.201375,37.474625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.70725,57.53725],[16.900937,57.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.6745,43.91925],[13.548625,44.043125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.815,64.391],[9.6775,63.976]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.911,44.038],[-7.949,43.941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.395,35.703],[-12.142,35.517]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.7155,41.115],[17.812,41.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.8115,42.1715],[38.343,42.209],[37.964,42.2375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.19375,60.206],[4.005,60.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17,33],[-15.3895,34.2655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.050719,44.805062],[14.060375,44.987],[14.177156,44.91425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.2715,36.5525],[15.3855,36.581]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.803,64.038],[9.6775,63.976]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.934,34.3615],[34.126,34.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.68,58.186],[19.667,58.041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.958,44.252],[179.8685,44.4765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.0055,-9.99425],[52.583,-7.392],[53.918,-6.021]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.1955,48.6105],[-5.302,48.677]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.54675,42.515875],[17.468,42.202]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.65082,36.962602],[26.723727,37.156914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.542,45.775],[-4.668,45.7575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.565,63.0435],[20.615,62.873]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.819,28.884],[-140,28.486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.492125,51.66425],[3.375,51.709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.675188,58.363],[-1.55025,58.34625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.001,12],[44.995,10.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.23125,56.554703],[7.166906,56.684656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,10],[-149.999,9.999]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.634,11.947],[-83.352,11.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.835344,40.158781],[18.812375,40.032813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.7335,39.40575],[-9.82025,39.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.192,-35.166],[-46.313,-33.952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.478031,54.635594],[8.380125,54.51675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.534906,59.770281],[5.341,59.778]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.088,42.211],[40.694,42.2035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.42525,55.514031],[-1.196,55.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.253,21.772],[116.9835,22.9925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.573,22.015],[-89.8,22.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.043094,57.403391],[7.884937,57.489125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.6655,36.365],[21.5625,36.3595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,0],[68.026,2.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.919828,36.942359],[25.817594,37.051125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.462125,43.14575],[16.5385,43.0485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.5,41.075],[9.195668,41.28693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.6815,57.137],[4.921,57.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.31,49.93],[0.18675,49.8325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.951,1.733],[-40,1.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.909,36.339],[-3.15749,36.356752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.382,70.504],[33.402,69.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.591789,59.890969],[25.437,59.885],[25.37,59.879],[25.234,59.865],[25.116375,59.861187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.785,42.853],[-130.001,41.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,29.345],[-170.759,29.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.504,55.491],[9.544,55.494],[9.677437,55.485312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.179,-54.832],[-73.208,-55.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.31625,35.927125],[26.242,36.130625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.086,52.773],[-9.9805,52.55825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.28,53.38725],[-3.35025,53.537562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.3935,55.03425],[15.282656,55.106125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.682,35.671],[34.839,35.4985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.221,56.395],[-133.712,56.372],[-134.042,55.863],[-134.573,55.696]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.184,28.136],[-86.3105,28.157]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.759313,41.905906],[11.694102,42.070801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.48875,52.19625],[-10.223,51.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.8295,40.818625],[1.825125,40.679375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.158938,58.655438],[10.096687,58.556562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.649891,36.446328],[23.724812,36.342438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.155563,58.563688],[21.249,58.37325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.508,35.498],[-16.027,35.449]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.223,-8.801],[-163.706,-6.348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.974,0.143],[172.73,1.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.967,-5.071],[60,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.146,40.743],[-71.357,41.117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.313875,36.956375],[23.274688,36.661625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.001,37.288],[-40.002,36.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,20],[-168.602,20.157]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.181,-34.101],[13.909,-32.534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.66975,57.805625],[4.6815,57.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.015125,40.298375],[8.0755,40.187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.206,36.579],[-69.997,36.487]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.231,44.084],[13.477141,44.123984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.11475,35.0305],[24.08275,35.172062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-30],[-125.685,-25.924]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.69,-17.066],[122.864,-15.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.32,40.807],[25.8765,40.8155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.0675,42.089],[18.687,41.947]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.116375,57.51025],[9.045,57.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.82,55.052],[-131.562,54.638]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.11575,45.9715],[-1.207,46.024]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.597,10.124],[-90.035,9.712]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.614,62.02],[-180,62.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.332,55.6595],[19.279375,55.78375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.732,63.65],[9.4835,63.6295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.754,41.327],[12.844188,41.195719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.777,65.68275],[22.466,65.655],[22.399094,65.462063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.215,32.995],[-69.842,33.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.240875,39.144031],[17.24025,39.00025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.029,55.944],[19.85675,55.689875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.363469,61.229141],[17.505516,61.508156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.384313,28.145375],[-15.32175,28.284375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.344,50.477],[7.385,50.447],[7.424,50.443],[7.344,50.477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.616172,47.031484],[-2.474969,46.901594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.72,-13.623],[150.194,-14.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.11,23.954],[-75.2005,24.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.2605,52.213375],[4.3315,52.304],[4.454422,52.444984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.083938,37.123469],[11.97443,37.198852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.574,-32.005],[-49.588,-32.297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.1535,40.402],[-11.1625,40.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.920625,61.952],[21.1205,61.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.178,26.561],[-73.188,26.458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.362,58.154],[21.296437,57.999188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.6795,43.3735],[9.550547,43.312297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.17725,58.648125],[20.3245,58.663875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-50],[-30,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50],[-30,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.8735,68.8745],[16.761,68.859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.8805,55.671875],[7.938492,55.439906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.356,55.347],[6.205,55.203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.5295,57.278125],[20.504625,57.129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.4675,54.562],[7.4405,54.452125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.279813,52.145188],[-6.695,52.042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.636,36.764],[12.564125,36.8805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.59125,17.2995],[-66.274,17.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,50],[-31.582,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.083047,39.066297],[7.729,39.0915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.60125,61.943],[17.605,61.772]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.524,31.698],[-126.657,33.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.051,28.2135],[48.93825,30.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.68075,40.573],[10.6235,40.48025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.269625,51.369531],[-3.108875,51.252875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.575,-9.25],[113.469,-21.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.699,-54.555],[-64.916,-54.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.011,27.798],[-76.304,28.389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.505,-7.529],[119.551,-7.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.254,12.874],[-140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.332,55.6595],[19.55325,55.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.4565,47.093312],[-2.474969,46.901594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.343,60.0215],[5.22575,59.944875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.424,54.605],[11.671484,54.520078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.997,-53.66],[-36.315,-54.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.0065,10.9975],[-58.451,12.233]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.736,31.911],[-72.306,31.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.239437,56.945688],[12.136375,56.98425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.0935,-11.134],[-2.2455,-12.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.766,-14.631],[-30,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.816,2.468],[79.103,2.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.914398,39.395555],[24.981,39.1945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.294,55.175],[5.17375,54.925406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.2825,61.564],[18.364,61.437],[18.438,61.341],[18.55925,61.1935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.4555,54.1435],[11.620437,54.27225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.852,31.248],[-30,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.65825,35.5395],[23.59075,35.67975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.8205,47.2725],[-4.971,47.38375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.833,30.041],[-127.349,30.881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45,25.277],[-45.125,25.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.09325,44.6535],[-9.004625,44.778375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.831,-6.279],[116.8605,-5.729]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.7145,48.721],[-4.62275,48.976375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.03325,41.7155],[12.127,41.638]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.34,63.66],[20.570812,63.52575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.458004,58.565945],[23.660875,57.97925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.268,49.589],[-6.17575,49.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.358,59.646],[6.337,59.635],[6.253125,59.511375],[6.086,59.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.746188,57.418188],[-1.72775,57.23575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.011582,50.526684],[0.080625,50.631875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.014,60.878],[2.4315,61.0545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.822813,44.277563],[14.803422,44.150188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.9945,20.0065],[-42.271,20.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.837688,19.982813],[-74.213,20.742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.714125,59.0385],[21.551,58.868],[21.46975,58.725672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.757086,50.611703],[0.874273,50.62893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.514,42.555],[14.675,42.504188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.431,25.16],[-84.637,24.726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.851625,49.80375],[-2.714219,49.826656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.911,59.453],[23.064625,59.397875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.836766,58.773047],[20.724125,58.5305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.2215,53.805],[2.35225,53.831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.731,16.4215],[-153.2,15.855],[-153.003,15.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.145797,41.031211],[13.324188,41.017313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.845,-10.025],[-168.3335,-11.7495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.649,50.751],[-6.556,50.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.7975,55.397],[15.934625,55.349438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.300688,50.459562],[-6.2165,50.608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.228,38.913],[-11.233,39.706]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.22232,61.4235],[21.250352,61.193086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.094,57.606],[20.12025,57.31275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.501125,48.771313],[-6.771,48.829]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.064,59.959],[20.03025,59.858]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.239295,55.738719],[10.405313,55.742437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.913875,58.669],[21.05975,58.5975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178.683,30],[-180,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.493688,40.443703],[18.394,40.5285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.48,54.82575],[-3.723,54.659]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75,-15.17],[76.998,-17.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.265,43.366],[4.5475,43.2935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,10],[-30,13.366]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.439,27.184],[-94.568,26.163]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.833,-34.53],[6.861,-33.413]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-60],[-24.374,-55.103],[-20,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.74875,50.464],[-5.726,50.343]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.625,-38.322],[-49.778,-36.039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,20],[173.741,19.857],[167.48325,19.464875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178.683,30],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.818,27.532],[-73.09,27.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.041,49.366],[-10.672,49.652]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.236,40.079],[-11.2235,40.382]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.003,53.607],[-25.711,55.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.512,46.634],[-2.582187,46.53325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.1205,34.6645],[-13.329,34.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.831844,53.561281],[-3.975875,53.351812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.003,63.001],[-20.1435,63.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.987375,59.541],[19.899031,59.475344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.9205,32.834],[28.284,33.027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.68,14.047],[-67.186,14.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.634,48.102],[-4.740406,48.163031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.709437,52.145875],[-5.802,52.02325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.160969,37.739],[7.2415,37.6335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.539,36.331],[15.4305,36.4035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.939375,36.260625],[-4.510438,36.217375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.076,70.11],[22.832,70.384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.80218,61.269719],[4.851,61.433],[4.890875,61.60175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.410312,49.677875],[-4.391438,49.57325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.358,36.408],[27.210703,36.538219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.172125,61.551312],[21.282,61.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.852,65.822],[-23.85575,65.947]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.44,-31.566],[95,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.911,57.284],[6.517,57.389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.468,42.202],[17.5925,42.138]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.152625,37.529375],[-12.199,37.642]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.0775,56.9045],[-2.249,56.770875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.9895,37.884125],[25.046,37.762]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.741,55.561],[17.518,55.583]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.307125,42.51975],[10.173445,42.647398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.37425,51.62325],[-8.225875,51.56375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.9795,40.814125],[-10.112,40.797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.440312,43.648844],[14.468312,43.437344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.37,55.882],[18.41375,55.7645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.201,58.6],[-42.672,57.674]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.854,-22.275],[-100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.4,45],[36.5,45.136]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.745375,41.288875],[12.528313,41.390375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.644,57.605],[19.48725,57.58975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.258234,55.887234],[15.531,55.897359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.8445,43.73725],[28.9945,43.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.574,44.586],[-5.751,44.5445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.136,55.349],[3.878,55.441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.908875,37.315],[24.919254,37.184895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.723063,55.518375],[12.832,55.579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.018,1.81],[-107.347,2.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,19],[119.637,19.166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.296,58.169],[-1.337,57.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.288,8.159],[-79.719,7.899]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.177,59.329],[2.047,59.771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.434961,41.205898],[9.195668,41.28693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.675625,49.74425],[-4.691625,49.615813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.024188,49.587063],[-4.022187,49.350313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.682,23.109],[-87.1475,22.9585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.92125,42.846],[29.078,42.789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.06025,56.556875],[6.881906,56.361031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.996,38.283],[14.751,38.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.478,37.60525],[7.52,37.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.226156,57.496313],[17.2155,57.352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.4815,68.8795],[17.726,69.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.598875,57.713125],[-1.618313,57.603188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.899,20.2085],[-73.899,20.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.413312,51.341313],[-3.636,51.3155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.808,26.131],[-77.552,26.854]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.666,36.0145],[25.804125,35.962438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.779438,38.804688],[24.82725,38.9685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.186,56.57],[4.33,57.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.142,-13.283],[-175.469,-14.183]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.283672,55.005711],[-5.194,54.8315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.483,44.08],[29.269,44.009]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.416,35.98],[23.551781,35.825375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.739062,39.191109],[25.828234,39.089973]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.248781,52.253125],[-5.972016,52.231766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.564,4.618],[-155,5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.29875,54.643],[11.113,54.6675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.183,30.238],[-74.176,30.073]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.881938,54.76175],[-0.953875,54.659875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.22975,53.878],[8.45,53.9395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.893,9.04],[-97.481,10.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.19725,36.045],[-8.545,36.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.2,33.026],[16.198,33.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.159,59.143],[2.429,59.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.253,29.502],[-70.685,28.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.969,37.264],[5.331,37.161]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.8035,36.7185],[13.951375,36.629875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.919,54.957],[7.913,54.80575],[7.880016,54.607469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.042,55.233],[14.066375,55.035562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.335,19.909],[38.641,21.138]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.883625,42.72525],[7.605,42.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.317125,36.608187],[21.089813,36.655375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.619375,43.390875],[28.777,42.899]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.211062,40.02175],[23.041375,39.890875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.25225,51.48425],[3.4305,51.40675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.339812,55.3525],[-5.166329,55.353328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.18075,37.855125],[23.062906,37.908219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.33457,36.37425],[-2.596719,36.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.211,21.125],[-157.884,21.24775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.382094,42.727938],[16.590281,42.749016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.957219,37.721516],[16.092906,37.788031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.388,54.981],[16.46375,55.110625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.832812,60.783469],[21.034687,60.73825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.82,59.179],[-168.574,59.042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.432375,38.72425],[9.289,38.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145,5.057],[150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.6325,38.4875],[11.5305,38.4565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.005,60.293],[3.849,60.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.469,36.894],[-0.4705,37.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.487,43.5565],[-3.58975,43.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.992,58.456],[9.095,58.484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.368,60.204],[27.166,60.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.036687,49.745063],[-0.023594,49.599656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.89,-45.404],[-30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.872,-10.036],[-130,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.631,52.764],[-15.209,55.466]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.014,61.7535],[19.007,61.559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.95,39.335],[-9.929938,38.868688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.28925,42.629625],[14.232,42.469],[14.32975,42.50075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.54,33.546],[127.6,34.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.074969,50.118117],[-4.853578,50.114625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.9,-1.4],[-48,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171,-46],[169.5,-47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.99,26.0255],[-97,22.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-10],[69.692,-10.002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.014062,38.378375],[-9.137,38.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.423,33.559],[-69.842,33.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.67825,55.933375],[14.626,55.839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.414,59.383],[17.538,59.2855],[17.707375,59.028875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.581445,37.077711],[12.511625,37.280813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.002,42.755],[-50.002,43.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.4,7.308],[69.17,6.638]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.104,41.752],[5.973,41.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.008,35.948563],[13.86425,36.047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.145,25.595],[-77.085,25.8165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.217,65.031],[-14.187,65.026],[-13.964875,65.028375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.646293,55.74748],[12.622281,56.071172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.835,36.355],[-72.939,36.22]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.95825,41.044],[2.15525,41.04325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.248,-21.795],[-160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.1,33.37],[140.01,34.751]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.3925,66.38375],[-18.627,66.291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.365,26.618],[-88.194,27.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.010844,57.876],[19.7785,57.6795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.001,15.169],[-47.429,17.566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.031,38.4555],[1.336,38.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.8765,40.8155],[25.625,40.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.378,60.515],[19.658,60.46175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.233,60.818],[18.3545,60.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.3335,59.098],[-1.261,59.3755],[-1.214,59.5285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.38325,49.633625],[-3.591875,49.527438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.096,75.489],[17.241,75.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.382875,57.420875],[23.9625,57.13125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-30],[-1.411,-31.534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.452,34.691],[27.978,34.678]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.033859,37.086859],[27.0595,36.9845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.550187,38.285062],[13.7005,38.297],[13.813875,38.304375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.3285,56.291],[-2.222,56.183]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.241,41.973],[10.171,41.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.952,62.488],[18.102156,62.571313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.216,39.421],[8.1135,39.5995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.655375,36.505125],[27.43725,36.450203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.177156,44.91425],[14.050719,44.805062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.001,15.524],[-150.001,14.997]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.250352,61.193086],[21.454,61.127],[21.305,61.097]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.223,64.652],[36.394,64.981]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.292,37.2765],[26.268187,37.387125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.491,-29.435],[57.365,-30.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.104563,58.672461],[-2.751,58.8205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.5515,43.2],[8.6115,43.0815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.656,54.597],[14.794,54.632],[14.94925,54.65975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.503602,56.56732],[20.304063,56.600563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.296,53.81425],[-4.534,53.884],[-4.7125,53.945937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.01375,61.01725],[4.962875,61.23025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.709,40.289],[10.6235,40.48025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.7965,37.5655],[22.799,37.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.966812,55.530113],[15.144344,55.565469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.18575,53.974],[4.0685,54.0015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.868,59.090656],[5.543188,59.177234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.028,35.462],[12.917,35.611]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.077887,58.984262],[10.91475,58.897],[10.766969,58.820484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.1525,55.3495],[18.986,55.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.21625,52.633],[2.066156,52.592937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.394875,38.940438],[26.136,39.0995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.575875,55.811],[5.579,55.491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.237156,44.597531],[14.217,44.707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.14875,61.68325],[18.2825,61.564]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.421875,56.718688],[10.650688,56.718375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.885687,37.6785],[11.92725,37.891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.066906,39.810875],[24.11875,39.6085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.341625,53.804625],[4.259,53.733],[4.214,53.711],[4.081,53.646],[3.979,53.596],[3.708125,53.435375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.9415,36.116],[27.072969,36.014047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.40425,35.775],[14.567266,35.916988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.785,53.172],[-10.2975,53.4695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.544812,38.512313],[13.67125,38.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.639,34.135],[130.094,34.304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-22.458,42.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.801687,50.291313],[-1.633469,50.502023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.117,52.7225],[2.005,52.8665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.154875,47.526],[-3.153922,46.763398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-30],[-144.581,-24.856]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.96,23.137],[135.33,25.588]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.939,22.492],[-20.898,20.807]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.420375,59.953031],[24.57,59.807875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.939,37.619],[3.373,37.589]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.762,8.72],[121.613,11.217]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.08,58.634],[-5.279,58.6285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.137031,48.747781],[-2.303,48.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.916953,37.131188],[23.888502,36.95017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.848625,36.501473],[27.70075,36.381625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.995469,54.163219],[6.84475,54.137187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.827063,57.636688],[20.8085,57.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.7775,57.91],[7.62875,57.91475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1825,60.43825],[3.996,60.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.723727,37.156914],[26.901875,37.10975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.855031,54.955906],[15.915437,55.128125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.94925,54.65975],[14.807625,54.413125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.221594,43.099391],[16.370969,43.074438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.31225,58.564063],[20.3925,58.337625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,39.205],[-20.001,37.783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.443,40.15],[19.305,40.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.834,39.62075],[7.793,39.4555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.1325,39.7455],[1.892,40.07875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.266375,44.164],[14.3695,44.104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.528,62.976],[-167.247,61.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.5595,36.356],[-8.205,36.217]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.878,-33.129],[47.908,-32.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.88975,42.1645],[15.703383,42.106164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.7785,57.6795],[19.644,57.605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.353188,57.745],[8.3755,57.552844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.04475,43.060625],[9.072453,43.194516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.942,40.278141],[0.726,40.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.339,37.493],[-10.495,37.442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.511,57.805813],[17.638,57.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.042,39.058],[9.61225,38.884687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.0105,61.85675],[18.799,61.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.796,-3.252],[-38.231,-3.019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.125719,54.198719],[8.236625,54.069906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.18977,37.595664],[24.121855,37.413418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.966,28.079],[-50,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.995,-32.169],[-140,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.913,-32.283],[-51.303,-33.421],[-54.614,-35.249]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.6055,49.846],[-1.6285,49.975844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.616437,36.258125],[26.395313,36.314844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.655,44.909],[12.75075,45.03025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.922,21.764],[-117.202,25.705],[-120,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.001,41.906],[3.616,41.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.910328,42.985254],[10.015738,42.886645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.726,51.578],[0.781,51.585],[0.84775,51.621375],[0.986,51.63975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.82225,35.752],[34.9595,35.5965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.008719,39.350563],[14.991062,39.215125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.088938,59.994812],[21.321125,60.134563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.2685,50.308875],[0.967812,50.461156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.603562,56.827281],[18.745,56.885],[18.87675,56.87575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.094313,35.236625],[25.797187,35.270313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.402055,43.614492],[-8.409562,43.420125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,40],[-66.667,40.268]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.819,34.539375],[33.934,34.3615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.1175,37.24],[-11.6465,37.06575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.171109,54.987867],[15.282656,55.106125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.665,66.561],[43.161,67.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.24525,52.104],[4.422,52.338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.837,63.316],[9.851,63.321],[9.9745,63.378]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.207,33.486],[-133.753,34.081]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86,61.1],[-90.654,59.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.762,8.72],[120.752,8.531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.701,66.979],[7.402,66.383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.252938,35.780312],[27.389,35.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.628766,44.141828],[12.4025,44.401],[12.383008,44.545586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.2085,55.3965],[18.3315,55.449875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.1705,56.736],[17.295219,57.249313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.114,54.625],[5.078,54.476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.306,-17.444],[-95,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.658,47.514],[-19.9655,47.29275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.3135,37.865],[-20.001,37.783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36,-24],[43,-26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.125,44.551],[-7.782,44.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,40],[-29.562,40.491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.039,58.927],[-6.046,58.802]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.562,40.491],[-30,40.531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9435,43.356],[-1.96,43.55375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.777,-31.932],[-160,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.205938,38.69625],[16.685,38.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.65,30.707],[-30,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.130758,56.077344],[11.237,55.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.61,-35.012],[-5,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.159,43.236],[4.3095,43.2515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.889,51.23],[-144.049,50.703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.264625,38.748],[9.61225,38.884687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.89,-14.506],[-180,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.349,41.90625],[11.321188,42.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.8835,57.739656],[22.6855,57.8145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.04,57.359],[3.792,57.116],[3.146,57.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.164,53.342],[-5.511687,53.391188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.198,40.243],[-9.296,39.821]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.451,12.233],[-57.974,12.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.33575,60.18075],[26.445375,60.297312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.001,50.94],[-20.942,50.981]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.238969,55.420187],[8.0695,55.3905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.066281,58.405984],[11.223039,58.342094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.487,36.379],[-20.159,34.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.724,24.49],[128.3,24.9995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.279,-20.128],[-74.658,-24.543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.754,44.054],[-9.02,43.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.127,41.638],[12.208188,41.559531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.28,52.05],[-50,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.804,54.9775],[-5.939,55.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.97443,37.198852],[11.719938,37.163031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.637,19.166],[119.667,19.443]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.329437,38.774031],[24.122578,38.783789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.981,27.249],[49.519,27.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.4275,61.58525],[17.605,61.772]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[81.232,11.931],[78.01,7.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.703,16.063],[38.624,18.644],[38.118,19.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.096,47.632],[-7.488,46.876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.154375,43.354875],[16.411613,43.265967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.726,-26.876],[105.524,-25.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.082875,49.795625],[-4.024188,49.587063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.103,41.692],[10.088094,41.582906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.175,4.907],[2.5,5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-20],[82.742,-20.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.532438,37.443875],[25.301375,37.367719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.699375,55.280125],[9.677437,55.485312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.892,50.914],[-5.092875,50.8015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.846406,36.884875],[-7.554,36.768]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.582625,50.663031],[-1.060047,50.623906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.686,25.864],[-84.016,25.668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.1415,59.87675],[-1.297,59.803]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.801687,50.291313],[-1.97725,50.255875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.344,41.585],[-129.882,41.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.471,40.313],[10.336,40.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.7995,37.939],[11.697,37.875],[11.572047,37.841047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.245375,58.591437],[10.3585,58.515],[10.416719,58.424625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.919,57.579],[23.892008,57.372164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.12,10.2195],[103.341,10.552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.951,1.733],[-40.257,2.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.766063,51.692312],[-7.614,51.582]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.1,20.25],[108.607,20.303]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.698,34.533],[140.01,34.751]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.812375,40.032813],[18.89375,39.8645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-10],[-28.772,-8.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.178562,58.801852],[10.028375,58.819312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.321,20.154],[-66.29,19.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.574344,41.261812],[8.879482,41.274148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.323109,43.159414],[9.445383,43.100578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.298563,39.814875],[19.16025,39.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-148.928,41.201],[-150.001,41.313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.320172,56.856264],[12.321,56.683],[12.299656,56.545609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.416,27.233],[-67.284,21.717]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,19],[119.4,17.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.1405,23.2035],[-73.495,21.479]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.6955,39.5865],[7.793,39.4555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.1805,40.038],[25.129,40.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,50.116],[-30.001,50.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.633281,58.488969],[10.58975,58.35325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.378,56.16],[5.23675,56.376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.097,35.017],[32.308344,34.708]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.571,-25.975],[32.671,-26.035],[32.905,-25.911],[33.636,-26.277],[33.6985,-26.589]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.881344,40.604789],[14.005437,40.542563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.140031,38.108703],[12.177,38.21025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,49.71],[-20,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.5575,36.08125],[22.192445,36.411152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.25,40.6],[143.3,41.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.889,51.23],[-149.792,52.314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.85,33.135],[-72.516,32.769]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.583,42.9425],[6.32,42.943]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.9995,48.457],[-4.859375,48.492125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.29175,54.825688],[15.309875,54.976125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.2575,60.67525],[18.024,60.6985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.61625,66.533812],[-16.555,66.341],[-16.45,66.301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.107,56.079],[4.929,56.152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.84125,16.129625],[-86.2795,16.1565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.891313,51.476594],[-9.769,51.394],[-9.61775,51.339]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.792,28.08],[-74.42,27.703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.454,39.903],[13.404,39.78525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.33775,36.96975],[12.1615,37.0485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5,-5.057],[-5.531,-5.587]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.358,67.056],[13.325,66.852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.985812,57.13725],[-1.9265,57.008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.724312,38.045328],[24.854656,38.153594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.497473,37.191895],[26.394156,37.070969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.822,54.584],[-0.310188,54.656656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.5425,42.7585],[33.5275,42.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.6,40.1205],[12.288656,40.061469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.3605,60.3895],[18.709938,60.229375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,30],[-150.25,30.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.288,34.139],[135.342,33.042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.0655,39.07925],[25.120812,38.87675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.063656,46.314531],[-2.284,46.108]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.179926,34.677434],[33.3015,34.698937],[33.429,34.7135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.73,20.774],[-148.819,21.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.276641,54.508656],[14.21975,54.20425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.001,40.998],[-40.002,42.707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.738,45.458],[36.859,45.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-0.984],[-119.2,-0.811]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.972,42.577],[133.7,42.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.90025,38.70575],[8.86925,38.55225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.145,33.419],[-47.102,33.151]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.40825,43.841641],[9.584484,43.894141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.267576,37.466994],[24.397195,37.265648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,0],[67.532,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.338,-35.069],[-154.519,-34.913]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.001,33.635],[-18.195,33.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.290563,55.696742],[16.160484,55.483516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.66425,41.9375],[11.759313,41.905906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.73,51.497],[-10.805,52.06],[-10.373,52.4085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.318828,37.996062],[24.336312,37.837047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.811,61.17125],[20.118,61.178]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.01325,54.81875],[15.153625,54.709937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.439125,38.654156],[15.343875,38.580125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.967281,35.9845],[25.0875,36.002125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.763789,44.097516],[8.881109,44.035281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.222,56.183],[-2.183,56.078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.394375,54.535219],[15.368313,54.725875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.923813,36.666719],[24.718953,36.683297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.6715,60.750375],[4.63375,60.64025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.732074,35.143287],[23.492125,35.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.257906,44.431859],[14.203,44.254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.977,68.883],[16.697125,68.714438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.461,55.92],[-4.318,55.868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.7165,40.9285],[2.799375,40.86875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.421312,54.718125],[13.320094,54.841844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.293,37.308],[15.981,37.297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.550141,42.856656],[10.439473,42.905105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.43125,54.432],[19.403,54.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.643016,42.992141],[9.580625,42.8435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.855031,54.955906],[15.749422,54.994109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.984406,59.798219],[23.07125,59.727875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.352219,38.52725],[13.246625,38.70375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.029313,38.623],[24.782625,38.671406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.507422,49.735531],[-3.38325,49.633625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.5445,55.14425],[14.282291,55.167619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.021,29.222],[-150,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.843,70.7535],[29.888,70.922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.8,29],[-18.908,29.504]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.57,40.33],[2.403,40.002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.824,-34.158],[-6.262,-34.063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.6905,58.6615],[9.429016,58.589813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55,-35.386],[51.412,-31.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,10],[63.99,8.569]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.10475,38.886125],[26.014,38.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.4215,56.8835],[11.448,57.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.707,-11.357],[-124.872,-10.036]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.61,16.758],[135,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.9795,65.8225],[-21.006,66.134]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.431,14.69],[-17.413,14.674],[-17.884,14.558]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.238844,36.939406],[26.187359,37.083187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.517,58.516],[-2.254,58.4715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.289094,57.821469],[18.4595,57.8915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.216875,50.345875],[-0.254125,50.21425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.816,61.808],[19.677,61.398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.56175,59.9105],[21.36675,59.84175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.179,37.631],[26.011938,37.647875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.4165,54.092],[1.565,54.068]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.793,40.45525],[-73.028,40.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.272703,60.148813],[5.343,60.0215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.336875,55.2255],[16.245,55.322],[16.160484,55.483516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.449,41.424],[38.8115,42.1715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.93775,54.2815],[-4.053,54.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.141687,41.374812],[9.195668,41.28693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.667125,58.501375],[5.866594,58.323113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.116,39.315],[25.208,39.204]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.369687,36.318625],[14.635687,36.517281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.454,43.436],[38.779,43.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.86925,38.55225],[8.75175,38.451]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.536,21.218],[124.32,21.287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.706484,36.403008],[14.821125,36.556516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.4,10.5],[130,9.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[61.555,23.457],[63.3,24.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.509375,49.419125],[-2.042078,49.697828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.655,4.141],[121.892,6.947]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.065,8.956],[-140,8.503]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.969508,55.613234],[16.153813,55.639187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.615,63.415],[19.7305,63.3545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.457,65.933],[36.378,66.123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.92725,41.702375],[9.758258,41.651336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.211,38.8935],[-71.795,38.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.455,-24.722],[163.253,-26.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.3245,56.4755],[-6.194,56.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.5435,36.8875],[21.663,36.898],[21.615625,36.79425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.021375,55.5605],[-5.166329,55.353328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.613625,58.325875],[8.59334,58.182074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.825,57.05],[-5.677,56.993]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.265,54.215],[8.236625,54.069906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.404,55.105],[7.3675,54.854]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.211,21.125],[-157.97,21.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.551,39.867],[8.4385,39.8315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.841,34.996],[23.714,34.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.30175,40.94275],[18.525625,41.264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.8645,36.1305],[19.568,36.2085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.999,16.139],[72.4,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.54675,42.515875],[17.232875,42.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.237,65.446],[23.791,65.202]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.443,38.97],[9.324687,38.865562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.41675,36.40525],[-6.564188,36.107438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.957,6.078],[168.093,7.111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.455,27.714],[34.5,27.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.694438,37.352875],[12.537016,37.42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88,13],[88.973,13.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.437,22.52],[124.536,21.218]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6375,57.03375],[6.821906,56.774562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.751042,37.436962],[23.901129,37.534844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.404063,53.723],[6.478,53.647]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.707656,44.083062],[28.799625,44.006]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.121,37.889],[-9.351,37.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.508516,42.971422],[8.6115,43.0815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.797,39.16425],[14.9535,39.087125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.671937,38.898688],[20.455937,38.751469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.741,59.199],[4.591,58.836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.245125,60.090375],[19.209125,59.737875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.021375,55.5605],[-4.964926,55.675785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.930719,57.919812],[7.7775,57.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.212,-11.577],[-30,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.572047,37.841047],[11.462,37.828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.399,44.722],[36.51325,44.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.131688,38.157562],[24.010906,38.29025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.933875,65.3335],[23.429,64.9995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.36175,39.533281],[24.514125,39.374625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.636,55.285],[16.764375,55.57025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.45,57.0095],[17.14,56.61875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.336,38.2],[1.434,38.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[112.687,-21.911],[113.382,-21.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.173,51.354],[-8.183,51.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.307,54.744],[-165.8,55.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.827,57.062],[7.8925,56.96425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.825,-10.051],[49.622445,-10.108843]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-112.549,12.904],[-116.621,13.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.639578,40.049898],[25.229,40.2445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.004258,44.008082],[10.165625,43.846063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.697125,68.714438],[16.532,68.574],[16.42375,68.5555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.742,70.806],[19.639,70.972]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.089152,62.212629],[20.75475,62.53275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.668,53.744],[-130.758,53.595],[-129.468,52.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.853,-14.861],[84.194,-14.352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.124,63.509],[8.006,63.242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.099,-35.201],[-47.249,-35.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.459,41.488],[-69.3395,41.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.668,45.7575],[-4.797,45.654]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.955,52.857],[-177.29375,54.63925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.792,39.181],[-69.241,38.951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.27325,36.578],[14.383,36.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.155,14.452],[144.879,13.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.604,37.012],[-14.458,37.228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.61,63.826],[9.803,64.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.588,52.279],[-53.28,52.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.766969,58.820484],[10.566531,58.892156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.205,55.113],[17.994,55.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.926687,42.302437],[-8.979063,42.141562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.450445,64.356875],[22.13,64.176]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.783,64.997],[22.794375,64.834375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.785,59.097],[17.745,59.086],[17.707375,59.028875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.437883,36.621586],[27.344875,36.804312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.542,38.992],[0.488125,38.813875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.961781,38.918188],[26.10475,38.886125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.723,-34.101],[152.834,-33.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.57475,-7.0675],[125.466,-7.872]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.788375,54.77],[18.895,54.797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.615625,36.79425],[21.5435,36.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.365992,57.405602],[11.119125,57.372625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.556,62.687],[8.233,62.805],[8.171,62.827],[8.066,62.962],[7.902,62.972]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.205125,50.286875],[-2.342,50.1905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,30],[-42.397,30.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.80375,42.980375],[8.762,43.171]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.581445,37.077711],[12.84075,37.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.386258,43.984094],[14.228418,43.868785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.11,-45.405],[120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.131,55.9],[6.078,56.053]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.174547,36.856313],[25.080813,36.912281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.396453,37.483766],[26.485094,37.327984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.636,-34.236],[151.5,-34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.133,66.32],[14.007,66.288],[13.639,66.24],[13.059,66.171]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.2045,39.0915],[-12.7155,39.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.74,1.456],[104.591875,1.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.578,-3.059],[8,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.916555,64.593055],[-14.29475,64.38125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.321188,42.005],[11.245156,41.879453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.52,-40.571],[160,-40.558]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.338,47.058],[-172.539,47.582]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.598,67.038],[41.202,67.88],[35.555,69.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.663125,60.19175],[4.655,59.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.695,54.618],[-133.98,54.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.926188,36.072688],[23.817125,36.06025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.4705,36.295],[25.352688,36.262219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.245125,60.090375],[19.513219,59.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.105,37.214],[0.94,36.957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.692079,44.314373],[8.942656,44.383891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.3675,58.603],[-1.2445,58.5955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.196727,40.064031],[26.085125,39.75025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.997,-53.66],[-40,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.136688,39.241187],[9.968,39.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.5345,50.453625],[-2.368625,50.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.86875,60.96175],[19.619875,61.102125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.738992,44.657469],[14.837391,44.516937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.195594,37.575281],[12.162812,37.692531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.56,49.676],[-5.64625,49.77825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.882125,60.26575],[28.0355,60.15975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.413812,60.001],[26.33575,60.18075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.636,34.76],[25.114,34.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.8965,49.437],[-6.806,49.336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.561,10.012],[-162.473,7.576]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.659,-9.23],[176.352,-9.268]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.0925,61.4205],[19.811,61.17125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.595,-41.573],[5.713,-43.351],[3.945,-44.212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.695688,37.982687],[11.572047,37.841047]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[100.5415,77.6975],[102.097,77.976],[106.482,77.8545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.606,63.087],[21.381,63.114],[21.233,63.121],[21.137,63.126],[21.01275,63.1935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.46925,38.59325],[11.345,38.871]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.091,27.78],[49.051,28.2135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.939,22.492],[-20.572,22.98]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.18,55.327],[-165.307,54.744]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.869656,57.696844],[-3.521,57.904]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.28425,38.16775],[20.088,38.421]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.667,33.189],[-122.642,32.872]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.76282,43.569477],[-3.909,43.5615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.054,37.349],[-9.917,37.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.182156,58.209859],[6.209,58.086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.164453,55.329266],[12.961844,55.224438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.959125,56.402125],[18.916,56.179]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,30],[-149.194,30.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.978891,48.984687],[-3.25225,49.061125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.49,33.125],[125.6,34.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.23325,59.96575],[20.2055,59.76425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.3955,55.550125],[17.5305,55.3685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.778578,52.525672],[1.73425,52.33275],[1.719156,52.181344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,0],[152.58,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.834,43.617],[-77.183,43.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.446,-40.852],[149,-43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.3,-24.3],[-43.25,-23.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.51575,49.1745],[-5.623812,48.989594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.575,40.65925],[1.62475,40.476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.106,-14.262],[-160,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60.001,-37.597],[62.832,-37.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.474,56.614],[10.650688,56.718375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.764,34.7415],[24.636,34.76]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.149,7.185],[77.942,7.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.63,56.6155],[20.678,56.7105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.14,66.412],[-18.3925,66.38375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.315875,58.167187],[6.293062,58.015375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.0465,36.943],[13.127375,37.039187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.193891,43.80825],[8.079,43.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.571,49.873],[-123.378,49.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.69025,64.834],[22.794375,64.834375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.116375,59.861187],[25.4085,59.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.762,24.561],[-18,21.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-1.577],[-140,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.4155,70.826],[32.6785,70.542]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.116,65.0035],[-24.017,64.8055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.333,29.998],[-83.7505,29.882],[-83.502,29.641],[-83.425,29.26],[-83.021,28.942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.834281,36.283469],[-3.939375,36.260625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.584625,53.929375],[8.45,53.9395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.6495,43.041],[3.605375,42.797031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.2,63.6],[-52.77,63.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.069625,60.563875],[19.251,60.57825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.167406,37.277938],[26.065406,37.367156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.75225,43.4335],[14.675906,43.631531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.334063,56.520812],[16.343812,56.340094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155,35.386],[-150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.676,-22.281],[173.284,-20.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.416719,58.424625],[10.58975,58.35325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.001,36.534],[-50.002,35.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.172453,54.831187],[13.01425,55.0485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.986,44.428],[-8.160375,44.033375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.397,59.784],[3.91075,60.07075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.205719,43.223625],[15.265703,43.090328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.063,53.228],[-3.28,53.38725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.391,29.631],[-15.53325,29.310313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.72975,53.804],[-5.553,53.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88.553,20.312],[91.08,21.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.846,54.0025],[6.735,53.895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.479484,43.3675],[15.34025,43.32625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.848898,38.534312],[14.9295,38.6725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.318,48.93],[-28.802,48.874]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.5255,36.691],[13.459,36.77175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.5435,38.32275],[15.374844,38.326188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.632,42.601],[30.474,42.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.8805,55.671875],[7.824813,55.531312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.749469,43.513031],[7.828375,43.611688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.7055,54.5395],[10.906,54.483]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.169688,54.784375],[16.349195,54.779453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,-12],[152.698,-13.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.1875,39.7695],[17.962875,39.856]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[155.707,20.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.011938,37.647875],[25.871895,37.599242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.676,49.827437],[-7.4905,49.7065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-20],[-25,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.861,62.06975],[20.7445,62.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.33,34.987],[-13.063,35.076]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.33,-26.537],[7.224,-23.063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.188875,36.739812],[-8.866,36.771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.358516,36.337297],[23.292113,36.209797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.576,-9.045],[159.41,-9.488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.617,62.196],[-6.541,62.126],[-6.708,62.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.343812,56.340094],[16.243,56.234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.855,56.087],[10.655414,56.058281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.083375,55.649687],[19.9375,55.56225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.399875,55.542375],[15.483469,55.693687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.766,28.286],[-89,28.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.851,-3.899],[-130,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.057,57.009],[2.143,56.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.599,42.464],[7.644594,42.228906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.77525,57.13575],[18.864,57.21375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.233,43.988],[-10.214,43.747]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.877,43.939],[-134.7,43.486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.248,61.312],[19.312875,61.169125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.119563,58.295437],[11.177086,58.213051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.008,55.3205],[16.988188,55.52175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.875,55.857],[9.963,55.85],[10.11575,55.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.781438,49.663469],[-4.8655,49.4095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.235,56.354],[16.343812,56.340094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.889,58.701],[-5.08,58.634]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.478,38.3245],[-0.42275,38.1165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.6705,74.5495],[-126.421,75.115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.364,28.455],[-96.073,28.188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.211,36.466],[-48.553,35.006]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.9,52.6],[164.732,51.921],[158.626,50.969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.299,34.061],[23.035,34.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.762609,58.781531],[9.886453,58.776234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.639953,49.750961],[-3.98,49.773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.672,10.4],[-94.048,11.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.548,59.602],[16.637,59.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.458,42.82525],[8.3285,42.898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.701406,35.484406],[25.61625,35.66425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.602,41.4025],[18.645,41.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.07,16.489],[-26.203,17.297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.262,59.335],[-2.8735,59.1445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.1865,41.63375],[-9.363,40.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.630656,46.091781],[-1.854875,46.0455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.560937,57.934938],[6.293062,58.015375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.233,16.03],[-84.594413,16.051921]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.085,25.8165],[-77.53,25.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.11,-45.405],[3.945,-44.212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.575,65.531],[25.135,65.096]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.194203,50.105375],[-2.426,50.108]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.046391,61.372875],[21.127313,61.156312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.705,32.59],[127.293,32.861]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.549,-29.574],[-89.148,-30.016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.79275,39.80475],[9.6805,39.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.551172,50.742578],[-0.335375,50.78375],[-0.191719,50.766719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.250625,39.284125],[8.179,39.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.137437,53.632687],[0.106,53.57],[0.179469,53.560531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.728,39.144],[-72.211,38.8935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.676,65.902],[22.69,65.884],[22.809,65.745],[22.777,65.68275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.967812,50.461156],[0.845,50.469813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.916,37.183],[4.265,37.133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.74,-34.631],[165.521,-34.869]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.224,47.41675],[-3.384,47.258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.999016,51.063203],[-6.3785,51.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.5,54.4],[-9.575,54.791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.419,37.905],[16.63,37.909]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.6645,37.411],[-69.70175,37.131]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.729,-20.622],[116.667,-20.1995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.471,35.46425],[26.367,35.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.5755,54.02],[5.431594,54.11825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.356414,43.345578],[10.219016,43.358938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.4885,54.398],[15.394375,54.535219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.9815,37.847],[-23.371,36.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.979063,42.141562],[-9.021609,42.014109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.97,32.125],[-76.843,31.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.31,40.282],[-27.798,40.047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.3,35.9],[142,38],[142.25,40.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.726656,51.531188],[-2.714,51.501],[-2.624,51.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.935125,42.460375],[15.779031,42.454313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.179469,53.560531],[0.31975,53.6265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.967,14.583],[120.629,14.445],[120.367,14.319],[119.9,14.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.471,50.184],[-8.3445,50.6435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.615,62.873],[20.4905,62.74475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.449,47.6695],[-6.565062,47.619125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.089,-19.203],[9.747,-20.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.967,57.793],[23.919,57.579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.37825,53.71425],[1.549,53.694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.3065,48.2945],[-5.376,48.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.973812,35.072219],[24.17725,34.951813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.590312,41.846594],[11.3435,41.774687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.094,-13.942],[172.789,-13.552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.644,-40.035],[48.503,-41.676]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.706176,48.730629],[-5.55925,48.805484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.7685,54.422],[6.5465,54.518]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145,25.277],[144.232,26.002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.05225,38.1465],[-9.05325,37.9965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.678,-3.938],[-106.834,-3.208]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.851,-29.331],[59.491,-29.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.639,36.413],[31,36.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,50],[-155.113,45.402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.246,64.5555],[21.9895,64.50825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.211,54.574],[0.064,54.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.1925,30.353],[-76.834,30.041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.775,57.51],[-16.517,57.947]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.34,63.243],[19.51375,63.171]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.287625,36.376078],[25.284078,36.52936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.002,-46.134],[0,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.728145,49.875125],[-1.6285,49.975844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.173,51.354],[-7.66,51.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-177.754,47.893],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.837,36.586],[30.966,36.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.5735,56.153375],[-7.125063,56.87325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.76,37.8285],[26.624,37.788875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.5355,38.678],[9.683,38.4155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.026,38.384],[-10.08,38.581]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.728,36.495],[21.925,36.483375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.201375,36.731938],[24.006125,36.64475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.794,46.465625],[-1.928,46.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.246875,41.291],[32.832,42.134],[35.296,42.206]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.20975,37.28275],[23.411656,37.381625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.525625,41.204813],[17.870285,40.901733]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.27125,57.48325],[23.031,57.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.963938,54.581],[11.007062,54.683188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.795313,38.350875],[24.010906,38.29025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.716156,53.609313],[5.60825,53.644062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.25825,37.08725],[-9.5865,36.87825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.925,47.798],[-17.658,47.514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.403,40.002],[2.366,39.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.805,-47.364],[-10,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.485,54.465],[14.656,54.597]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.26575,19.25825],[-64.3405,18.893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.4,65.5385],[23.398,65.378]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.56175,59.9105],[21.4,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.05425,43.7815],[-8.221,43.8965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.275,56.82575],[7.166906,56.684656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.9,46.25],[34.029,44.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.93675,52.1415],[3.035,52.40575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.434375,55.64575],[6.4465,55.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.86075,20.976375],[-73.837688,19.982813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.7285,39.3075],[3.817,38.9955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.322,43.8645],[-2.796,43.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.795,28.122],[-87.184,28.136]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.0995,59.7035],[-2.174,60.209],[-2.013,60.465],[-1.411,60.692]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[97,11.125],[97,13.788]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,25.277],[-38.311,28.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.218484,54.489812],[10.33375,54.50225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.041844,36.399219],[25.147418,36.515793]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.34,18.559],[-73.211,19.243],[-73.837688,19.982813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.214,55.648],[19.206469,55.504406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.682375,57.704125],[6.7355,57.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.723,64.178],[-52.77,63.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.094,28.353],[-79.3215,27.4185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.683625,37.49325],[10.347812,37.55925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.799,37.4375],[22.940625,37.333875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.569,38.349],[-9.607875,38.47475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.031375,61.317125],[4.80218,61.269719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.562062,37.788625],[-9.53575,37.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.8545,56.655],[11.886,56.762438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.98075,55.10025],[18.8465,55.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.288,66.271],[-19.0275,66.2495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.5,-28.125],[10.425,-25.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.059094,57.563531],[8.043094,57.403391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.3785,40.857062],[13.464594,40.920094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.930844,59.65625],[19.987375,59.541]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.163,-23.83],[164.83,-24.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.819687,55.97925],[15.936,55.9195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.631,11.438],[-130,11.666]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.548,-22.664],[167.652875,-23.02875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.271,52.303],[2.61125,52.291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.22425,50.18675],[1.2685,50.308875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.743,34.939],[26.804,35.108]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.456187,36.115125],[14.54,36.18225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.5655,59.91625],[22.783125,59.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.531,55.897359],[15.6885,55.868688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.849,33.664],[128.057,33.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.18075,37.855125],[23.294,37.693],[23.41125,37.695766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.891634,37.335923],[21.162,36.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.614125,60.8495],[4.49425,60.75125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.064,33.309],[32.739,32.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.660906,54.225875],[13.787547,54.365617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.770184,56.628477],[6.589875,56.393375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.359125,58.703875],[-3.5395,58.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.801,57.1025],[-1.67475,57.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.214703,55.266328],[11.126734,55.214766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.667,19.443],[120,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.03,-14.185],[64.66,-14.828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.442,55.811844],[16.533219,55.99525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.845,58.364],[-162.092,56.731]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.4085,59.934],[25.227781,60.117844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.027,35.449],[-16.138,35.247]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.761602,50.050055],[-5.76275,49.82525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.368313,45.661125],[13.45457,45.588383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.108,48.964],[160.194,48.11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.834,39.231],[-32.34425,37.84675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.736,-23.112],[167.912,-23.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.73,0],[143.198,3.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.7605,52.923],[-5.73325,53.072]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0695,55.3905],[7.938492,55.439906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.277,60.642],[2.934,60.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.648,43.203],[4.856,43.194]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.20025,43.483],[-9.293,43.399]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.757711,55.171898],[19.056625,55.026859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.5845,58.22875],[18.53425,58.1305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.205,55.203],[5.8995,54.911]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.848,37.221],[-69.70175,37.131]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.74625,55.16375],[-5.720328,55.036125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.9,34.8],[140.312,34.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.66,58.868],[-168.734,59.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.544,37.487],[-72.558,37.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.927,-2.967],[-101.752,-5.504],[-100.647,-8.562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.013125,42.132625],[15.04525,42.33075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.221,32.244],[-79.233,31.641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.89275,57.126625],[6.951375,56.953625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.749,-19.908],[160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.959625,43.261375],[5.027742,43.146727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.9,-43.4],[-64.701,-45.722]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.792,28.08],[-74.98,27.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.92275,40.8775],[9.896625,40.681125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.99,66.584],[-21.578,66.4795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.093688,37.843187],[26.318219,37.858234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.3835,43.6835],[9.509438,43.597]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.773,42.119],[131.816,41.969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.558,32.782],[-52.246,32.442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.68259,40.563051],[14.435766,40.569461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.389406,56.289125],[19.858,56.19025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.492,29.805],[-70.007,28.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.852938,60.690344],[4.6715,60.750375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.869908,37.367563],[23.983172,37.421102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.247,41.296],[8.250234,41.150875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.770469,54.076375],[7.645297,53.946391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.2215,56.872],[11.260344,57.327438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.174,36.45325],[-2.0665,36.591]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.642,32.872],[-124.312,32.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.639,78.231],[15.293,78.412],[13.38,78.098],[13.03,77.606]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.9735,34.3275],[-7.999,34.5095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.197,58.321],[17.08025,58.53325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,10],[160,8.458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.991219,54.888781],[17.802795,54.899248]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.638,43.554],[177.958,44.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.635687,36.517281],[14.557,36.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.1875,54.676875],[13.172453,54.831187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.978875,35.972875],[-5.149312,36.059062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.15,64.474],[22.246,64.5555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.735,72.272],[82.467,71.983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.613,51.9355],[-6.883625,52.02475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.246625,38.70375],[13.083,38.6375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.935,4.992],[-100,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.652,0],[-171.019,1.034]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.709437,66.141781],[-23.893,66.0435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.615,45.28],[-2.894,45.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.17,6.638],[68.961,5.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-14.731,39.362],[-13.759,39.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.805,58.647625],[10.769906,58.507578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.22575,40.79075],[18.081125,40.871]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.21,40.012],[8.291688,39.819742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.799813,36.065156],[26.525,36.1295],[26.38075,36.147875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.738563,55.471],[-5.019813,55.372281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.218438,43.126688],[9.323109,43.159414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.136,38.053],[10.3155,38.0295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.395,-35.007],[10.002,-35.004]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.5665,54.5805],[8.514719,54.380844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.107,56.079],[5.065,55.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.326625,43.986062],[8.246813,43.923437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.055594,43.343344],[-9.973449,43.527437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.07275,41.63825],[-9.9795,40.814125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.67675,12.1335],[44.153,12.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.0965,5.3055],[-7.518625,3.509375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,40],[-123.761,37.9595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.47,55.6645],[10.468247,55.665064]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.923813,36.666719],[24.958703,36.849672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.133,51.803],[-16.61,50.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.555438,56.672406],[11.4215,56.8835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.771,48.829],[-6.627625,48.955375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.7895,58.389],[-1.675188,58.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.541906,42.961406],[9.556641,43.06575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.719,64.338],[-21.726,64.348],[-21.9375,64.28125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.380125,54.51675],[8.231156,54.456891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.801,-19.342],[178.901,-20.269]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.702,45.774],[-3.197,45.616]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.97675,21.97175],[-86.165375,22.086781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.867,35.067],[136.789,34.729],[137.288,34.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9545,56.176],[-1.954,56.342]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.17375,39.212375],[14.2155,39.3115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.2695,53.2485],[1.48725,53.17825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.025,-18.944],[167.886,-18.472]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.064172,40.707727],[13.0845,40.594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.591875,1.5175],[104.4625,1.6555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113,-23.5],[114.1375,-21.518]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-43.434,36.831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.509125,59.37325],[23.81175,59.435125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.368313,54.725875],[15.29175,54.825688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.871,26.184],[-89.462,25.708]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.2775,64.677],[21.4265,64.6595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.411,59.13],[23.38975,58.9105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.498,61.148],[-4.344,61.467]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.662312,36.51475],[25.617289,36.726492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.404,55.105],[7.422,54.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.5275,36.177875],[25.378188,36.126438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.24525,51.617438],[1.330375,51.707375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.607,38.624],[20.636258,38.502305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.823156,42.681648],[16.86825,42.487547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.828234,39.089973],[25.706023,39.078133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.618,52.545],[-150.844,53.472]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104,-7.001],[110.249,-8.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,2.733],[-29.223,4.359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.548821,36.637965],[26.723492,36.675875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[151.854,17.789],[150,16.669]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[81.232,11.931],[82.25,7.251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-20.75],[160,-20.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,60],[-8.6205,58.5255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.665,26.3255],[-77.0485,27.078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.0035,-9.993],[170.068,-9.371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.478,63.9105],[9.242,64.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.862258,53.790398],[7.645297,53.946391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.623125,39.099625],[26.676,38.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.845813,36.259187],[24.992875,36.197375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.312594,41.849781],[17.4545,41.94675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.287602,40.316414],[13.28775,40.11775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.6315,40.3185],[0.197,40.0055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.2165,50.608],[-6.424,50.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.761,-12.463],[146.524,-16.084]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.001,37.288],[-37.314,37.521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.1255,38.716],[15.93025,38.722]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.3,58.737],[-0.3035,58.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.463,58.176],[1.195,57.938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.8525,69.363],[15.1885,69.164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.635,59.355],[3.48175,59.2585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.965,57.038],[-1.062,57.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,30],[164.415,24.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.496,31.37],[-72.693,31.223]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.999,-14.46],[-86.337,-16.489]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.56984,37.861602],[24.429336,37.93318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.1345,36.497],[130.161,35.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.01275,63.1935],[20.627,63.169]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.64425,40.12075],[18.504,39.913]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.166906,56.684656],[7.06025,56.556875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.4965,38.576813],[20.636258,38.502305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.181,17.157],[-64.3665,17.1675],[-65.84175,17.25425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.998,-29.998],[5.024,-25.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.66925,56.015],[7.609,55.80425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.61,50.792],[-19.223,50.906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.985047,56.042883],[10.855,56.087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.738563,55.471],[-4.83,55.599],[-4.964926,55.675785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.829,46.8045],[-2.906,46.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.6745,8.6815],[69.17,6.638]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.251,60.57825],[19.378,60.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.247,39.392],[-74,39.407]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.085,-15.086],[-160,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.095,18.141],[65.092,17.216]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.6,1.5],[45.759,1.647]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-10],[-27.019,-10.022]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.743875,38.873375],[0.873,38.811]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.424,37.147],[-12.262,37.129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.335,40.1],[-27.798,40.047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.019,-2.681],[116.952,-1.429]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.713,36.11],[-11.342,36.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.94975,37.154],[12.84075,37.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-20],[-10,-21.343]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.003375,54.852438],[13.934062,55.021375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.81,56.804937],[10.963531,56.821156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.987,39.301375],[12.963,39.426]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.3035,58.535],[0.2155,58.5015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.527,27.613],[-141.797,28.302]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.6605,37.1105],[3.895,37.092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.6695,30.48],[-68.558,30.027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.057,37.5065],[1.448,37.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.187,14.031],[51.001,13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.5,5],[2.353,4.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.793,40.45525],[-71.5945,40.452]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.048672,55.312602],[11.214703,55.266328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.1295,54.8555],[8.125375,54.6755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.807994,55.276076],[10.033637,55.073915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.598875,57.713125],[-1.369,57.70275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.510438,36.217375],[-4.46325,36.31475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.574,38.787],[-75.076,38.801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.5295,52.681],[4.454422,52.444984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.082187,56.717187],[8.178625,56.688625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.490258,53.60458],[5.2995,53.54075]]}},{"type":"Feature","properties":{"pass":"panama"},"geometry":{"type":"LineString","coordinates":[[-79.922,9.364375],[-79.863,9.185],[-79.63,9.028],[-79.513,8.8695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.5955,26.7635],[-79.8,26.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.333215,53.965777],[-3.442594,53.802406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.880156,57.838547],[-1.81575,57.98175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.57,43.388],[14.655,43.319375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.663,42.187],[9.557,41.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167,55.427],[-167.643,58.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.246422,54.970922],[16.2875,55.08225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,0],[-17.007375,11.029125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.1945,42.9955],[10.052805,43.031813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.3805,63.507],[-20.944,63.571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.531,31.092],[-66.136,31.709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.63,56.6155],[20.859422,56.530578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.702,16.359],[-156.376,15.466]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-50],[-40,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40,-40],[40,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.364375,38.108953],[25.352,37.851]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.342,36.623],[-11.213,36.8015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.568,-36.967],[160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.884,-18.205],[168.558,-22.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.901625,57.223375],[12.022781,57.076859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.60375,38.728375],[15.439125,38.654156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.685,32.422],[-16.177,31.929],[-14.778,31.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.9835,22.9925],[117.7605,21.986]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.097938,51.588313],[0.859523,51.49709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.848594,54.805672],[15.658469,54.879063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.645,57.60275],[8.922,57.675312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.484875,36.30875],[24.486187,36.420883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.519,46.0415],[-3.595,45.929],[-3.7185,45.7765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.493688,40.443703],[18.5145,40.2755],[18.522156,40.175484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.4275,61.58525],[17.505516,61.508156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.9,31.3],[123.661,31.313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.554063,38.455859],[25.693219,38.449734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.248,39.749],[14.303,39.843]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.337,57.826],[-1.643625,57.86225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.0645,49.9135],[-11.979,50.006]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.250234,41.150875],[8.077875,41.142875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.11475,35.0305],[24.841,34.87775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-20],[76.998,-17.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.899031,59.475344],[19.854938,59.180188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.9,31.3],[124.534,32.308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.62393,37.715352],[23.711118,37.566561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.564125,35.614563],[24.67975,35.640094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.7015,35.80725],[22.302,36.021]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.586,2.888],[127.393,2.599]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.951375,36.629875],[14.185484,36.698141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.926,56.491],[6.6705,56.73675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.103,41.692],[10.0165,41.837688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.708,-23.944],[165.154,-25.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.66925,35.99725],[-3.794,36.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.999,-33.147],[-29.998,-35.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.623812,48.989594],[-5.55925,48.805484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.552312,54.863062],[-5.645406,54.935109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.429,17.566],[-50.01275,19.968875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.7785,58.614],[16.9525,58.354]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.342,35.594],[-124.792,35.763]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.57375,41.32575],[5.641,41.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.321,36.091],[120.286,36.086],[120.272,36.03],[121.034,35.921]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.326813,57.37825],[17.2155,57.352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.7225,55.4545],[6.704,55.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.709437,66.141781],[-23.537,66.235375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.788423,35.822991],[28.022,35.7675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.09975,57.083],[19.035625,56.98875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.2345,38.78125],[9.324687,38.865562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.462312,56.352656],[7.372797,56.478781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.757,54.812],[-8.436,55.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.78,-16.373],[167.379,-18.213]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65,-35.386],[70,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.608,36.135],[-12.727,36.138]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.1,54.7],[167.9,59.6],[179.614,62.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.614,62.02],[168.175,58.991],[163.1,54.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.718538,41.717609],[29.112813,41.234719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.574336,37.448672],[23.463461,37.560992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.593312,68.221625],[14.686125,68.023125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.401,54.15],[8.236625,54.069906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.801,66.059],[-19.642,66.123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.134,35.715875],[26.1515,35.856]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.08775,59.9665],[4.894938,60.026063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88,13],[86.455,13.773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.475,45.842],[141.027,45.64],[141.746,45.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.741,45.37175],[12.983,45.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.941,54.965],[6.7685,54.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.1655,61.254],[18.332,61.1705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.84,30.52],[48.416,30.171],[48.387,30.115],[48.682,29.883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.678,-10.02],[-140,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.7265,-3.4845],[118.454,-3.189]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.1405,60.2145],[21.321125,60.134563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.041125,60.252875],[18.919719,60.131031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.817,54.9705],[5.76,54.7775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.951906,50.026156],[0.792,50.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.966,28.079],[-50.001,27.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.109,54.643],[-4.294,54.803]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.768,5.224],[125.683,3.951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.002,35.462],[-129.819,35.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.851,57.339375],[7.8885,57.1615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,40],[-130.834,40.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.033637,55.073915],[10.209514,55.058687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.44575,40.680125],[2.514625,41.004563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.388,10.01],[140.722,9.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.96625,52.007125],[2.998203,51.880914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.783,36.108],[-7.674,36.079]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.215,39.644],[6.659,39.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.655,35.31],[27.495,35.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.37375,55.03225],[13.172453,54.831187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.113,45.402],[-139.74,49.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.544812,38.512313],[13.729,38.39825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.005,61.088],[7.185,60.906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.14,50.688],[174.381,50.316]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.57475,38.23775],[24.648805,38.133055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.208,66.316],[8.676,66.898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.593469,58.146406],[17.613,58.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.996312,50.798438],[1.117568,50.834391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85.111,-45.404],[90,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.892477,50.135],[-5.777,50.2265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.6555,40.221],[18.57,40.29875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.875125,39.163875],[19.79725,39.287688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.53,16.679],[65.083,15.253]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.3995,36.435],[16.186,36.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.612,-24.889],[-30,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.203875,35.832875],[24.354469,35.785625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.956,56.135],[7.076625,56.4355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.449,41.424],[40.537,41.437],[41.1,41.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.8535,37.8855],[26.093688,37.843187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.666,58.403],[20.75225,58.339875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.34432,58.758523],[10.497555,58.616561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.0285,39.4135],[24.0375,39.2665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.78,-16.373],[162.873,-17.268]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.280875,51.475687],[-5.1365,51.54375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.063,-7.186],[-31.512,-8.11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.927813,60.014313],[20.03025,59.858]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,2.174],[-40,1.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.3955,55.550125],[17.29425,55.553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.467,66.461],[7.701,66.979]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.014,-15.1565],[0,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.0395,43.885],[8.938125,43.935781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.729,39.327],[-20,39.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.10725,53.48225],[-3.831844,53.561281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.3,-34.4],[171.021,-31.953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.323,39.059125],[8.220656,39.039656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.5465,59.56225],[25.08275,59.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.219625,36.92575],[27.058477,36.863164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.777,27.713],[-85.068,27.086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.604,59.284],[19.31,59.168]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.231,-3.019],[-38.1,-3.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-10],[63.938,-14.091]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.4705,37.3125],[-0.137,37.131]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.20175,42.931625],[6.077,42.825125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.437,66.964],[-17.253,66.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.8115,43.554],[-1.708,43.79025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.724812,36.342438],[23.522031,36.380711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1595,60.925],[4.048,60.931]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.394,42.646],[37.817,42.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.525313,57.723312],[9.383016,57.757641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.934,44.019],[15.027,43.949],[15.1745,43.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-50],[-87.48,-47.734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.672,49.652],[-12.0645,49.9135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.16417,37.260051],[25.056,37.212477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.582187,46.53325],[-2.45825,46.474875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.404875,45.23625],[-4.1455,45.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.524,53.302],[5.992,53.419]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.3435,41.774687],[11.349,41.90625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.034437,39.824531],[19.193188,39.587438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.964,35.8595],[24.852359,35.743156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.6085,-22.90075],[111.66,-22.217]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.20375,43.705],[8.205,43.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.05475,4.873125],[2.175,4.907]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.009375,37.257469],[26.080867,37.187129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.619,-32.499],[153.479,-32.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.219,65.228],[-13,65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.056187,21.765438],[-85.6,20.933]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-40],[87.729,-42.544]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.458,47.608],[-122.438,47.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.1965,56.750875],[-7.125063,56.87325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.324,55.4995],[5.075,55.507]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.2875,55.08225],[16.46375,55.110625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.173,28.235],[-18.225,25.348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.560625,38.823],[8.607281,38.723094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.27725,49.801125],[-5.50625,49.928562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.118,19.73],[37.894,20.212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.206469,55.504406],[19.37925,55.527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.930844,59.65625],[19.899031,59.475344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.959641,36.079094],[23.082625,36.22475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.174,53.307],[-35.517,53.342]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.453,17.481],[-66.59125,17.2995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.314,-22.4065],[165.163,-23.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.911,29.173],[-11.959,29.521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73,17.3],[-69.75,17.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.829688,39.325937],[0.967,39.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.157,39.387],[-30.834,39.231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.252187,41.795797],[3.179,41.61225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.897,30.346],[122.366,30.149]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.1765,40.811],[27.573,40.704]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.246625,38.70375],[13.5455,38.8035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.031,39.505],[-70.919,39.109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-10],[-84.676,-4.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.36775,37.50575],[16.201375,37.474625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.925,55.622],[3.7415,55.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.290563,55.696742],[16.44975,55.49825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.081,27.243],[-66.572,22.583]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.12,35.4165],[26.103,35.57525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.511,57.805813],[17.415,57.868]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.488,25.657],[35.267,25.591]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.995687,43.5465],[-2.9925,43.809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.9745,53.991375],[-5.72975,53.804]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.068,27.086],[-83.999,26.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.5,1.1],[123.655,4.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-40.001,37.288]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.557,55.55875],[10.377,55.629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.389375,58.667938],[-2.152,58.626]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.035125,36.354312],[23.193945,36.375039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,39.592],[-139.754,39.773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.3955,55.550125],[17.618,55.828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.746,40.514],[28.93,40.372]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155,-5.057],[-150,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.556031,61.746641],[4.345,61.552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.238,55.114],[17.4365,55.290625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.834,34.152],[-8.921,34.708]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.584,47.45],[-4.705,47.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.6355,58.98025],[20.836766,58.773047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.239,50.819],[-12.478,50.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.895,58.443],[18.83525,58.345438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.175812,54.2445],[11.342,54.284625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.087,32.508],[28.9205,32.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.696469,58.992563],[10.566531,58.892156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.106922,37.287437],[11.97443,37.198852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6705,56.73675],[6.770184,56.628477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.374,34.805],[-74.1655,34.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.661,31.313],[128.135,31.387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.747,22.389],[-55.65425,20.05575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.733,55.987],[3.8975,55.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.67425,55.83475],[20.8175,55.761938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.475,71.126],[20.797,71.151625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,21.49],[-49.207,20.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.301,30.295],[-90.096,30.247],[-90.02,29.989]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.342375,58.375],[18.54725,58.390125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.092,44.474],[15.053,44.446],[15.024,44.472],[15.028,44.49],[15.092,44.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.153,52.3015],[3.175125,52.7395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.725,41.081],[-8.8425,40.9385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.766937,57.968063],[23.660875,57.97925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.98,-32.153],[0.001,-32.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.7445,62.01],[20.661,61.90475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.95,47.109],[-4.885,46.7895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.533844,56.391094],[-5.6355,56.407781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.934,37.421],[10.814,37.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.308344,54.149055],[11.4555,54.1435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.61725,37.91525],[7.759,37.5805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54,52.5],[-53.28,52.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.43557,44.48393],[14.445375,44.310875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.68,45.541],[-60.217,45.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.938,51.517],[-4.11725,51.391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.04,64.274],[-167.313,63.932]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,0],[166.323,0.534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.74775,60.29725],[28.637,60.209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.569,33.915],[26.488,34.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.869266,58.091203],[9.864,58.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.521,57.205],[-1.569,57.0855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.244,47.229],[-58.431,47.279]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.3045,29.107],[48.682,29.883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.120004,55.848078],[16.153813,55.639187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.723,38.413],[-9.68325,38.161]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.057,54.315],[-0.231625,54.403687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.5025,53.583],[0.729812,53.586063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.246,55.347],[-7.978,55.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.2255,37.161],[25.335969,37.149344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.8155,49.99325],[-3.869531,50.101469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.10825,49.92825],[-12.0645,49.9135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.997,26.028],[52.1,24.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.6475,46.1675],[-2.618,46.4045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.2565,37.712625],[15.429813,37.774375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.828,39.26875],[14.827,39.393]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.854859,44.386266],[13.6335,44.21175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.627,-35.147],[112.97,-34.641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114,6],[114.584,6.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.708,36.1845],[15.649125,36.286375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.217,37],[-70.316,36.971]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.49925,38.24975],[-11.416,38.424]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.687,19.241],[124.538,20.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.599,-3.445],[-168.504,-8.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.39,40.465],[3.248,40.4505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.2795,44.89],[-4.893,44.7455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.752,42.817],[35.506,42.738]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.511,36.796],[-72.062,36.612]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.31725,39.29175],[25.341961,39.129945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.402,66.383],[6.865,65.313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.01425,54.88775],[8.0635,54.7685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.607,52.89125],[-5.548,53.17875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.959,64.077],[23.01725,63.84475],[22.817406,64.030812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.833,14.43],[-68.314,15.132]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.104,31.201],[139.59,34.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.707706,40.727291],[13.933309,40.764412]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.137375,68.139],[14.593312,68.221625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.631,-33.663],[-20,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.242,64.379],[23.10975,64.289344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.717,40.169875],[12.59,40.52825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.181,59.565],[4.945469,59.560281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.826,-35.547],[164.126,-36.193]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.33,52.244],[3.19525,52.051812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.716555,36.840898],[26.599719,36.778969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,10],[130,9.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.5425,42.7585],[29.246875,41.291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.803187,55.4435],[18.903,55.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.946219,55.885438],[15.055,55.812],[15.158875,55.7545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.50275,51.828812],[2.584281,51.740625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.7545,33.6495],[-10.553,31.954],[-12.305,29.659],[-12.911,29.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.005125,50.132875],[-1.97725,50.255875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.85675,54.66875],[-8.757,54.812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.08775,59.9665],[5.031062,59.847594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.731,34.056],[-36.438,33.873]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.943531,50.01925],[-1.84143,50.167727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.6555,64.874125],[21.6025,65.1765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.13,58.767],[3.197,58.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.33,36.073],[-9.869,36.362]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.5495,42.757],[14.699469,42.973188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.063,35.603],[35.7,35.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.98375,-15.20575],[-170,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.498,27.39],[-77.243,27.604]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.762875,36.295375],[25.955,36.318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.2565,53.866125],[7.127125,53.823289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.273562,38.956484],[25.242875,38.81175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.289055,59.876461],[23.569781,59.857125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.492125,51.66425],[3.40425,51.55325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.080813,36.912281],[25.048098,37.050152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.231,36.563],[-4.26525,36.34475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.30725,42.94575],[10.1945,42.9955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-40],[-155.268,-35.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.457,61.1825],[20.778625,61.193875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.193,42.817],[5.36925,42.73625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.745,35.06],[-13.5605,34.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.607,-4.661],[-102.927,-2.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.292922,36.264656],[27.394,36.29525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.243,20.13],[124.32,21.287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.999,26.141],[-84.143,25.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.861375,59.5605],[25.08275,59.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.967,-6.375],[-81.151,-6.153]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.568,41.946],[153.507,46.143]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.446,43.79575],[-7.882875,43.808]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.17725,50.509],[-2.0695,50.406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.553187,39.416438],[2.666125,39.532875],[2.732,39.376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.18675,49.8325],[0.08175,49.885469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.10375,36.782],[14.185484,36.698141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.509438,43.597],[9.620625,43.477562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.22375,44.644],[-7.219,44.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.37575,43.98975],[-6.84,44.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.7745,70.6435],[29.843,70.7535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.592,37.111],[13.485219,37.115625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.3305,26.99],[-72.115,26.751]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.754,19.714],[-66.473875,19.311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.92,60.894],[-1.2495,60.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.672875,56.284438],[-5.6355,56.407781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.113609,51.407172],[-3.108875,51.252875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.177086,58.213051],[11.309773,58.28552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.001,37.491],[-130.002,35.613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.474,65.093],[-13.641,64.96575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.2055,59.76425],[20.058375,59.618047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.183,44.86],[161.601,41.943]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.886,-1.996],[126.9705,-2.287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.114062,43.681008],[15.178625,43.549125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.7205,61.579],[-6.56725,60.87025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.0065,-20.694],[59.851,-29.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.481,-33.785],[-16.631,-33.663]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.282,32.687],[121.778,32.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.289,38.551],[8.978375,38.415469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.756,-10.48],[145.646,-12.015],[145.761,-12.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.3945,55.3345],[-1.239625,54.994609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.179,39.142],[8.220656,39.039656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.28925,42.629625],[14.198,42.709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.5275,57.1665],[17.45,57.0095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.805,24.763],[-18.762,24.561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.59075,35.67975],[23.475133,35.751766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.021,28.942],[-83.432,28.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.250375,38.670625],[15.146242,38.676023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.003,14.016],[-61.043,14.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.19525,52.051812],[3.441813,52.015906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.153437,49.54475],[-5.2985,49.6765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.373,57.90075],[9.209812,57.838719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[56.27,26.402],[55.474,25.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.5975,37.608],[24.665,37.52825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.139,44.496],[13.99175,44.65725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.804,6.327],[-10.824,6.281],[-11.229907,5.372682]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.650875,36.742375],[13.5255,36.691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.064,38.045],[8.397625,37.981]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.568,50.227],[1.2685,50.308875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.035875,60.996938],[19.811,61.17125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.466,32.319],[-63.143,32.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6825,42.884],[6.804,42.877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.457625,35.79275],[-73.8285,35.994]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.25,41.9],[143.3,41.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.295,37.989],[0.645,37.878]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.53425,58.1305],[18.362625,57.921062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-50],[60,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155,25.277],[150,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.858,56.19025],[19.802,56.059],[19.687,55.859],[19.667375,55.756125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.910328,42.985254],[9.752455,43.003715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.507531,55.478125],[15.36025,55.290125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.12,47.78],[-8.976,48.337]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.742,57.23725],[8.943,57.286]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.501,60.78],[-4.73,60.914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.34,63.243],[19.264,63.161]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-50],[-86.45,-53.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.33,57.095],[4.6815,57.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.77275,56.177375],[10.855,56.087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.46625,39.45575],[-72.485,39.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.975797,53.878438],[6.84375,53.8065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.035,34.801],[21.574,35.383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.10275,37.405875],[-9.241,37.2355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.192,20.0075],[-50.01275,19.968875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.968,37.1435],[23.313875,36.956375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.13,64.176],[21.93975,64.01575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.244656,42.836906],[6.077,42.825125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.608,57.6625],[17.874625,57.731375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.703,-18.3575],[178.427,-18.306]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.859,33.331],[-15.606,33.592],[-15.082,33.719],[-14.78,34.351],[-14.08,34.4945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.025,-6.029],[-115,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.55075,66.33975],[-17.3725,66.05775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.722,41.8905],[16.74975,41.790813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.607,54.2255],[8.60725,54.06425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.902,35.641],[17.84575,35.60475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.408062,41.516797],[9.3035,41.599],[9.443031,41.6635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.728,39.144],[-71.795,38.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.001,15.601],[-111.954,16.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.220344,43.037781],[8.376188,43.007688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.42375,68.73575],[15.195,68.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.114688,64.15675],[-22.330125,64.11925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74,39.407],[-73.7785,39.40925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.308,7.359],[-134.072,5.983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.67725,42.481],[27.469,42.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.733,0],[65.02,-0.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.071,36.999],[-10.723,36.961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.373,61.046],[-64.5,61.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.0895,64.786],[23.4625,64.7145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[71.147,-6.068],[72.440438,-7.267563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.883227,36.766941],[26.716555,36.840898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.775813,58.775969],[17.390594,58.622781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.69075,59.824562],[24.673938,59.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.747,67.1525],[-162.836,66.926]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.389375,58.667938],[-2.471,58.872]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.227,38.8435],[20.126,38.951],[19.99275,39.06625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.274,65.464],[-23.6025,65.2295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.138437,39.238812],[8.179,39.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.7,-19.3],[166,-21],[167.652875,-23.02875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.035625,56.98875],[18.87675,56.87575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.821,38.76],[-71.259,38.249]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.39,43.204],[-62.184,44.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.825625,39.800625],[13.87375,39.907]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.2105,53.045],[4.3085,53.1015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.217,64.99575],[24.25425,65.1305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.636,55.946188],[17.802,55.954],[18.04275,56.005125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.093375,50.209563],[-2.194203,50.105375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.264,-45.741],[-55.133,-45.741]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.919,57.579],[23.793375,57.497812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.232875,42.6225],[16.994469,42.64625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.6655,35.197],[26.868125,35.259625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.376,48.431],[-5.507973,48.596453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.682,-24.21],[153.878,-24.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.995477,36.805496],[26.12975,36.701797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.118,51.493],[3.492125,51.66425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.383469,37.928031],[20.5735,37.804875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.002,61.284],[1.505,61.417],[1.928,61.288]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.614,45.157],[-5.6115,44.854]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.888,57.609801],[10.058234,57.74757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.571,58.431],[9.637625,58.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.717,32.66975],[-16.869812,32.617063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.191,7.242],[-165.435,10.034]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.657,33.847],[-129.252,35.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.0525,64.1395],[-23.5,64.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[74.823,4.468],[79.103,2.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.729563,37.785062],[11.359938,37.590219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.668,25.785],[120.228,25.712]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.58,-56.479],[-70,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.239,25.047],[-55,25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.692,59.99],[22.783125,59.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.496,-20.112],[58.0065,-20.694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.335,40.26],[17.164406,40.368625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.287,41.492],[10.222453,41.285062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.031625,44.250141],[8.942656,44.383891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.469,34.553],[20.229,34.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.619,46.817],[36.836,46.508],[36.807,46.198]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.087,42.536],[29.098,42.199]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.937,47.7505],[-4.086688,47.818812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-40],[74.343,-35.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.535,58.734],[-0.368,59.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.32375,69.22475],[16.197,69.134],[15.895,68.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[87.401,19.625],[88.553,20.312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-20],[-176.571,-23.234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.267156,36.273813],[26.333969,36.419]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85,-25.277],[80.903,-20.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.4,13],[100.682,7.318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.509,42.565],[10.412,42.593625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.25,40.6],[141.25,41.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.625,36.776],[-12.395,36.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.744,61.1695],[18.55925,61.1935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.06025,56.556875],[7.076625,56.4355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.822836,58.459117],[17.8465,58.1685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.6535,55.6385],[18.4745,55.591]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.424,54.605],[11.502969,54.491469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0365,40.67025],[8.015125,40.298375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.818875,55.517125],[14.715969,55.6495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.884,34.436],[-119.267,34.079],[-118.465,33.636]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.599,0],[77.754,1.286]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.57475,-7.0675],[124.262,-7.212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.4155,43.50525],[15.283234,43.576547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.473,7.576],[-160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.836,56.164],[3.997,56.211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9885,58.0805],[-1.883,58.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.5795,40.5335],[14.631,40.43525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.145797,41.031211],[13.3785,40.857062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.404,-5.46],[160,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.35275,36.97275],[24.36323,37.119352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.214,45.383],[-8.425,45.0695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.11875,39.6085],[23.957875,39.671375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.277,25.4875],[-84.431,25.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.627,63.169],[20.493625,63.190883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.17,28.271],[-67.998,27.486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.5125,65.51375],[-24.194,65.077],[-24.116,65.0035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.632688,58.402563],[5.406,58.573]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.002,-34.797],[80,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.828,18.269],[130,16.854]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.186125,39.03375],[3.437,38.983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.914398,39.395555],[25.02875,39.39625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.10375,40.953],[8.077875,41.142875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.352,59.9975],[22.5655,59.91625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.84375,53.8065],[6.7815,53.88925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.08525,56.5205],[8.0645,56.41325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.708391,41.070266],[9.690062,41.219469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.191,64.877],[24.186,64.774]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.67125,38.844],[13.5455,38.8035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40,-40],[35.111,-45.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.92575,43.059],[8.910094,43.212531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.89,37.416],[-14.974,37.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.498,27.39],[-77.0485,27.078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.107648,51.392562],[2.956828,51.375391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.6795,51.90175],[-7.519,51.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.074,38.167],[-9.984,38.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.085,-15.086],[-168.3335,-11.7495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-10],[-110,-4.462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.3325,54.337],[0.01875,54.0905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.665125,39.38025],[24.618437,39.248312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.126031,57.475],[19.24625,57.42375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.932,28.195],[-79.094,28.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.12,35.4165],[25.911125,35.455625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.291,-5.762],[111.9,-5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.475062,42.2835],[7.15425,42.4815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35,29.516],[34.95,29.459],[34.705,28.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.68725,60.00425],[26.9975,59.9865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.352688,36.262219],[25.378188,36.126438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.813,43.15775],[6.32,42.943]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.306,52.773],[3.335125,52.962187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.993,64.611],[10.885,64.6985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.664,40.787],[28.805,40.872]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.5235,68.0595],[13.929,67.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.593,-40.271],[-180,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.268,2.358],[-30,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.615713,57.655652],[21.616,57.656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.56,65.936],[-14.544,65.808]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.3185,36.11475],[22.089,36.221]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.864,5.523],[160,8.458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.79775,37.625],[-9.906,37.636]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.4135,41.831],[18.3195,41.7635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.593,56.37775],[7.781813,56.536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.488875,55.328594],[12.4465,55.1275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.847,10.023],[-50.02225,10.00675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.184,44.493],[-55,45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.6645,37.411],[-69.811,37.362]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.910328,42.985254],[10.052805,43.031813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.91425,66.23075],[-18.892,66.176]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.408,41.159594],[8.373375,41.273875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.825875,52.152125],[-5.78125,52.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.472,-55.092],[-63.426,-54.622]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.074,39.4815],[20.161453,39.414422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.9945,20.0065],[-39.896,20.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.208,-55.16],[-71.385,-55.361]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.74775,53.742875],[6.509594,53.730672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.6115,31.831],[34.2105,31.921625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.41675,36.40525],[-6.50325,36.49375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.54825,44.178188],[14.675031,44.151812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.623,36.61075],[-8.8985,36.70325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.9,24.6],[-81.822,24.446]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.329,-25.976],[0.001,-22.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.999,-38.629],[-149.08,-39.151]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9175,43.7535],[9.908875,43.650688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.65,70.566],[65.668,69.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.13,44.384],[-8.7905,44.57725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.499625,55.4135],[18.757711,55.171898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.280875,51.475687],[-5.192016,51.640203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.991375,38.028625],[25.899906,38.140844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.722859,41.281063],[16.984906,41.55782]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.175,51.593],[-164.001,53.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.927,-43.896],[-52.97275,-39.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.4,45],[36.269,44.669]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.3805,63.507],[-20.244,63.448]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,10],[-31.527,11.744]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.89,43.04925],[4.79375,42.942125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.396,6.398],[3.087,4.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.02,29.989],[-89.962,29.674],[-89.3515,29.281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.342,42.089],[3.808125,41.85975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.0745,-13.939],[67.598,-10.018]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.741,46.635],[-140.003,45.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.3,61.86],[-167.247,61.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.138,16.439],[-69.453,17.481]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.78,64.981],[34.803,64.985],[35.023,65.254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.61125,52.291],[2.518,52.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.1305,48.4495],[-6.26125,48.4115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.143,55.133],[13.164453,55.329266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.6945,60.083188],[24.624,60.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.728,40.255],[2.948,40.149]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.64625,58.70025],[22.225,58.5525],[21.9335,58.9355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.132859,35.702266],[24.203875,35.832875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.299,0],[-30,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.636,55.946188],[17.44175,55.905875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127,8],[130,9.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.334,40.431],[-71.793,40.45525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.921062,38.454375],[25.014125,38.51025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.018,46.591],[-3.167,46.426]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.754,41.327],[13.0215,41.1655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.37,38.242],[22.4925,38.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.6,40.1205],[12.359,40.67875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.07,50.217125],[-0.027125,50.029375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.665,56.8305],[5.6375,56.6925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.933,47.445],[158.071,47.013]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.758,53.103],[8.483,53.256]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.666,56.698],[-177.29375,54.63925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.796,-3.252],[-38.1,-3.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.939,56.924],[2.057,57.009]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.729812,53.586063],[0.94375,53.539875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.938,-18.284],[48.1,-26.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.618,65.832],[-19.643,65.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.954,16.075],[-110.166,12.479]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.433,54.173625],[6.676813,54.235062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18,21.001],[-17.947,21.149],[-16.689,24.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.866,39.541],[-30,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.507781,42.861344],[9.5329,42.734301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.749,64.329],[-10.96,64.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.465,36.443],[-2.596719,36.353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.83,38.63725],[15.861937,38.459312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.745,65.765],[-23.852,65.822]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.1,-18],[168.086,-18.176]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.76275,49.82525],[-5.704,49.566],[-5.62575,49.34825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.175891,59.425],[4.945469,59.560281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.047,56.37],[-6.3245,56.4755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.29,19.855],[-66.248,19.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.689344,41.69],[8.881,41.6785],[8.71175,41.5865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.656719,43.130891],[9.550547,43.312297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.94275,43.39875],[13.893,43.486],[13.882094,43.651031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.122,38.384],[9.285,38.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.483062,43.656437],[13.632375,43.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.762875,37.4125],[-1.469,36.894]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.289,30.232],[-87.322,29.248]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.779,40.2425],[2.0905,40.2595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.239,-30.07],[-20,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.466,57.914],[-6.647,57.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.001,47.579],[-48.028,48.148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.85675,54.66875],[-8.98525,54.511]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.389906,42.697969],[8.5605,42.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.002,52.186],[-22.407,52.508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.609,42.539],[-9.56,42.726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.012125,43.311875],[15.876,43.222]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.524,64.903],[-13.33,64.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.721453,36.648922],[14.373,36.6625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.574,-8.552],[125.4185,-8.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.02625,-9.99825],[105.0965,-9.3795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.395,1.277],[2.05475,4.873125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.272,40.213625],[22.92475,40.2505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.446,42.276],[3.326,41.989]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.160484,55.483516],[16.011,55.475437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.059,66.171],[12.818,66.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.3215,14.918],[-74.971,13.668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-30],[-85,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.426,8.665],[-33.147,10.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.1845,55.0125],[14.066375,55.035562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95,-15.17],[-100,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.782,32.9665],[35.116,33.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.112,42.426],[-10.089,42.129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.619,35.65125],[-13.642,35.416]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.68975,40.603],[2.57,40.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.652875,-23.02875],[166.314,-22.4065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,30],[-133.207,33.486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.308,51.268],[-150.618,52.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.4795,53.5575],[5.2995,53.54075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.01975,56.725062],[18.048891,56.557531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.729141,38.555117],[25.883766,38.665375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.225828,50.785375],[0.874273,50.62893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.52775,42.2125],[40.694,42.2035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.544,63.291],[-20.003,63.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.14625,41.74625],[11.806875,41.937125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.116328,40.562297],[14.083219,40.662633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.957,29.224],[122.83,29.953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.53,56.665],[17.649,56.724]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.323187,48.24875],[-6.175438,48.301625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.0435,-1.286],[47.806,0.7485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.316562,55.509375],[6.233,55.604]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.004,-9.87],[-166.418,-9.531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.192,59.395625],[22.273719,59.327687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.999,-32.943],[-160,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-98.103,10.326],[-97.672,10.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.126158,54.943963],[10.331304,54.805154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.99,38.729],[118.173,38.773],[120.48,38.101]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9745,63.378],[9.9525,63.4815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,7],[-81.4,6.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.79775,60.103125],[3.545,59.981]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.26275,55.171875],[8.238969,55.420187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.682,65.794],[-14.56,65.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[81,13],[81.759,12.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.89,-45.405],[-93.73,-44.177]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.751547,42.256609],[14.89625,42.18725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.93775,54.2815],[-4.182,54.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.2795,-7.9615],[-10,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.36773,36.4685],[24.236125,36.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.324,51.619],[7.435,51.546],[7.438,51.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.882125,60.26575],[28.186,60.427],[28.344,60.48425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.90225,50.6475],[163.1,54.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.127313,61.156312],[20.9535,61.099]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.593,42.057],[7.582,41.595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.621,-39.358],[-51.105,-39.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.673,-7.85],[116.048,-7.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.241,38.951],[-69.376,38.882]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.2355,51.338],[-9.378,51.314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.5,-21],[-175.645,-20.019],[-174.975,-18.275],[-174.125,-17.503],[-172.486,-16.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.2525,16.215],[40.703,16.063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.572,-14.058],[-170.619062,-14.248125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.778,13.508],[-77.81,11.456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.120941,37.270809],[24.267576,37.466994]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[151.265,-39.826],[149.703,-39.613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.165969,43.406406],[9.072453,43.194516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.329,15.214],[130,14.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.61325,56.10125],[3.733,55.987]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.334,58.665],[18.503,58.565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.015,33.246],[159.998,34.382]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.977055,53.391461],[-5.9835,53.220344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.032,20.056],[-114.699,21.318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.766,57.352937],[10.654891,57.282262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.269633,38.625922],[24.122578,38.783789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.643,25.167],[-86.982,25.237]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.182969,43.11575],[16.933,43.074],[16.78675,43.0515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.64525,51.857],[1.833117,51.853805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.782594,57.578156],[-7.495,57.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.324727,42.953508],[15.554156,42.821313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.977313,40.664906],[14.005437,40.542563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.681,14.207],[-80.5,14.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.835,24.234],[-96.99,26.0255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.188,26.458],[-73.359,24.734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.965125,61.15425],[18.082,61.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.822,40.414],[24.68725,40.42225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.372,39.20225],[23.456,39.356]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.8035,40.3525],[10.709,40.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.901,37.585],[-10.994,37.909]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.593125,40.491875],[24.4365,40.629688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.876,63.695],[10.815,63.675],[10.643,63.622]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.302,6.144],[1.708,4.774]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.749,39.546],[4.3385,38.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.847,-3.189],[-89.103,-0.099]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.36025,48.551969],[-5.33,48.439]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.855031,54.955906],[16.042125,55.0455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.964,42.2375],[36.393,42.207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-30],[-89.549,-29.574]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.54475,57.600625],[9.455406,57.531531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.29425,55.553],[17.18275,55.4065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.531,38.308],[-75.277,37.303]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.836,54.2565],[8.607,54.2255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.024,29.0105],[-15.679,28.904]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.773,39.334],[23.767422,39.177766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.022,35.7675],[28.348,35.7705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.950254,58.636547],[-2.774375,58.54125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.111,-45.404],[50,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.0115,54.309],[6.988,54.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.361,44.516],[-12.397,45.066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75.956,6.97],[73.814,4.858]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.920203,44.198094],[14.803422,44.150188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.298,47.783],[-6.0805,48.083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.914398,39.395555],[25.014375,39.588313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.881813,56.794063],[-2.22475,56.46925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.78,37.814],[1.138,37.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.689344,41.69],[8.5235,41.6615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.304,28.389],[-75.641,28.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.767,60.19],[28.747,60.048]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.615795,59.285332],[10.656437,59.089937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.627625,48.955375],[-6.17575,49.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.62475,40.476],[1.779,40.2425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.587,60.694],[19.40525,60.632625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.907,41.014],[-13.53,39.523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.218,41.7215],[8.221,41.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.078,42.789],[29.087,42.536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.478,-12.6],[-136.339,-13.808]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[61.653,21.501],[63.154,20.063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.5125,56.93825],[10.363563,56.961953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.181625,54.881],[18.253312,54.956063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.615,37.520812],[-0.847,37.525],[-1.008453,37.544078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.666,31.463],[-72.496,31.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.546,-29.571],[-16.239,-30.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.1845,40.39125],[-9.198,40.243]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.965,16.192],[156.825,16.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.889,31.422],[29.935,31.747]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.817625,38.910875],[14.915859,38.930516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.598,38.38475],[14.848898,38.534312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.758,58.679],[-151.58,56.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.6315,57.2275],[11.753,57.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.802,52.02325],[-5.782,51.898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.478,19.888],[-66.248,19.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-50],[-120,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-112.917,-30.055],[-120,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.076625,56.4355],[7.200188,56.443719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.823156,42.681648],[16.798,42.866]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.181641,39.024703],[9.22775,38.90675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.15025,57.45975],[7.3395,57.45825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.833,-34.53],[4.106,-34.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-118.915,33.47],[-118.465,33.636]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.25,-33],[151.5,-34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.243562,36.1335],[25.126,36.163],[24.992875,36.197375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.903,-20.958],[80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.613,71.009],[22.846,71.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-30],[95.547,-30.083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.903,-20.958],[82.742,-20.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.297246,41.344242],[2.414,41.304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.264188,63.044219],[20.38225,63.0945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.335,57.575],[7.457375,57.510875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.475133,35.751766],[23.551781,35.825375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.14,50.688],[172.355,50.484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.43,29.926],[130.349,30.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.38375,31.33875],[32.181,31.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.818531,55.748875],[14.715969,55.6495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.585977,55.589227],[14.706,55.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.3475,45.135],[-8.425,45.0695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.7985,56.2805],[-6.443,55.98]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.323,0.534],[172.73,1.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.112813,41.234719],[29.246875,41.291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.55925,61.1935],[18.7305,61.341]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.81,40.247],[141.3,35.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.943109,54.001172],[10.677,53.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.922,2.927],[100.469,2.496]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.4835,50.972437],[1.584432,50.986559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.104813,39.053531],[23.289313,39.073]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.551,58.386],[1.6655,58.396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.968,37.1435],[22.940625,37.333875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.234,64.748],[22.246,64.5555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.474,32.916],[16.198,33.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.968813,48.644281],[-6.136,48.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.269,35.79],[-73.727,35.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.15275,36.100203],[26.9415,36.116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.520125,43.51675],[-8.5485,43.6635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.48675,36.039563],[22.749125,36.0505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.6575,43.849969],[14.675906,43.631531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.416,37.499],[4.698,37.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.96625,40.99175],[10.861,41.096]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.2595,62.2645],[18.999,62.3385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.076,70.11],[23.133,70.045],[23.24,69.973]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.598063,41.213188],[16.502,41.276],[16.376562,41.400156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.5765,41.6345],[6.104,41.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.881906,56.361031],[6.832,56.229]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.002,-35.757],[160.002,-36.286]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.847875,64.741625],[23.7305,64.671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.103,25.538],[54.463,25.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.912,59.3065],[21.2675,59.591437]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-70.29,-53.61],[-70.7115,-53.442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-40.951,41.016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.91,15.629],[-99.9,16.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.784,57.023],[17.868,56.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.235,42.608],[3.27,42.483375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.162,33.47],[33.064,33.309]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.547625,39.066125],[9.443,38.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.292922,36.264656],[27.153734,36.263531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.991,58.368],[-158.411,58.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.771,48.829],[-6.779,48.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.678,40.29425],[4.739,40.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.513,8.8695],[-79.5,8.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.502,55.201],[18.346,55.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.77925,54.7095],[19.926,54.994]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.45975,52.27725],[-5.396313,52.1615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.073563,41.45425],[11.228125,41.423687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.916,53.729],[-4.067,53.6655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.656,55.829],[16.674672,56.071289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.97275,-39.8775],[-51.105,-39.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.915,-55.068],[-35.805,-54.174]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.384,-35.018],[-14.615,-35.018]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.297398,53.7685],[6.1845,53.931]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.133,-34.533],[113.627,-35.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.8295,40.818625],[2.2335,40.7045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.523844,36.615562],[-6.6835,36.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.578,45.885],[-4.448,45.991]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.1785,39.52075],[11.048,39.776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.464,32.577],[23.825,32.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.78925,42.880656],[-9.7665,43.04525],[-9.761,43.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.746,66.246],[-20.567,66.232]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.316031,42.835],[10.13875,42.80525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.082531,57.355969],[20.853125,57.20875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.534,49.9535],[-10.709,50.127]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.227,57.414],[5.277,57.208]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.0665,48.661],[-2.137031,48.747781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.738,30.83],[-72.81,30.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.646,41.43525],[17.561063,41.506625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-21.343],[-7.025,-23.154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.988875,36.801625],[23.888502,36.95017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.429016,58.589813],[9.571,58.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.822836,58.459117],[18.039,58.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.08425,58.217],[-1.946,58.301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.771062,57.953812],[8.64375,57.9235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.7,24.3],[-81.825,24.219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.073,11.438],[110.329,11.897]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.523844,36.615562],[-6.641687,36.75725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.148625,60.188094],[22.352,59.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.73975,64.621],[21.801,64.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.223406,64.253375],[-22.064344,64.264406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.865,45.3925],[-3.963,45.5505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,0],[-98.847,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.915,51.6375],[-9.891313,51.476594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.001,-24.964],[160,-20.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.372797,56.478781],[7.23125,56.554703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.932016,41.652781],[16.984906,41.55782]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.497,41.098],[1.681,41.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.6325,60.336875],[4.487125,60.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.672227,50.166836],[-1.56425,50.085125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.947,53.862],[4.959,53.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.076,53.5],[0.94375,53.539875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.1415,30.291],[-80.232,30.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.22675,51.25825],[-4.354328,51.25282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.191719,50.766719],[-0.1315,50.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-20],[-110,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.604,48.324875],[-4.740406,48.163031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.79775,37.625],[-10.054,37.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-148.132,11.961],[-143.582,10.026]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.057,41.25],[19.394,41.263]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.059,-28.455],[10.33,-26.537]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.926625,51.317281],[-6.121,51.413]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.45575,41.3615],[11.563,41.252],[11.657187,41.106875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.155,50.236],[-3.275,50.197],[-3.415,50.202875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.770184,56.628477],[6.765,56.462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.064344,64.264406],[-22.114688,64.15675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.563477,50.067563],[-2.426,50.108]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.131,64.809],[11.116,64.668],[11.343,64.56]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.211,48.93775],[-4.381625,49.071687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.547375,63.343688],[20.61925,63.4275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.324,51.619],[7.66,51.9],[7.67,52.244],[7.307,52.469],[6.627,52.368],[6.653,52.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.53,39.523],[-13.099,39.249]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-30],[-10,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.342,39.60025],[18.145,39.4845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.16425,36.405188],[13.0815,36.333],[13.002375,36.179625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.881875,50.019656],[-5.761602,50.050055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.491375,49.795438],[-5.64625,49.77825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.06025,56.556875],[6.905,56.534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.169,37.563],[3.15,37.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.22575,40.79075],[18.30175,40.94275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.3305,37.554],[7.4195,37.4735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.5185,37.229094],[13.3585,37.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.54,49.401],[-5.51575,49.1745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135,15.17],[130,9.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.052,34.348],[34.886,34.514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.181,-55.748],[-63.516,-55.546],[-63.472,-55.092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.2005,24.799],[-74.304,21.766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.74,1.456],[104.843,1.504]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.654125,54.696687],[15.519375,54.60625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.703875,39.29275],[25.739062,39.191109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.209,49.577],[-1.252,49.719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.96,36.271],[-35,35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.204,38.783],[6.536,38.757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.169,53.9455],[1.452,53.817]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.4535,43.4145],[-9.640875,43.356125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.382188,57.299813],[-1.22525,57.38825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,10],[-143.582,10.026]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.55,-19.851],[57.837,-20.084],[58.0065,-20.694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.9375,55.56225],[20.038,55.518]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.579,55.491],[5.324,55.4995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.03125,5.06775],[62.906,7.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.205,-23.397],[-1.537,-21.629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.7675,39.536],[19.0135,39.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.788,15.79],[-86.781,15.837],[-86.735,16.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.078,56.053],[6.011,56.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.181641,39.024703],[9.031281,38.956594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.51,-12.361],[7.408,-9.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.21925,57.7415],[6.437125,57.663875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.382,39.691],[1.205,39.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.3105,28.157],[-85.777,27.713]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.762875,36.295375],[25.95325,36.1585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.959688,37.590812],[10.850938,37.541313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.590281,42.749016],[16.609633,42.895539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.948,50.94],[147.904,54.006]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.750258,50.333555],[-0.492328,50.412828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.662875,37.394937],[25.771531,37.319719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.242,26],[-91.622,24.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.1765,37.673],[26.378828,37.683078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.402727,36.842187],[25.316312,36.979156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.02825,37.3595],[18.26475,37.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.307,54.744],[-165.362,54.4985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.598,60.556],[21.464687,60.453016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.274,57.948],[0.443,57.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.333215,53.965777],[-3.171094,53.926219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.137375,68.139],[13.929,67.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.562125,57.032],[18.453,56.8535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.700063,59.883688],[5.52375,59.881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.10775,37.20425],[11.215,36.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.18175,61.662],[-1.706,63.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.32207,58.511648],[9.206,58.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.793375,57.497812],[23.5605,57.566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.578625,42.02875],[11.583004,42.024083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.394375,54.535219],[15.153625,54.709937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.030375,48.788125],[-2.035,48.722],[-2.0665,48.661]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.706062,42.360062],[15.497625,42.175156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.3595,37.4415],[15.314602,37.31057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.832,56.229],[6.8425,56.068]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.642375,43.70525],[-5.798937,43.722375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.74,43.882],[29.439,42.614]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.845844,57.967062],[6.984023,57.868031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.26525,-34.819],[-56.708,-35.657],[-56.162,-37.124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,50.116],[-30.1375,50.1055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.252,53.177],[3.341,53.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.9535,61.099],[20.765,61.0095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.778,47.647],[-5.794,47.133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-30],[-125,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.6815,57.137],[4.668,56.964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.152469,57.2],[20.257188,57.102688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.70425,35.60425],[-7.73725,35.47775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.4705,61.47825],[4.151,61.3485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.43575,40.10225],[0.326,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.454,-54.03],[-79.996,-54.411]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.041125,60.252875],[19.1205,60.433625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.979,-24.218],[165.163,-23.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.068,-9.371],[169.42,-9.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.0055,-34.501],[28.5,-33.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.0115,54.309],[6.927,54.366]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.407,43.12975],[7.595469,42.98625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.967219,38.05525],[24.846875,38.019562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.013375,13.174125],[42.578,13.736]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.67,-10.085],[142.756,-10.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.795,17.912],[66.53,16.679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.994,34.653],[29.496,34.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.555,59.175],[19.4485,59.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.194125,57.71575],[9.012906,57.797512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.576,29.485],[-74.133,28.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.085346,6.615288],[82.132656,6.798531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.547,28.246],[-77.999,29.199]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.347,37.333],[12.227859,37.204313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.098,39.679],[-30.866,39.541]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.552,56.26],[1.245,56.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.587,34.269],[-70.581,34.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.89075,39.952],[17.164406,40.368625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.208,17.349],[-166.898,17.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.84,27.17],[-76.514,26.476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9015,38.639],[9.61225,38.884687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.0775,19.386],[-67.331,19.129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.001,-41.928],[52.143,-42.287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.607,45.27],[-5.6115,44.854]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.333,10.32],[-24.527,13.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.684,51.343],[-3.562,51.356]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.562094,55.989156],[7.609,55.80425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.609633,42.895539],[16.798,42.866]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.368547,58.168937],[10.1325,58.114875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.278719,36.850313],[25.174547,36.856313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.14,-8.182],[-14.2795,-7.9615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.315,-54.112],[-35.805,-54.174]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.506,35.609],[23.475133,35.751766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.929,55.508],[-6.038125,55.41625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.7925,54.9255],[19.926,54.994]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.992875,36.197375],[25.143625,36.10675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.741,38.922],[7.89425,38.8455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.203,14.202],[-61.537,14.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.361,60.937],[19.437656,61.069562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.396,71.225],[20.475,71.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.1775,36.45275],[14.235687,36.193938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.389,38.691],[7.525,38.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.497633,43.934609],[8.7575,43.988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,10],[-180,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,10],[-180,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.494438,53.131156],[4.3605,53.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.46975,58.725672],[21.406,58.5545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.178937,39.403063],[0.2715,39.203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.9585,39.66825],[20.074,39.4815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.727625,42.65275],[17.781031,42.435031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.112875,43.403375],[8.220344,43.037781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.736,14.905],[65.081,14.588]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.627,56.8515],[10.5125,56.93825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.746152,55.300796],[14.706,55.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.035625,56.98875],[18.99475,56.60875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.332625,39.917344],[23.601,39.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.92575,43.059],[8.80375,42.980375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.0045,-27.009],[13.64,-27.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.70725,57.53725],[16.714,57.357]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.470625,57.233125],[7.624656,57.279063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.088,36.201],[-15.508,35.498]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.627,-29.408],[-20,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.79,21.603],[-85.391,21.312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.810187,59.548],[23.672,59.498438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.8335,60.3485],[21.948094,60.237562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.711,42.261625],[5.83,42.117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.175875,42.13775],[11.074531,42.170063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.869266,58.091203],[9.992,58.00925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.90425,52.560187],[2.005828,52.502695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.6255,58.0665],[4.66975,57.805625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.45,-53.7],[-85.799,-54.378]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.60725,54.06425],[8.497859,54.259535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.81725,39.933875],[9.79275,39.80475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.5815,36.75025],[23.032266,36.463187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.8,13.5],[150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.797,71.151625],[20.9235,71.2085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.51325,44.764],[36.846,44.211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.763562,43.988937],[14.934,44.019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.709,59.012],[4.71025,58.8615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.9,8.4],[107.2865,9.991]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.2265,50.350313],[0.428766,50.403988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.168875,50.49775],[-0.259625,50.568875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.765,56.462],[6.881906,56.361031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[77.754,1.286],[78.816,2.468]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.869,-50.861],[-60,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.148,34.337],[19.591,34.649]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.118859,43.526453],[-3.06275,43.382937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.3385,37.811],[10.581,37.716]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.295,41.805],[-64.633,41.223]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,60],[-35.249,55.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.4035,29.139],[-93.862,28.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.825,61.091],[-5.106,61.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.585,56.015],[-1.49475,56.37125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-30],[-110,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.417,45.128],[-157.721,42.552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.001,-5.056],[-90,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.099,73.577],[-78.801,74.179],[-89.134,74.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.145812,60.519688],[21.098156,60.383297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.9165,38.499],[-9.014062,38.378375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.695,58.01],[-2.466375,58.039375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.6785,70.542],[33.589,70.412]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.8095,53.85425],[13.929,53.926],[13.761812,54.184625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.576187,50.032406],[-4.663156,49.929469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-5.126],[-140,-1.577]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.317,29.95],[-87.346,29.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.382094,42.727938],[16.22367,42.828633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.746625,53.780875],[0.650125,53.747875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.228418,43.868785],[14.370219,43.833156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.509242,57.924437],[11.645,57.7505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.5465,54.518],[6.433,54.173625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.822,64.3935],[23.715,64.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-10],[76.168,-10.028]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.384,32.965],[25.751,32.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.134,-17.989],[121.786,-16.993]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.12875,43.70425],[9.1145,43.561125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.282656,61.290219],[21.22232,61.4235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.97,28.7845],[-14.155,28.718]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.800363,43.646438],[8.647938,43.5355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.312703,58.878641],[10.34432,58.758523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.37675,45.8435],[-4.542,45.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[101.752,-27.492],[105.524,-25.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.412,42.533],[14.514,42.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.879,56.843],[21.082531,57.355969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.236125,36.335],[24.082578,36.220953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.802,58.7745],[4.9735,58.866]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.245094,44.238289],[9.74025,44.051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.01325,54.81875],[14.9195,54.919875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.6745,43.91925],[13.719,43.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.654887,54.568508],[13.848451,54.48759]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.1745,32.696],[-17,33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.142,44.0915],[30.432,44.096]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.913875,58.669],[21.276,58.888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.851,65.03],[-31.819,66.908],[-24.481,68.626]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.492,44.466],[33,43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.075875,58.753875],[4.9735,58.866]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.619,46.817],[36.763,46.686]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-50],[-10,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.701,50.461875],[0.821124,50.461551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.426,49.442],[-5.153437,49.54475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.789,36.836],[-70.206,36.579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.678,-25.775],[-41.3,-23.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.394875,38.940438],[26.014492,39.010125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.516,32.769],[-72.597,32.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.056938,56.292625],[17.242,56.231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-30],[-1.411,-31.534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.5835,55.13],[11.305045,55.090986]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.059094,57.563531],[8.275625,57.603875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.8885,57.1615],[7.987688,57.083188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.206,39.346],[19.1535,39.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.3745,37.14625],[-70.929,36.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.397,37.35],[5.969,37.264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.402727,36.842187],[25.278719,36.850313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.233766,57.507234],[11.278492,57.636105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.193465,54.806707],[10.331304,54.805154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.2,58.7],[-3.807,59.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.045,2.995],[-120,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.294,-20.16],[-76.279,-20.128]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.544531,38.937],[26.436,38.731]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.86275,55.3365],[-6.9265,55.481]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.269281,55.231125],[15.153191,55.347656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.018,22.14],[-51.302,22.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.9705,57.9135],[21.154875,57.74375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.285,40.688],[3.47,40.544]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.556373,50.14482],[-3.74175,50.073625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.6875,58.7155],[-5.2,58.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.568126,-7.144806],[72.593,-7.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.979,8.505],[164.764,6.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.2435,-27.0115],[154.257,-27.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.483,58.275],[1.212,58.238]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17,32],[16.474,32.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.326,53.074],[5.258,53.198875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.6355,58.98025],[20.79,59.192]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.806875,41.937125],[11.911102,41.74726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.79325,32.43325],[-60.001,32.278]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.295219,57.249313],[17.5275,57.1665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.046266,36.97412],[26.964437,36.909937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.108,6.04575],[-53.891,5.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.147,-6.033],[130.397,-5.956],[131.488,-6.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.708,62.003],[-6.845,62.119]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.6575,54.4065],[19.922,54.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.1375,50.1055],[-30.831,50.866]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.56725,60.87025],[-6.303,60.933]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.435,66.311],[-23.537,66.235375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.707,35.584],[-74.457625,35.79275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77,-13.7],[-77.627,-12.174]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.887,64.057],[-15,64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.0265,58.6295],[-6.106,58.226],[-6.21775,58.104625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.985313,49.198062],[-3.25225,49.061125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.990063,38.303562],[25.237,38.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.623,29.644],[-159.904,29.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.85175,42.294],[9.937078,42.383441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.685,42.967],[6.79,42.96775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.69575,61.374875],[20.835,61.42],[20.96575,61.44125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.835,62.93875],[6.34,62.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.17,-56.0015],[-66.129,-56.014]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.335,24.945],[-125,25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.78075,36.93875],[26.87125,37.004375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.469214,55.665447],[10.47,55.6645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.548,-8.655],[124.981,-8.592],[125.4185,-8.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.548,-8.655],[125.4185,-8.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.682375,57.704125],[6.833,57.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.001,-52.4],[-63.191,-49.204],[-60.42225,-46.9955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.95,59.279125],[22.109,59.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.38,58.195],[3.6375,58.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.422562,53.793594],[7.383047,53.934812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.738,14.512],[-69.297,13.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.948,5.812],[-53.891,5.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.899,3.437],[-180,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.439219,42.239266],[16.561,42.279]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.2495,60.644],[-1.287375,60.46025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.250625,39.284125],[8.216,39.421]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.245125,60.090375],[19.375625,60.084125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.963,55.778125],[19.279375,55.78375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.362625,57.921062],[18.620699,58.013418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.335,40.26],[17.464,40.156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.18977,37.595664],[24.281781,37.682961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.299312,43.419438],[9.34225,43.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.907,57.73575],[16.900937,57.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.036,22.082],[-33.854,24.086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.672,58.093],[8.771062,57.953812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.479,27.618],[-138.819,28.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.688,28.494],[-79.3215,27.4185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-118.145031,33.559938],[-120,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.770766,35.906578],[24.584375,36.044]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.627875,54.857813],[19.7925,54.9255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.2,63.6],[-54.2,69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.78225,55.00575],[15.055813,54.9415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.915,27.9665],[-58.729,28.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.434961,41.205898],[9.527938,41.293125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.53475,61.186359],[17.51,60.993]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.944375,36.861875],[12.045,36.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.542,30.01],[-60.224,29.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.5275,42.934],[33.848,43.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.664,57.616],[-6.39,57.581],[-6.548,57.70425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-6.982],[-152.613,-7.439]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.6,1.5],[47.806,0.7485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.758,39.5],[9.6805,39.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.645297,53.946391],[7.517516,54.009156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.437656,61.069562],[19.558625,60.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.997,-48.817],[-65.4,-47.75],[-64.701,-45.722]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.088,42.211],[41.223,42.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.636406,39.944312],[12.717,40.169875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.15,37.464],[3.296,37.483]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.708187,35.97225],[14.748,35.8695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.174,36.821],[36.064,36.751]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.356812,60.36925],[21.145812,60.519688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.415781,54.933609],[-5.2945,54.8725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.6695,30.48],[-69.3575,30.257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.069344,39.92525],[0.326,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.794375,64.834375],[22.834,64.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.473,59.644],[26.307,59.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.98425,12.99075],[-68.488,13.682]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.667,30.809],[-77.888,30.351]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.155,14.452],[144.727,13.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6905,42.116],[5.973,41.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.078563,42.92925],[15.1795,42.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.089,42.129],[-10.033,42.2205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.066,24.077],[-82.478,23.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.02625,-9.99825],[96.7525,-11.9985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,0],[155.0055,5.052]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.382375,45.6065],[-1.556,45.528]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.636,49.992],[-7.984,50.0715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.326438,39.083188],[9.443,38.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.592,59.19],[3.077,59.223]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.22275,48.4845],[-7.371,48.489]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.486,55.741],[6.434375,55.64575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.4,41.2],[138.4,38.75],[131.7,35.3],[130.233,34.383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.51375,44.495125],[12.69525,44.439875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.6,24.3],[66.961,24.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,20],[-140,20.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.743063,56.151656],[20.859422,56.530578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.2425,34.1605],[28.159,34.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.392,58.488],[-5.647,58.206]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.148999,18.679757],[-76.2815,18.7005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.654,28.182],[-78.755,28.024]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.414,49.965],[-3.022,49.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.353125,56.250375],[11.680563,56.1585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.938438,47.132688],[-2.865,46.9165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.3895,49.796],[-4.28825,49.666]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.009704,58.896689],[18.007269,58.895432]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.96575,61.68225],[4.890875,61.60175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.431,25.16],[-82.7,24.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.13,-13.244],[174.8445,-14.548]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.5905,56.392625],[4.719,56.387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,10],[-30,5.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.099,39.249],[-13.2045,39.0915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.1865,46.7325],[-58.244,47.229]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.5,45.136],[36.52275,44.891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.85575,65.947],[-23.893,66.0435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.77,11.655],[107.321,7.609],[106.469,5.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.4965,53.913],[0.542,53.823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0695,55.3905],[8.016813,55.50325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[101.752,-27.492],[100.001,-28.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.42,9.112],[140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.548,57.70425],[-6.647,57.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.416125,42.770187],[15.324727,42.953508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.182969,43.11575],[17.027,42.99525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.6,12],[-89.107,10.578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.336008,38.551061],[25.315375,38.36275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.108432,19.972234],[-64.3405,18.893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.835453,51.697],[-5.993,51.883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.443031,41.6635],[9.595,41.747],[9.747133,41.83657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.59025,49.12975],[-12.605,49.32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.38325,41.431125],[17.391,41.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.206,26.972],[-170.001,25.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.961781,38.918188],[25.883766,38.665375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.72,-23.828],[-41.251,-26.294]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.682125,-17.353625],[-147.961,-20.795],[-144.581,-24.856]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.698,-13.26],[153.097,-13.446]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.592,62.96],[-161.722,60.763],[-162.432,60.135],[-162.305,59.999],[-162.619,59.646],[-163.612,59.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.01,7.283],[77,8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.502,48.267],[-125.499,47.687],[-125.06075,46.19725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.573,50.507],[-5.726,50.343]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.945,57.274],[20.152469,57.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.4265,42.35075],[8.386,42.516],[8.389906,42.697969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.984,48.282],[-15.361,48.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.157,58.306],[-2.254,58.4715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[87.729,-42.544],[85.111,-45.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-30],[-126.148,-26.131]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.527,35.048],[27.8425,34.943]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.287,41.492],[10.1985,41.6105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.188875,40.913562],[11.898563,40.980563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-119.446,33.242],[-118.915,33.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.151,61.3485],[4.153,61.039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.136,38.286],[-10.026,38.384]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.599,40.4425],[3.99925,40.55275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.524,31.698],[-130.001,31.339]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.148,-26.131],[-125.685,-25.924]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.046344,55.201281],[7.94991,55.082172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30,-40],[35.111,-45.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.289,30.232],[-86.345,30.28],[-85.774,29.838]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.001,33.36],[-32.553,32.7965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.49075,42.71425],[6.356344,42.7935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.869812,32.617063],[-16.685,32.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.835125,42.287],[15.706062,42.360062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.646875,58.118125],[10.709203,58.213766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.945,53.323],[-2.308,53.476],[-2.297,53.471]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.09625,37.6275],[-0.5355,37.587625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.096,28.45875],[124.891,29.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.7655,29.5235],[-93.321,29.626]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.138437,39.238812],[8.0275,39.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.88575,39.7225],[25.763141,39.488523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.044125,55.693125],[15.158875,55.7545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.126,-46.517],[-134.888,-45.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.05,8.4],[119.968,7.312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.6975,57.72375],[20.90675,57.777]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.312594,41.849781],[17.225375,41.650625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.808,40.437],[11.795,40.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.960563,58.475219],[20.75225,58.339875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.676,-32.527],[165.74,-34.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.515,50],[-50,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.4275,40.353],[2.423,40.50975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.07125,59.727875],[23.04875,59.5285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.764375,55.57025],[16.988188,55.52175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.223,4.359],[-27.159,2.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.696469,58.992563],[10.656437,59.089937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.29875,54.643],[11.424,54.605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.877,0.889],[-30,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.8145,57.23875],[17.694992,57.363352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.752,55.517],[4.339625,55.3235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.353,-52.757],[-50,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.964,-52.8455],[-79.998,-52.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.023375,56.841187],[8.157656,56.805281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.771266,38.382219],[21.213969,38.212187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.007,33.372],[122.9,31.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.765,61.0095],[20.3275,60.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.453,56.8535],[18.326141,56.815695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.768,50.744],[0.603437,50.662625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.341563,37.663094],[12.195594,37.575281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.42275,43.077],[6.088781,42.997656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.938492,55.439906],[7.950375,55.312438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.984,-3.172],[-33.8,-5.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.68575,42.14675],[16.561,42.279]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.888,70.922],[29.9765,71.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.174547,36.856313],[25.16502,36.701812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.361391,36.752797],[24.445,36.723],[24.436,36.708],[24.361391,36.752797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.639344,36.376688],[24.535312,36.193156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.929,62.879],[7.044,62.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.122,26.213],[-74.308,26.359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.212,-34.909],[-56.213,-35.117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.197,49.37],[-3.503,49.4345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.039,55.181],[139.7,56.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,20],[-25.484,24.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.213,36.8015],[-10.6655,36.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.8,-12.2],[128.4,-14.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.839,18.403],[-73,17.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.420375,59.953031],[24.196094,59.917375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.048969,58.610875],[5.168719,58.582125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.252,20.664],[-107.1945,19.33525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.871,-62.929],[-63.266,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.9055,47.983],[-6.855,47.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.626,55.839],[14.575281,55.729094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.305045,55.090986],[11.17725,55.0245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.292,25.842],[121.52,27.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.2475,56.7045],[-6.146,56.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.718,-20.503],[159.734,-20.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.051,47.314],[-6.9525,47.60375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.395,35.703],[-9.4725,35.3005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.718,10.759],[106.733,10.766],[106.761,10.447],[107.2865,9.991]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.855,38.965],[5.527,38.939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.55025,58.34625],[-1.5035,58.501],[-1.47375,58.609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.3,-11],[116.725,-9.459]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.346562,67.28275],[13.966,67.103]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.155,60.905],[21.151,60.705688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-17.821],[179.733,-18.192]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.762875,37.4125],[-0.4705,37.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.515,35.454],[-67.057,35.103]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.835,40.4185],[0.6315,40.3185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.17,6.638],[70,6.324]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.422562,53.793594],[7.50475,53.89825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.93325,55.90875],[10.7275,55.938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90.001,-32.086],[90,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.893,33.144],[-76.97,32.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.749,51.278],[-10.311,51.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,15.17],[-145.851,14.306]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.009,43.553],[133.7,42.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.63275,38.44775],[12.736,38.6895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.782,3.072],[-43.28,5.941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.10975,40.393375],[0.963375,40.08925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.353,4.958],[2.175,4.907]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.675,42.504188],[15.04525,42.33075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.065,8.956],[-140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.628766,44.141828],[12.824625,44.215563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.426,50.108],[-2.342,50.1905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.193,39.87],[5.775,39.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.965,44.356],[-9.368,43.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.223219,49.133437],[-5.332906,48.881406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.70875,65.088],[-23.5665,64.988875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.7715,36.4095],[-7.585,36.319],[-7.378031,36.212187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.103625,58.0825],[19.348,58.1305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.827719,57.417594],[17.8145,57.23875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.417,40.653],[-47.493,42.808]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.1,1.1],[172.789,0.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.075,34.488],[27.723,34.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.682125,-17.353625],[-158.248,-21.795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.691,42.4565],[10.624219,42.749781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.564,39.173969],[25.706023,39.078133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.543,70.457],[19.481,70.221],[19.688,69.988],[19.279,69.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.439,42.614],[29.303,41.747]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.94375,12.77425],[-59.1285,12.6205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.418625,39.611625],[25.317922,39.711375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.6,-46],[170,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.957,51.21],[-59.884,50.047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.451,7.458],[75.956,6.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.744125,54.05025],[4.911219,54.004937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.793625,62.00675],[4.928,62.229]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.443,38.97],[9.61225,38.884687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.109,60.399625],[22.0625,60.309375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.260344,57.327438],[11.397281,57.249102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.661,29.006],[-52.797,29.393],[-50,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.4465,36.349],[22.336675,36.397749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.060965,53.768402],[7.891109,53.926875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.743,49.727],[-17.925,47.798]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.4275,56.721],[7.541125,56.63725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.044937,43.551812],[14.046023,43.678289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.154,-25.422],[160.0165,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104,-7.001],[105.0965,-9.3795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.455625,54.064375],[8.401,54.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.249,31.525],[-71.305,31.4365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.28275,47.745],[-5.2725,47.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.193,18.05],[163.312,14.584],[163.393,14.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.0505,38.5065],[11.376,38.486],[11.5305,38.4565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.423,51.262],[-6.3785,51.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.883,54.556],[15.62875,54.51575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.943,35.209],[32.097,35.017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.699875,38.2665],[24.648805,38.133055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.707937,57.976375],[11.509242,57.924437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.279,69.787],[18.9965,69.66825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.645,-52.756],[-75,-53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.5445,55.14425],[14.408758,55.256641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.779,43.39],[37.827,43.326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.839,53.048],[2.846,52.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.763141,39.488523],[25.703875,39.29275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.791,-10.5],[159.48,-10.264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.626,60.205],[5.54575,60.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.009,20.803],[-68.407,20.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.031375,61.317125],[4.962875,61.23025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.481,36.7355],[14.2815,36.78625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.001,24],[61.555,23.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.998,0],[144.73,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.0065,-20.694],[63.938,-14.091]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.490508,43.093109],[5.409156,42.964031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.4475,49.17025],[-2.588125,49.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.461,18.414],[108.607,20.303]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.326,40],[0.625,40.051125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.42625,55.798875],[6.434375,55.64575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.701,34.893],[-72.718,34.692]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.381,27.999],[-91.558,27.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.616,54.477],[1.667,54.1465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.486836,53.93818],[-5.2855,53.977],[-4.875063,54.010312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.373,55.1015],[5.586,55.326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.247,55.432],[-47.662,52.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.01575,55.424],[18.8465,55.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15,-15.17],[-16.822,-16.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.039188,40.063938],[24.972625,39.941094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70,-60],[-80,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.5025,47.67775],[-6.9055,47.983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.619,-33.274],[14.333,-30.961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.202,21.697],[-68.899,19.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.156,65.754],[24.29,65.648],[24.403438,65.552219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.559,48.187],[-10.535,47.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.001,26.106],[-147.428,27.571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.219,44.315],[-7.18,44.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.731883,38.950109],[25.697797,38.693305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.564188,36.107438],[-7.2785,36.326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.3585,37.255],[13.0505,37.27225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.440866,11.49069],[-61.338857,11.377047],[-61.268875,11.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.82575,36.01725],[24.918109,36.127172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.93,42.68],[27.962,42.954]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.88625,40.770875],[-8.9985,40.68925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.51875,36.50425],[-0.511,36.379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6945,59.2625],[5.543188,59.177234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.927,-2.967],[-100.761,-0.772]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.041,1.661],[102.893,1.498]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.40575,48.75875],[-4.279,48.777],[-4.223,48.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.581,38.92],[24.69525,39.105125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.211,57.723],[-135.837,56.741]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.056,36.4805],[-8.758,36.406],[-8.5595,36.356]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.143,27.8135],[-72.3305,26.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.761,43.186],[-9.5,43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.176,30.073],[-74.599,29.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,0],[85,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.102,33.151],[-50,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.272,34.852],[35.357,34.734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.487219,57.727984],[-2.633,57.923]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.563,56.968],[2.789,56.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.214187,57.974],[9.209812,57.838719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.016,45.318],[-40.002,46.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.083047,39.066297],[8.179,39.142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.7485,-2.4555],[126.552,-2.604]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.211,38.8935],[-72.192,38.709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.05525,65.543],[-20.569625,65.921875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.002375,36.179625],[13.40325,36.26075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.71525,49.869875],[-6.424,50.5835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.655414,56.058281],[10.511547,56.048703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.859,27.734],[-96.474,27.562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.698188,54.519414],[-3.561875,54.698719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.181469,58.107875],[21.296437,57.999188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.510375,41.390375],[2.297246,41.344242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.874875,60.618875],[19.941,60.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-172.878,47.609],[-177.754,47.893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.675031,44.151812],[14.571469,44.039531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.454773,45.46168],[13.219891,45.249109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.54075,59.33725],[4.265,59.326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.125063,56.87325],[-7.067,56.654]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.567,32.189],[-64.2005,32.01275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.353188,57.745],[8.225,57.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.99475,56.60875],[19.186,56.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.156445,54.451172],[12.023195,54.421016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.648383,54.80768],[-0.461063,54.628125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-7.934],[-30,-5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.817,-30.889],[-10,-31.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.985,37.657],[-23.8715,36.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.525625,41.204813],[17.627,41.1275],[17.768,41.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.572688,57.138312],[16.6615,57.019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.778,58.673],[-1.589,58.6165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.117,-36.416],[-164.089,-36.227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.202,7.664],[-78.524,8.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.83,-24.25],[163.979,-24.218]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.50625,49.928562],[-5.652,49.887]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.344,58.00775],[17.4595,58.1035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.298547,39.434359],[14.33725,39.5515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.083617,58.280844],[5.979,58.1875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.126125,42.04025],[10.241,41.973]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.72975,53.804],[-5.8625,53.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.803,65.126],[25.3175,65.0265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.491,38.968],[-72.868,39.294]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.056,8.69],[63.99,8.569]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.684,56.024],[11.385,56.071]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.995875,37.481313],[11.045938,37.366875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,40],[-47.27,37.481]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.473875,19.311],[-66.661,19.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.865,46.9165],[-2.829,46.8045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.746,45.701],[140.176875,45.08725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.141,37.91325],[25.046,37.762]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.522,43.754],[-133.7615,44.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.076,37.617],[1.138,37.632]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[106.069,77.15],[106.371,77.383],[106.482,77.8545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,24.634],[119.753,22.456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.779,48.546],[-6.7675,48.253]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.7225,66.43],[-15.2995,66.482]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.194203,50.105375],[-2.2215,49.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.3765,57.602187],[17.226156,57.496313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.3435,-23.608],[160.558,-20.592]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.727,36.087],[15.926,36.251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.941,60.806],[20.15675,60.833875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.296,0.714],[-38.152,0.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.019813,55.372281],[-5.116875,55.138109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.528094,45.267156],[13.411812,45.124281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.795063,43.735625],[13.835406,43.943969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95,-35.386],[100,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.4615,15.6275],[-58.94375,12.77425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.675125,44.706625],[12.857516,44.946891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.809563,55.387188],[13.822063,55.28275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.797,24.513],[-81.825,24.219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.771,71.912],[-164.713,70.737],[-165.746,70.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,8.075],[163.075,4.407]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.12575,54.61325],[16.066813,54.710938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.666,36.0145],[25.638969,36.126844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.389906,42.697969],[8.458,42.82525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.295,40.616],[11.10025,40.5655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.9025,38.5245],[21.082687,38.491062],[20.965719,38.400688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.306,-17.444],[-96.269,-20.052]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.958,50.15],[-11.10825,49.92825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.492,59.7],[22.279688,59.704375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.661375,58.28575],[19.7595,58.514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.504,55.251],[9.699375,55.280125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.405719,35.342953],[26.611,35.305],[26.767484,35.322164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,30],[165,35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.7685,39.876],[13.186,39.679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.741,31.439],[34.2105,31.921625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.5,39.677],[25.68875,39.76825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.466,17.619],[-86.056187,21.765438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.4275,56.9035],[2.563,56.968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.675179,43.535677],[15.555875,43.504]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.268,45.621],[-1.382375,45.6065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.1485,67.357],[13.966,67.103]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,3.289],[60.529,3.997]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.915,25.197],[-55.239,25.047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.259,52.467],[2.189,52.548]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.55525,48.37175],[-5.484,48.2365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.0095,63.7755],[-23.5,64.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.389375,58.667938],[-2.276,58.682]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.0105,61.85675],[19.35,61.838]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.66,-22.217],[112.625,-21.598]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155,-35.386],[-154.519,-34.913]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.308,42.0975],[-9.22575,41.999875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.0055,-9.99425],[49.622445,-10.108843]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.589688,50.881062],[1.407969,50.850938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.069187,41.938125],[10.007094,42.077813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25,-5.057],[-28.651,-1.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.02,63.739],[-20.944,63.571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.919254,37.184895],[25.049043,37.331059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.133,28.992],[-73.868,28.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.298563,39.814875],[19.300375,39.66625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.28632,39.449203],[-0.176,39.517],[-0.0715,39.59325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.86,-51.434],[-75.196,-52.636]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.1875,54.676875],[13.320094,54.841844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.64225,42.827],[8.674312,42.70125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,50],[-28.318,48.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.668,69.912],[66.424,69.284],[68.268,68.722]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.432,49.604],[-2.921625,49.43825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.1615,50.3045],[-6.028,50.099875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.893,56.793],[8.93225,56.97925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,30.903],[-28.852,31.248]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.082531,57.355969],[20.965,57.343]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[87.384,-32.844],[90,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.8625,53.8025],[-6.020625,53.732812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.295,15],[-21.749,14.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.259,37.172],[-122.9,37.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.08025,58.53325],[17.091,58.314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.7765,47.1735],[-4.8205,47.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.937,-9.195],[176.659,-9.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.592,45.619],[-5.704,45.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.35225,53.831],[2.526,53.859],[3.470094,53.916625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.085391,49.915937],[-0.027125,50.029375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.941992,55.214016],[10.858875,55.359875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.715,-14.445],[-144.147,-16.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.46625,39.45575],[-71.661,39.652]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.39125,62.12425],[5.494,62.203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.751042,37.436962],[23.869908,37.367563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.267492,55.642883],[15.144344,55.565469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.514625,41.004563],[2.7165,40.9285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.029,30.903],[19.293,31.228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.6275,47.934],[-4.798641,48.058188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.4885,35.7575],[24.402188,35.598812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.496,42.033],[16.388719,42.002531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.311656,41.372172],[9.408062,41.516797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.336312,37.837047],[24.380484,37.715898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.891,-45.405],[-99.98125,-39.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.86925,38.55225],[9.009,38.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.050719,44.805062],[13.850375,44.7345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,39.592],[-140,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.30625,37.841],[15.2565,37.712625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.38,44.6405],[-1.623,44.6505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.724125,58.5305],[20.666,58.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,51.3],[-180,62.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.179625,33.617],[30.092,34.232]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.851,64.648],[-23.64,64.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,-15.17],[-120,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.233,43.988],[-8.57,46.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.7545,33.6495],[-7.825,34.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.855,28.698],[-88.472,28.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.2945,54.8725],[-5.280984,54.713938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.958,39.383],[5.193,39.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.110094,53.333734],[-5.9835,53.220344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.754,58.5605],[9.850938,58.455938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.851,14.306],[-148.132,11.961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.347,61.125],[-146.618,61.103],[-146.949,60.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.139,-33.412],[-20,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.5935,43.573813],[14.468312,43.437344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.816,41.969],[128.538,39.424]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.466,59.036],[-158.667,58.819],[-158.411,58.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.603,32.717],[32.055375,31.709125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.0965,-9.3795],[106.669,-12.7935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.431,41.148],[10.339375,41.356375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.58575,55.59375],[15.507531,55.478125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.9875,34.5585],[29.12075,34.4865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.950312,59.026313],[10.9585,59.168],[11.211,59.087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.220125,39.832125],[2.403,40.002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[148.972,40.823],[147.882,40.164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.3335,-11.7495],[-169.32,-10.714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.352,26.892],[-74.308,26.359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.020375,36.906375],[23.888502,36.95017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.246187,40.040219],[5.29,40.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.793,39.4555],[8.0245,39.307]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.136375,56.98425],[12.117906,56.828844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.845813,36.259187],[24.639344,36.376688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.556,45.528],[-1.5785,45.7045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.516,41.219],[5.641,41.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,6.324],[70,8.5915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.074,63.846],[11.243,63.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.3,-39],[144.9,-38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.595,44.578],[12.51375,44.495125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.074531,42.170063],[11.245156,41.879453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.002,-33.482],[163.504,-33.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.375,10.012],[150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.487906,54.9175],[11.381187,54.929438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.078,39.137],[-74,39.407]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.296,53.81425],[-4.405,53.76525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.672,42.614],[5.865656,42.697406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.953,39.787],[-9.889,39.529]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.13275,49.067375],[-4.251,49.048],[-4.381625,49.071687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.878,-24.463],[153.948,-24.552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.96175,41.76125],[-9.093,41.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.04275,56.005125],[18.058125,55.827438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.750969,43.460469],[9.802719,43.645828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.652875,-23.02875],[168.558,-22.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.933,15.347],[145.232,13.606]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.482,54.686],[14.375625,54.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.68,36.0415],[-2.33457,36.37425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.409,35.286],[27.655,35.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.282,55.731],[5.324,55.4995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.532,58.054],[9.463125,57.949875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.225,45.137],[-3.5345,45.538]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.169062,53.733187],[-6.045937,53.884125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.13525,56.39575],[4.186,56.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.025,-18.944],[167.652875,-23.02875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.778,32.884],[122.9,31.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.298,47.783],[-6.449,47.6695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.175,9.055],[-81.714,9.512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.434375,55.64575],[6.316,55.694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-30],[-94.417,-30.083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.796547,37.32475],[24.919254,37.184895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.174547,36.856313],[25.081813,36.791625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.9145,39.9265],[14.9765,39.793]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.245,25.99],[-160.364,29.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.6115,43.0815],[8.750953,42.840031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.344,19.296],[-81.196,19.594],[-80.883,20.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.192,63.743],[21.941,63.722]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.966,58.115],[20.793,58.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.9555,49.314],[-3.069125,49.372]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[56.545,-18.796],[57.496,-20.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.501,58.224],[1.195,57.938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.676,49.827437],[-7.5615,49.789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.781094,50.894406],[0.344,50.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.103625,58.0825],[19.031,57.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.67,41.491],[-71.07825,41.38225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.656719,43.130891],[9.643016,42.992141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.607,54.2255],[8.497859,54.259535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.013375,13.174125],[42.762,13.078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.294,31.627],[-71.305,31.4365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.202,7.664],[-78,3.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.097625,40.112875],[5.0745,39.97075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.876,41.408],[2.734,41.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.4465,55.463],[6.316562,55.509375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.028375,58.819312],[10.045477,58.70118]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.101,63.809],[22.192,63.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.925,47.798],[-16.888,48.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.577,-32.802],[1.965,-32.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.885035,52.111375],[3.673344,52.042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.76475,43.9355],[9.857609,44.045859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.916,20.06],[127.027,20.671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.172453,54.831187],[13.465187,54.965562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.487219,57.727984],[-2.466375,58.039375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.83925,64.762188],[-13.875,64.832]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.444688,43.3345],[8.5515,43.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.0485,54.216188],[12.1275,54.099]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.44,-31.566],[90.001,-32.086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.50025,52.78525],[4.536,52.894]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.082,61.049],[18.192,60.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.8,34.426],[14.567266,35.916988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.901,41.139],[-134.594,43.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.106688,50.7695],[-1.319141,50.777234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.2375,32.5435],[14.92,32.922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.25825,37.08725],[-10.054,37.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.33375,54.50225],[10.318812,54.628844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.676,38.936],[26.678,38.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.55025,58.34625],[-1.24675,58.373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.8425,34.943],[27.746,35.132]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.773,50.963],[-11.239,50.819]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.9955,37.929],[-32.34425,37.84675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.187359,37.083187],[26.041,37.040719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.249437,35.433906],[26.12,35.4165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.934,7.545],[109.949,7.953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.277719,36.044219],[23.432738,36.097727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.34,62.617],[6.133625,62.45875],[6.026938,62.43725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[62.607,16.551],[64.736,14.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.162,16.908],[118.556,17.357]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.366,70.3685],[32.382,70.504]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.208,7.36],[-82.082,7.348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.818,30.915],[130.9,31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.0765,40.52625],[3.285,40.688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90.001,-42.239],[90,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.531,38.308],[-74.396,38.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.5215,42.94825],[15.663,42.937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.18,55.327],[-165.284,54.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.653,59.152],[9.613,59.124],[9.786531,58.940641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.21625,52.633],[2.381875,52.661125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-50],[-104.891,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.78925,42.880656],[-9.748,41.9725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.310437,36.650125],[25.147418,36.515793]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.856,67.715],[13.57625,67.44925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.005828,52.502695],[2.189,52.548]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.67325,38.826],[-11.262,38.74775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.805,39.603],[2.046,39.553]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-74.184,-52.823],[-73.556,-53.06],[-73.282,-53.231],[-73.084,-53.329],[-72.4,-53.555],[-72.189,-53.659],[-71.991,-53.751],[-71.574,-53.874],[-71.414,-53.916],[-71.238,-53.938],[-71.104,-53.9445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.63,7.677],[-25.923,5.978]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.402,69.927],[33.565,69.394]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.567266,35.916988],[14.647,36.111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.16025,39.8225],[19.034437,39.824531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.296,-9.31],[-98.025,-10.014]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.46,51.587],[4.40025,51.67625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.787,66.101],[10.358,66.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.243063,56.447688],[20.285625,56.15325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.714,34.908],[23.732074,35.143287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.076188,43.530625],[-2.322,43.8645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.282375,36.112375],[-5.439953,35.9825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.075,-35.355],[165.521,-34.869]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.731,36.441],[-12.625,36.776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.032,39.59575],[9.8365,39.399]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.089797,43.182266],[15.1795,42.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.213,20.742],[-73.899,20.2085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.369875,40.806375],[3.158,40.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.456,39.356],[23.511,39.481]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.743063,56.151656],[20.67425,55.83475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.539438,56.547812],[-5.6355,56.407781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.388,54.981],[16.624781,55.029219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.57,33.52],[28.074,33.288]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.036375,53.953719],[-3.177,53.632]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.207,46.024],[-1.33975,46.118]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.70075,39.884],[13.777,39.688125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.67425,55.83475],[20.705625,55.69775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.002375,59.752625],[20.2055,59.76425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.654,61.773375],[19.816,61.808]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-20],[-105,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.095156,39.792156],[8.017,39.695],[7.834,39.62075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.5755,38.543625],[-28.3005,38.593]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.401125,38.806063],[0.944,38.941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.477141,44.123984],[13.341,44.029]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.888,48.057],[-16.235,47.649]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.2605,50.41625],[-2.205125,50.286875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-112.949,17.193],[-113.663,16.489]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.740406,48.163031],[-4.796031,48.2765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9295,41.66625],[4.648,41.749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-172.3,64.2],[-171.645,63.738],[-168.251,63.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.668,29.132],[-92.886,28.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.308,28.943],[-95.101,28.746]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.451,40.732],[-136.437,40.076]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.333215,53.965777],[-3.575438,53.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.215,42.302],[-11.681,41.272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.103,20.075],[63.154,20.063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.89,-14.506],[-175.469,-14.183]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.562125,57.032],[18.77525,57.13575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.48725,53.17825],[2.3385,53.412]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.753531,49.47975],[-4.022187,49.350313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.362,45.074],[12.528937,44.994906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.882125,60.26575],[27.55325,60.13225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.600777,43.526945],[7.462359,43.401703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.337,41.1],[1.497,41.098]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.971,34.42],[19.591,34.649]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.914687,43.390719],[10.001461,43.321117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.71725,59.737344],[19.77893,59.713926]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.557,-5.612],[165.404,-5.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-40],[-78.356,-43.267],[-76.5,-46.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.8135,68.3785],[-95.314,68.389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.724,61.028],[0.685,61.166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.814,0.576],[-141.439,1.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.706176,48.730629],[-5.601281,48.656219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.834906,43.888906],[8.975734,43.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.88475,21.62225],[-73.86075,20.976375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.71975,59.117234],[4.709,59.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.5,37.68725],[-74.683,37.611]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.638,35.281],[-16.138,35.247]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.970297,53.366312],[-5.305,53.374]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.32525,42.0665],[15.431,42.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.09175,56.89825],[7.216203,56.968812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.805,22.311],[-87.8975,22.731]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.419,58.867],[9.513219,58.767844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.6575,43.849969],[14.763562,43.988937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.51225,57.988031],[8.404813,57.840125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.436,3.783],[118.112,3.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.976562,58.336062],[19.5215,58.2635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.9345,54.67425],[12.799844,54.771531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.569,36.528],[-10.514,36.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.592,52.801],[-47.662,52.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2495,43.7505],[14.228418,43.868785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.352,59.9975],[22.31625,59.8845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.034406,40.711969],[17.90025,40.867087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.69175,69.6205],[14.79,69.716]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.5605,42.7425],[8.64225,42.827]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.147,55.764],[0.783,55.983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.8465,-11.7845],[131.8,-10.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.102,-6.293],[106.8,-5.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.6,34.2],[127.849,33.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.242,64.142],[8.853,64.509]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.079625,54.454125],[13.958,54.373563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.338,37.6145],[21.2085,37.511]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.299922,42.778953],[17.592,42.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.536,38.757],[6.717,38.243125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.942,40.695],[2.799375,40.86875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.1945,38.31025],[12.31975,38.362]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.0095,51.38025],[-3.852121,51.573113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.034687,60.73825],[21.145812,60.519688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.524188,55.865313],[7.609,55.80425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,60],[-56.593,60.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.868125,35.259625],[27.527,35.048]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.76275,49.82525],[-5.64625,49.77825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.7725,35.911],[-8.838,36.033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.0445,59.38],[20.2645,58.8945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.618,25.946],[-76.808,26.131]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.869,65.221],[-22.752,65.097]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.97675,21.97175],[-86.056187,21.765438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.434,67.3825],[14.346562,67.28275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.8605,-5.729],[116.2,-7.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.076,38.801],[-74.565,38.657]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.098937,54.607438],[11.007062,54.683188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,10],[-37.595,7.643]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.371938,61.606813],[21.282,61.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.561,39.8225],[23.4695,39.878]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-30],[-105,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.002,-43.805],[70,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.888672,49.878625],[-3.98,49.773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.2355,51.338],[-8.334,51.334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.823,38.75],[-64.37,33.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.60775,43.364375],[7.608875,43.185562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.52375,59.881],[5.43925,59.948]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.026375,56.91575],[11.895656,56.986219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.842453,57.702484],[-1.71725,57.714875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.661,61.90475],[20.654,61.7045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.836,54.2565],[8.827875,54.105344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132,-8.9],[131.922,-9.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.045,13.361],[119.9,14.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.055,-12.858],[179.3,-8.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.342,33.042],[135.123,32.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.698188,54.519414],[-3.863375,54.368875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.42959,48.744031],[-5.06025,48.81825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.978891,48.984687],[-2.809,48.895],[-2.648875,48.813688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.002,36.099],[17.971,36.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.299656,56.545609],[12.438195,56.321961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.993,64.611],[10.705,64.583]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.225,29.837],[122.872,28.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.908,-32.275],[50.001,-31.837]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.229984,45.702668],[13.323148,45.536664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.5185,37.229094],[13.485219,37.115625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.116875,55.138109],[-5.166329,55.353328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.910375,40.288187],[12.717,40.169875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.796,42.534],[6.9445,42.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.996,50.559],[-177.754,47.893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.23125,27.989],[-77.011,27.798]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.929,67.786],[14.1215,67.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.5465,50.568],[-6.71525,49.869875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.873,38.811],[1.401125,38.806063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.304,31.104],[-61.32,30.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.134,34.896],[27.527,35.048]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-109.7,22.5],[-107.252,20.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.884,21.24775],[-157.762,21.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.064,43.392],[-9.293,43.399]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.51,63.063],[19.688,63.0455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.6975,57.72375],[20.541938,57.3945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.822125,59.054375],[21.676,58.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.30525,39.6275],[13.74725,39.38525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.744,0],[-10,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.439,36.633],[24.534312,36.54225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.449,-2.587],[70,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.55025,58.34625],[-1.643625,57.86225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.672187,36.804],[-1.752,36.68025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.404813,57.840125],[8.509,57.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,40],[154.056,40.087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.80325,58.08],[6.963875,57.974125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.739,34.464],[29.496,34.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.099016,43.969094],[9.0395,43.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.708,36.1845],[15.499,36.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.385406,39.761953],[18.145,39.4845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.158125,61.129375],[18.192,60.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.788,34.522],[32.3655,34.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.243562,36.1335],[25.352688,36.262219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.875,41.001],[4.845,41.2535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.198,3.24],[140.42,9.112]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.662,56.487],[-7.5045,56.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.192812,37.770094],[24.18977,37.595664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.234,65.998],[-21.1815,66.09125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.839531,37.626],[24.051451,37.548637]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-10],[-99.296,-9.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.984687,57.661875],[-3.869656,57.696844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.717,38.243125],[6.56425,38.18125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.948,34.405],[-156.514,30.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.576,29.485],[-74.466,28.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.15,2],[130,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,-50],[125.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.262,38.74775],[-11.228,38.913]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.425,11.745],[43.645,11.8085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.793,39.4555],[8.0275,39.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.996,18.294],[107.1,20.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.057,40.21],[2.9,40.38175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.4385,39.8315],[8.356,39.668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.539,36.331],[15.213625,36.4225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.2105,31.921625],[34.782,32.9665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.144266,56.912734],[8.023375,56.841187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.049578,45.593297],[-1.296,45.396],[-1.414,44.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.192,38.8225],[13.097,38.956875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.127313,61.156312],[21.155,60.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.382375,45.6065],[-1.372,45.281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.693188,48.387812],[-5.7805,48.216]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.310437,36.650125],[25.284078,36.52936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.185,58.0405],[4.9415,57.9345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-10],[-130.003,-11.788]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.649,60.112],[20.644,60.218]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.042,55.233],[14.282291,55.167619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.822,40.414],[24.776063,40.249313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.875656,56.348],[11.732125,56.57975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.334,39.559],[8.365,39.4035],[8.361203,39.166469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.58,71.235],[27.393,71.116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.977313,40.664906],[13.707706,40.727291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.744,56.785],[1.939,56.924]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.941,39.505],[121.886,40.423]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.707656,44.083062],[28.790438,43.889844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.578,61.7795],[-168.645,61.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.345625,38.912625],[15.233625,38.927062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.002,-43.805],[70.001,-48.29]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.614,51.582],[-7.333,51.659]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.247984,56.951031],[8.144266,56.912734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.826625,41.830687],[10.631438,41.748188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.619922,55.17168],[16.636,55.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.204687,50.567141],[0.355135,50.517465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.5435,36.8875],[21.371875,37.2265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.99475,56.60875],[19.161438,56.555562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.658359,36.855695],[24.503,36.7755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.91,57.546],[-6.112,57.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.344,61.467],[-4.068,62.038],[-1.706,63.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.29,38.171],[7.514,38.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.281656,49.501211],[-0.125375,49.736375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.292922,36.264656],[27.2455,36.38575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.986,59.145],[21.419094,59.038344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.768812,56.5435],[17.964,56.268]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.708,4.774],[1.9065,4.8305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.400875,36.420125],[28.2755,36.4545],[28.110809,36.492992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.469,-37.722],[160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.187313,59.176812],[19.315,58.938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.619875,61.102125],[19.437656,61.069562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.886,-1.996],[126.336,-0.726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.997,-53.308],[-89.996,-54.092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.625,26.42],[-85.717,26.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.72975,60.6535],[18.2855,60.514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.268,2.358],[-28.143,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.3,61.615875],[17.4275,61.58525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.842,-9.845],[68.731,-8.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.590312,41.846594],[11.781938,41.724312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9585,57.96775],[-2.12775,57.97225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.81,11.456],[-79.555,10.547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.642,58.557],[-0.3035,58.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.15675,60.833875],[19.984,60.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.624,37.788875],[26.475707,37.775152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.925,57.3495],[8.84,57.2805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.127031,57.969063],[11.249312,57.976813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.123,32.92],[132.3955,32.413]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.8645,54.6055],[4.781,54.478]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.517,33.936],[-69.804,34.036]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.40275,51.486],[-5.642,51.476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.338,-8.371],[-155,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.600039,40.952727],[9.831,40.812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.229,65.655],[-24.5125,65.51375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.068,58.939625],[5.292625,59.019719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.286125,38.122125],[11.6695,38.146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.7,24.3],[-84.637,24.726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.053,54.245],[-4.5005,53.9615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.188,36.4725],[-9.4495,36.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.031281,38.956594],[8.9655,38.84575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.322,38.323],[14.4745,38.326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.752,42.817],[34.5425,42.7585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.56984,37.861602],[24.469781,37.784891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.467785,50.749156],[1.286406,50.68193]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.587875,54.278063],[7.76875,54.178875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.031125,41.131],[2.271555,41.142922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.670625,44.65625],[-8.603,44.128]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.041,38.824],[14.1415,39.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.709,9.518],[-13.846,9.54],[-14.602,8.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.93,35.915],[14.813,35.959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.0485,20.103],[-39.896,20.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.2265,40.19],[24.199188,39.952063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.815812,50.458],[-1.801687,50.291313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.4325,36.1165],[-73.269,35.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.69625,67.809],[12,68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.803187,55.4435],[19.01575,55.424]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.578,66.4795],[-21.258,66.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.262,-7.212],[125.466,-7.872]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.37,28.716],[-89.009,28.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.089,37.879],[-22.3135,37.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.11575,60.165125],[5.272703,60.148813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.8225,57.054],[10.963531,56.821156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.662,57.993],[5.793,58.008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.813,42.433],[5.558875,42.49275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.696469,58.992563],[10.831,59.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.437,40.076],[-132.406,40.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.506,42.738],[35.465,42.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.178562,58.801852],[10.045477,58.70118]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.454,-5.547],[105.493,-6.203],[105.102,-6.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.024188,49.587063],[-4.23925,49.463688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.5615,49.789],[-7.4905,49.7065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.904,33.16],[33.162,33.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.43925,51.26],[-5.48175,51.108812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.772,35.527],[28.881,35.569]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.203,28.276],[-15.32175,28.284375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.84,34.1815],[-72.85,33.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.385,35.05],[-74.374,34.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.458,26.34],[-79.5835,26.0805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.514453,37.487023],[24.5975,37.608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.59,40.85],[28.805,40.872]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.031062,59.847594],[5.077,59.7035],[5.181,59.565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.56725,60.87025],[-6.541,60.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.16825,68.38025],[15.861313,68.311375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.076906,43.521563],[7.462359,43.401703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.5005,53.9615],[-4.227,53.953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.78425,39.4815],[13.777,39.688125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.55,42.8025],[17.299922,42.778953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.396453,37.483766],[26.268187,37.387125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.258,66.438],[-21.03,66.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.412,44.988],[-1.414,44.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.486,2.063],[-40.782,3.072]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.504,-8.533],[-169.004,-9.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.077875,41.142875],[7.569,40.892]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.2135,61.1575],[19.312875,61.169125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.16025,39.8225],[19.300375,39.66625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.6365,54.431],[14.628,54.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.1,5.8],[74.823,4.468]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.001,32.955],[-51.7,32.839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.8,-5.25],[-40,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.774,58.338],[-0.11625,58.3085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.4155,43.50525],[15.422688,43.642125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.2635,44.880875],[13.05,44.9095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.278031,38.316719],[-9.137,38.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.556,45.528],[-2.365,45.324]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.834,64.701],[22.593625,64.693375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.516,55.246],[16.547,55.37925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.01575,57.5075],[11.233766,57.507234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.72575,60.94075],[3.2715,60.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.248,44.301],[-8.603,44.128]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.732,54.1965],[-166.802,54.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.010844,57.876],[20.02225,57.6885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.254,62.208],[20.322,61.995],[20.3625,61.832125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.474,27.562],[-95.799,27.605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.767188,55.361438],[7.497187,55.448062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,-30.093],[-140,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.272,-43.056],[60.002,-43.304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.5,1.2],[123.655,4.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.269,31.881],[-38.981,31.108]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.741,37.578],[-11.49925,38.24975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.017062,51.85325],[3.6775,51.7775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.8835,45.385],[-5.85275,45.485375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.166,37.689],[21.062961,37.843938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,10],[-27.694,10.201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.975875,53.351812],[-4.10725,53.48225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.361312,41.888563],[3.847,42.2555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.138,35.247],[-20.002,35.0065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.613,47.755],[-4.847859,47.767328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.408,40.741],[5.809,40.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.780188,57.689125],[16.900937,57.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-10],[-120,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.826,35.952],[22.48675,36.039563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.001461,43.321117],[9.851766,43.256969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.864688,49.751],[-5.986687,49.76425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.782594,57.578156],[-6.548,57.70425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.249,56.770875],[-1.985812,57.13725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.511625,37.280813],[12.420078,37.448047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.944,38.941],[0.808375,38.9915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.079,16.695],[-68.314,15.132]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.966375,49.761313],[-1.170828,49.970023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.182,34.97],[132.454,36.369],[138.07,40.452]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.002,55.194],[-20.003,56.534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.218281,38.426297],[13.083,38.6375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.27,-39.301],[146.041,-39.627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.80225,51.446937],[6.874,51.096],[6.865,51.073],[7.344,50.477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.358,65.006],[9.941,64.554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.826,35.952],[22.749125,36.0505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-0.465],[-100,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-50],[-82.878,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.156445,54.451172],[12.0485,54.216188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.633555,61.056664],[18.557,60.827]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.674312,42.70125],[8.389906,42.697969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.49625,66.1105],[-20.567,66.232]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.9815,54.8525],[-1.239625,54.994609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.239625,54.994609],[-1.197555,54.799437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.079,16.695],[-69.393,15.631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.658,-24.543],[-76.035,-25.999]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.210703,36.538219],[27.3125,36.6435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.769,58.29175],[9.864,58.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.313,-33.952],[-47.356,-32.822]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.66925,35.99725],[-4.84025,35.97725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147,-4.8],[144,-3],[141,-2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.237,36.152],[-68.031,35.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.002,42.755],[-52.57225,42.61175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.437,38.983],[3.817,38.9955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.55075,66.33975],[-17.3045,66.399]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.365,0],[53.186,1.951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.404,46.193],[-10.27,44.458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.26275,55.171875],[8.046344,55.201281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,28.672],[-60,29.577]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.45575,41.3615],[11.3155,41.3365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.665125,39.38025],[24.78375,39.332875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.912875,51.426563],[2.014828,51.457344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.522,43.754],[-131.785,42.853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.410563,39.767125],[19.577375,39.563375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.772,74.652],[-71.563,76.668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.851,57.339375],[7.727,57.158]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.916,42.35475],[17.011,42.2895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.361,37.801],[18.393,37.939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.344,58.00775],[17.197,58.321]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.035,34.801],[21.069,35.196]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.882094,43.651031],[13.939625,43.833375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.848898,38.534312],[14.835,38.68175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.118859,43.526453],[-3.375,43.5385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-20],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.1455,45.414],[-4.129844,45.311562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-20],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.528,57.954],[22.915,57.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-30],[-115,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.913266,37.335828],[26.747031,37.257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.946,52.394],[-6.997,52.276]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.1,-37.7],[150.357,-37.766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.732531,42.291219],[10.85625,42.1635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.9255,52.01575],[2.2615,52.03675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.394,36.29525],[27.3545,36.1685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.483,26.724],[-89.871,26.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.459,52.943188],[1.580313,52.89825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,40],[-180,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,40],[-180,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.995477,36.805496],[25.814062,36.692281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.208,7.36],[-81.8735,7.208]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.257,64.589],[-165.429,64.402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.152469,57.2],[20.333,57.266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.123,40.982],[-40.001,40.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.953281,41.528719],[-8.70175,41.1815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.342375,58.375],[18.435875,58.189125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.006,62.368],[-20,61.232]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.909016,52.970562],[-6.015,52.817]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-20],[-149.539,-17.4915],[-149.682125,-17.353625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.92475,39.760375],[14.01125,40.086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.3,-8.9],[-180,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,10],[-98.103,10.326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.397938,41.180969],[2.641,41.085],[2.843063,41.006312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.128,11.525],[-17.007375,11.029125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.553,53.745],[-5.474625,53.615375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.957,39.986],[0.867,39.871]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.4465,55.1275],[12.505,55.034],[12.594953,54.939547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.3475,45.135],[-7.775875,45.926]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.287602,40.316414],[13.418305,40.172133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.4,10.5],[125.7,13.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.2685,50.308875],[1.286406,50.68193]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.595,35.706],[-12.806,35.6935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.8945,21.5975],[-82.7,22.3],[-80.75,21.6],[-78.14949,18.992057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.770117,56.513672],[-6.005,56.609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.016,25.668],[-84.277,25.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.73,60.914],[-4.617,60.9005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.423,-11.089],[160,-10.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.61,-35.012],[0.002,-35.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.548,57.70425],[-6.664,57.616]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.462,46.946],[-13.537,45.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.106,61.33],[-4.73,60.914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.777094,35.966875],[-7.9315,35.91875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.50575,38.57075],[11.004,38.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.373734,57.904672],[11.24507,57.844516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.056625,57.749625],[17.226156,57.496313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[62.292,2.325],[65.03125,5.06775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.337,-23.766],[153.427,-23.882]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.248,39.749],[14.33725,39.5515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.224291,18.787721],[-62.60375,17.271]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.20375,43.705],[8.41625,43.609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.1965,39.41],[18.6675,39.587]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.715625,52.0255],[2.998203,51.880914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.078305,38.55825],[15.1505,38.4395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,20],[72.4,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.145375,36.8225],[17.147,37.191],[16.733,37.3455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.443,8.896],[-81.175,9.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.4855,60.1135],[20.644,60.218]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.146,53.878],[2.35225,53.831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.259,36.044],[-10.33,36.073]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.909,21.391],[-75.402,22.141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.562,30.349],[130.9,31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.638,37.563],[-34.554317,37.691314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.338219,44.012188],[9.40825,43.841641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.643062,41.204937],[17.7155,41.115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.619,41.455],[161.601,41.943]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.948,5.812],[-51.901,5.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.999,26.141],[-83.686,25.864]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.913875,58.669],[20.960563,58.475219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.593469,58.146406],[17.712,58.265],[17.822836,58.459117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.2485,36.9335],[13.34925,36.871625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.736,-23.112],[168.532,-23.506]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.945,55.789],[10.819488,55.736742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.027,20.671],[124.536,21.218]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.476,58.653],[20.836766,58.773047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.42275,43.077],[6.20175,42.931625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.17425,38.0435],[-0.412875,37.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.171,73.974],[80.838,74.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.522,69.137],[15.246,69.0305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.236,-1.332],[130,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.71775,39],[24.779438,38.804688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[84.281,-15.879],[86.99,-17.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.042334,56.518523],[10.952836,56.35907]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.415,24.68],[160,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.204125,54.073875],[-3.171094,53.926219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.223,48.786],[-4.0635,48.824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.714125,59.0385],[21.676,58.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.264188,63.044219],[20.404,63.2245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.892,34.784],[-7.999,34.5095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-60],[-44.75,-55.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.655414,56.058281],[10.77275,56.177375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.587,40.588],[-52.57225,42.61175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.3335,59.098],[-1.181,59.129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.847875,64.741625],[23.871,64.59275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.680563,56.1585],[11.378,56.135],[11.242563,56.1445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.979375,53.474625],[4.814344,53.521469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.6175,54.6845],[16.365844,54.531406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.965,-55.315],[-63.472,-55.092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.503,53.603],[5.490258,53.60458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.557,41.996],[9.620406,42.3635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.8895,12.045],[-61.568,13.244],[-61.498,13.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.52,56.471],[-6.571,56.361],[-6.5735,56.153375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.03975,51.93075],[-6.823125,51.924625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.45,-8.317],[126.507,-6.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.530812,60.227469],[21.46925,60.35075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.9535,55.3335],[-5.8075,55.13525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.891313,51.476594],[-9.459,51.681],[-9.752,51.654]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.015,-28.169],[0,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.593125,57.25925],[17.695875,57.140875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.999719,43.225391],[17.182969,43.11575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.818,55.1365],[10.941992,55.214016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.291062,39.408125],[1.361,39.307]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.189,48.601],[-6.26125,48.4115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-10],[78.415,-11.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.91125,38.024687],[-71.895,37.876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.535,42.227],[8.4265,42.35075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.454469,54.302594],[7.305438,54.271844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.705,47.61],[-4.921594,47.532438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.1,12.2],[110.447,12.282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.14,56.61875],[17.0185,56.57525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-30],[104.244,-34.614]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.906,46.232],[-7.831,46.327],[-7.771,46.403],[-7.64925,46.56025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.478188,42.446594],[10.298,42.3805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.786938,51.699687],[1.46925,51.608875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.01975,19.973625],[-60.035546,19.990821]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.554,57.3935],[19.735969,57.3235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.001,48.559],[-130,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-30],[-180,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-30],[-180,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.422562,53.793594],[7.127125,53.823289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.703875,39.29275],[25.598969,39.381262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.330156,58.098406],[8.2545,58.0265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.13875,42.80525],[10.015738,42.886645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.547375,63.343688],[20.493625,63.190883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.722125,67.638625],[12.514,67.102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.352,49.184],[-0.241,49.344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.974,55.629],[-6.113,55.886]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.533,35.465],[-8.365375,35.48075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.854656,38.153594],[24.699875,38.2665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.999,22.421],[160,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,50],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.835453,51.697],[-5.81,51.8],[-5.782,51.898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.637625,58.2825],[9.72325,58.458625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.9425,37.828],[16.04175,37.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.2,69],[-55.4305,69.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.153,66.745],[11.363,66.053]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.424594,36.563602],[23.585266,36.680078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.834,58.063],[17.056625,57.749625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.331,19.129],[-67.928,18.4805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.147781,56.264937],[16.14425,56.12275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.906,55.305],[1.58,55.503]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.028,48.148],[-40,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.088,11.868],[110.073,11.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.65025,56.86],[7.742406,56.692188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.6015,40.8335],[2.44575,40.680125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.175375,52.33825],[2.259,52.467]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.480375,54.814172],[18.639656,54.793781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.985,64.579],[4.1,62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.436234,50.586422],[-2.307,50.563],[-2.17725,50.509]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.6555,40.221],[18.64425,40.12075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.313,41.399],[-150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.330875,38.221688],[12.1945,38.31025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.043,14.236],[-61.203,14.202]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.175,51.593],[-163.255,51.683]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.25625,42.661938],[16.224,42.4485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.895,69.158],[14.0605,68.7865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.967,-5.071],[66.709,-3.334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72,-33],[-80,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.826,35.5],[-6.345,35.827]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.882437,41.374219],[9.804312,41.211062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.4485,32.907],[-76.208,31.821]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.329,0],[-142.059,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.5655,59.91625],[22.5255,60.015],[22.692,59.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.835,62.93875],[6.607,63.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.450672,36.049],[27.585375,35.853125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.483437,46.081187],[-1.67225,46.22275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,20],[-103.665,13.916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.193465,54.806707],[10.043996,54.757462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155,25.277],[158.482,21.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.525625,41.204813],[17.271711,41.397918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.5,-10],[153.877,-8.772]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.256,69.516],[14.69175,69.6205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.112,63.27],[20.438094,63.345781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.410563,39.767125],[19.513125,39.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.374,34.005],[-71.495,32.083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.449,0.387],[8,0.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.472578,40.184711],[24.36725,40.08575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.748,41.9725],[-9.609,42.539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.101,69.5915],[43,69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.10675,64.784],[-168.949,64.701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.41,38.1855],[1.031,38.4555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.69025,64.834],[22.593625,64.693375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9735,58.866],[5.068,58.939625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.297,28.749],[-142.772,30.052]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.57075,55.83475],[-6.5735,56.153375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.236023,37.288781],[24.120941,37.270809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.61232,54.719742],[10.601219,54.874613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.5765,36.101375],[-5.014,36.046]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.530312,50.3175],[-3.556373,50.14482]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.818,28.43],[-78.654,28.182]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.616375,36.217125],[28.110809,36.492992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.786,31.734],[-12.43,31.444],[-13.942,30.189],[-14.831,29.681]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.069,39.935],[19.16025,39.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.590312,41.846594],[11.4615,41.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.288,35.615],[23.492125,35.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-40],[-125,-40.107],[-130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-112.949,17.193],[-114.164,20.058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.216,-35.5],[127.51,-34.287],[120.877,-34.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.147,63.971],[-16.367,63.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.204,21.506],[-74.909,21.391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.089,-20.029],[-20,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.1,33.2],[14.539,33.433]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.389,31.456],[32.181,31.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.739,40.644],[5.05,40.689]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.181469,58.107875],[21.049,58.044125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.186125,39.03375],[2.9645,38.946]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.20525,56.54725],[5.6375,56.6925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.24507,57.844516],[11.381727,57.740961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.864,42.036],[-64.2,42.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.307,15.473],[-133.158,20.0185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.732742,37.148824],[24.8055,36.999625],[24.86725,36.909336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.15675,60.833875],[20.035875,60.996938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.74025,44.051],[9.857609,44.045859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.71975,59.117234],[3.741,59.199]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.0775,56.9045],[-2.167,56.619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.254,12.874],[-140,13.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.373734,57.904672],[11.509242,57.924437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.564063,57.590063],[11.470937,57.634844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.383313,55.997875],[7.524188,55.865313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.472,60.4055],[2.047,59.771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.342,54.525],[-35.249,55.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,17.755],[161.193,18.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.574938,39.23257],[23.4675,39.127437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.446,42.276],[3.361312,41.888563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.031,68.383],[16.16825,68.38025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-40],[-180,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.9145,64.29],[23.822,64.3935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-40],[-180,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.470094,53.916625],[4.0685,54.0015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.75475,62.53275],[20.842,62.228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.555,-42.861],[-139.997,-44.316]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.901,5.4],[-61.0065,10.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.738955,51.010418],[1.633094,51.153219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.3045,66.399],[-17.253,66.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.451,-19.269],[159.749,-19.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.3605,35.9945],[28.400875,36.420125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.636,49.992],[-7.676,49.827437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.81925,58.022875],[-6.112,57.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.9425,63.208],[20.112,63.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-112.667,17.471],[-112.949,17.193]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.965,57.038],[-1.317,56.823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.758,49.544],[-0.79625,49.7135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.091,25.434],[121.668,25.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.001,13.894],[-124.128,14.351]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.7,43.486],[-138.266,41.189]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.841,33.589],[-67.531,33.247]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.7675,48.253],[-6.802,48.027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.61675,36.92625],[23.7485,36.95025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.589,26.212],[-76.665,26.3255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0365,40.67025],[7.5675,40.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.024,36.038],[-9.131,36.041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.021609,42.014109],[-9.22575,41.999875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.289,57.9065],[8.404813,57.840125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.349,48.593],[-6.5735,48.60675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.560625,38.823],[8.66075,38.8195],[8.82375,38.788313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.309,0],[-166.599,-3.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.120438,42.2],[10.007094,42.077813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.627,66.291],[-18.77825,66.22925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.305045,55.090986],[11.381187,54.929438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.254062,56.020437],[11.130758,56.077344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.902,58.743],[12.926,59.127]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.804312,41.211062],[9.708391,41.070266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.642545,40.820645],[24.4365,40.629688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.741,-31.368],[10.001,-31.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[86.99,-17.784],[89.512,-19.537]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.95125,47.30675],[-3.106625,47.4005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.5355,38.678],[9.432375,38.72425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.144164,50.056672],[-4.153844,50.273531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.157,-32.824],[134.5,-34],[136,-35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.1425,49.1885],[-4.00425,49.214875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.73775,52.553125],[-9.949875,52.440313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[86.11,0.001],[80,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.10025,40.5655],[10.8035,40.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.129,-56.014],[-67.019,-56.066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.395313,36.314844],[26.267156,36.273813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.396195,36.376578],[25.493422,36.511016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.174,66.917],[43.665,66.561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.61225,38.884687],[9.722,39.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.8335,26.345],[-85.717,26.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.094313,35.236625],[26.12,35.4165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,20],[140.01075,17.68825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.284078,36.52936],[25.041844,36.399219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.792,35.763],[-125.796,36.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.848451,54.48759],[13.94975,54.67425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.889,32.336],[32.543,32.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.148,-9.738],[142.133,-10.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.236,34.693],[25.609,34.523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.815,27.897],[-91.601,27.708]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.487,38.892],[7.52225,38.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.205,36.217],[-8.19725,36.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.713625,54.125],[8.607,54.2255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.033,42.2205],[-9.78925,42.880656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.53675,60.915125],[4.2645,60.9155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.152625,60.6845],[19.251,60.57825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.070594,51.584297],[-8.253219,51.73225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.9735,56.535],[20.859422,56.530578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.2615,52.03675],[2.015,51.866]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.8205,49.9535],[-4.883437,49.86675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.481,59.531],[22.420625,59.4495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.881,68.376],[50.187,68.573],[53.67,69.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.37125,46.746781],[-2.474969,46.901594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.946219,55.885438],[14.931625,56.01225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18,-35],[14.133,-37.568],[10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.976,33.71],[28.697,33.58]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.889,-45.403],[-160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.875133,58.064367],[19.103625,58.0825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.79725,39.287688],[19.577375,39.563375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,50],[-150.001,48.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.542,45.775],[-4.578,45.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.216875,50.345875],[-0.023,50.301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.727,35.195],[-73.834,35.227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.874273,50.62893],[0.5575,50.519937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.964,35.112],[-13.1205,34.6645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.269,58.1505],[24.028,57.874]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.097313,56.817188],[9.124875,56.9615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-50],[-180,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-50],[-180,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.984438,60.133],[4.786625,60.099375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.383,36.615],[14.635687,36.517281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.544219,51.431562],[1.624,51.536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.36,61.113],[17.387,61.0135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.103,36.46825],[-3.976,36.3615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.31,33.482],[34.956,34.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.636,54.5125],[-5.135187,54.614219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.795,41.531],[-63.295,41.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.544531,54.906031],[7.63225,54.71875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.67,69.532],[54.495,69.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.738,58.75],[1.416,58.758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.4365,40.629688],[24.415844,40.292906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.249,58.37325],[21.306,58.274]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.723,34.4925],[27.106,34.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.9055,47.983],[-6.802,48.027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.74975,41.790813],[16.932016,41.652781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.866312,54.66775],[16.947,54.732],[17.283,54.776],[17.991219,54.888781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.633,41.223],[-66.667,40.268]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.205,39.54],[1.291062,39.408125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.798375,53.92875],[-3.8135,53.7255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.581359,59.451078],[22.420625,59.4495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.010438,48.2005],[-4.905,48.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.32025,42.198],[6.803,41.688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.199,43.806],[151.14,41.972]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.645406,54.935109],[-5.566375,55.043687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.664,37.778],[-71.7925,37.587]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.6625,71.2395],[19.547,71.089]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.587375,39.788063],[6.659,39.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.9155,40.18075],[-8.9635,40.332]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.1865,46.7325],[-58.431,47.279]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.743875,38.873375],[0.673,39.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6555,62.5285],[5.385,62.587]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.607281,38.723094],[8.733969,38.664156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.84723,57.855687],[10.058234,57.74757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.74625,50.163313],[-3.556373,50.14482]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-30],[-116.769,-26.951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,50],[-139.807,50.592]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.93,36.01],[15.206,36.022]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.0095,58.5025],[18.976562,58.336062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.933,15.347],[147.375,16.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.106406,48.123625],[-5.275812,48.1095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.819488,55.736742],[10.953946,55.845714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.626,13.109],[-59.7395,12.9925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.929,67.786],[13.856,67.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.34925,36.871625],[13.303,36.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.341,53.102],[-30.003,53.227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.7355,57.55],[6.7555,57.38175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.973,-24.403],[59.491,-29.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.487906,54.9175],[11.3995,55.043813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.777687,60.865812],[19.671,60.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.243,27.604],[-77.1,27.723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,25.277],[-142.527,27.613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.691375,39.0805],[17.969,39.35225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.0485,20.103],[-40.741,20.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.948812,43.112],[14.992188,43.27725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.302,48.677],[-4.960125,48.668156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.381625,49.071687],[-4.62275,48.976375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.9545,60.271125],[-4.8,60.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.598,55.297],[-131.82,55.052]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.613,46.672],[140.475,45.842]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.3485,64.5915],[36.223,64.652]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.424594,36.563602],[23.367672,36.441352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.247,39.29],[17.9875,39.214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-118.051,-22.066],[-120,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.94275,43.39875],[14.044937,43.551812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123,-16],[121.786,-16.993]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.472,60.4055],[0.57,60.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.619375,43.835906],[-8.69,43.94],[-8.754,44.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.325188,44.284687],[14.203,44.254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.999,37.695],[171.814,38.235],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.285,40.688],[3.369875,40.806375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.356,-32.822],[-49.099,-35.201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.023062,60.089125],[-1.1365,60.0135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.61725,57.082688],[20.489,56.953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.782141,58.092062],[10.646875,58.118125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.205,42.835],[15.292125,42.721125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.409,61.8605],[21.482,61.849]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.001,-22.787],[0.001,-22.121]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.869,65.221],[-23.333,65.166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.895,63.404],[20.195,63.468]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.698,43.879],[-5.798937,43.722375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.711,55.003],[-25.002,55.194]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.376,42.589],[-9.56,42.726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.738992,44.657469],[14.639375,44.56475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.5205,38.427],[7.343,38.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.5925,42.138],[17.4545,41.94675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[99.947,-5.454],[99.982,-8.482]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.0435,-1.286],[40.3,-4.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.822,-16.967],[-20,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.981,31.108],[-40,30.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.077422,14.86205],[42.022,14.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123,19],[120,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.601,42.996],[5.7585,42.87625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.997,36.487],[-70.06075,36.046]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.52825,51.629],[-6.823125,51.924625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.159,40.971],[18.081125,40.871]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.854859,44.386266],[13.923,44.301094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.122,54.4145],[8.0505,54.339]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.656,34.712],[26.8635,34.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.773,50.579],[-5.74875,50.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.213461,41.962656],[16.210625,42.20618]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.604,36.4765],[34.67675,36.54525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.4685,39.2315],[1.097,38.988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.868266,56.714313],[7.963188,56.625062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.344,50.786],[0.612,50.776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.46725,35.31525],[-8.584,35.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.858,56.19025],[20.065,56.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.768812,56.5435],[17.51,56.043]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.77725,49.4025],[-0.281656,49.501211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.972016,52.231766],[-6.0765,52.177375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.507422,49.735531],[-3.3885,49.804812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.6445,19.8355],[-66.754,19.714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-60],[-180,-80]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.547,10.551],[-50.909,7.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.59425,36.52275],[21.292,36.3915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.434961,41.205898],[9.572563,41.142031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.957,51.52],[-6.131,51.5385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.316,55.3625],[17.181625,55.249875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-30],[57.365,-30.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,30],[141.66,30.031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.522156,40.175484],[18.466,39.897],[18.385406,39.761953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.764,50.997],[-4.892,50.914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.697,44.82],[-133.877,43.939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.038125,55.41625],[-5.9535,55.3335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.151,-5.057],[124.878,-6.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.4135,40.9095],[8.403,40.843]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,50],[-140.852,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.619062,-14.248125],[-170,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,5.057],[-149.999,9.999]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.0945,28.55275],[-15.9515,28.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.359875,51.328875],[-5.40275,51.486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.748,37.4685],[8.971,37.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.359,42.156],[-68.445,41.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.709,50.127],[-10.6925,49.914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.769906,58.507578],[10.890566,58.507941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.482,1.341],[104.74,1.456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.301,36.759],[-7.176,36.713]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-10],[-170.572,-14.058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.392,46.211],[35.138,45.926],[35.558,45.432],[36.755,45.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.802,58.7745],[5.048969,58.610875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.4645,41.97425],[11.578625,42.02875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.9375,55.80975],[18.04275,56.005125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.425875,38.922625],[24.473312,38.727063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.766,57.352937],[10.653526,57.429626]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.688125,58.72825],[-2.493,58.7145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.380125,54.51675],[8.360563,54.301414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.794,44.961],[29.805,44.188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.03825,48.98025],[-5.21725,48.96675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.928875,36.426625],[14.920156,36.622395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.227,58.8255],[19.37,58.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137,-15],[137.6,-12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.4,41.2],[138.616,41.406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.593,38.317],[11.5305,38.4565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.179063,36.795719],[26.3595,36.848344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.816,62.547],[-8.335,62.406],[-7.37,62.542],[-7.028,62.431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.7465,43.7345],[28.755,43.5955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.140031,38.108703],[11.866937,38.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.851,32.0965],[-73.84,34.1815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.991219,54.888781],[17.845,54.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.606,47.657],[-4.847859,47.767328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.396313,52.1615],[-5.422125,51.954]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.814625,37.765],[15.831875,37.66025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.661375,64.139125],[-22.4985,64.026]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,13.331],[-140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.597,32.059],[-72.306,31.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.804,42.665],[-10.591,42.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.072,69.046],[33.544,69.182],[33.565,69.394]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.834,35.227],[-73.8285,35.994]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.293187,41.019125],[17.219,41.182]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.5285,39.795219],[24.53975,39.632812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.197,28.729],[-72.946,28.828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.767,39.728],[0.87875,39.71975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.8835,33.199],[26.303,33.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.92475,40.2505],[22.8,40.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.79575,50.55075],[-0.872156,50.465688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.375,10.012],[159.113,9.132]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.79,53.24275],[2.618,53.392]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.06075,36.046],[-69.761,34.928]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.5235,36.442],[20.185,36.373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.194,59.777375],[22.984406,59.798219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.8185,67.727],[13.5235,68.0595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.406,26.452],[-75.658,26.347]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.76175,39.108],[2.9545,39.044]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.596,32.64],[27.384,32.965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.587504,45.589098],[13.454773,45.46168]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.991,55.753],[6.131,55.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104,-7.001],[105.102,-6.293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.7985,10.6865],[-61.268875,11.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.984,40.314],[23.924,40.337]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.827,30.053],[-30.65,30.707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.838,34.448],[30.735563,34.47975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.525,-11.601],[93.7125,-13.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.31975,53.6265],[0.419602,53.471922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.081,61.929],[5.1265,62.207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.001,5.059],[-100,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.751,44.5445],[-5.937,44.501]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.2985,49.6765],[-5.426,49.442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.668,45.7575],[-4.578,45.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.225,44.3275],[30.142,44.0915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.76,54.7775],[5.641,54.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.6915,40.9335],[28.794,40.914],[28.934125,40.948875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.766,29.874],[-15.322,29.443]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.361,48.38],[-15.284,48.231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.507,62.95],[19.688,63.0455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75.111,-45.404],[80,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.4875,25.9845],[-76.615,25.948]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.494,62.203],[5.587,62.332]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.1875,54.676875],[13.3065,54.703],[13.421312,54.718125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13,66.5],[-4.749,64.329]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.618,65.832],[-19.642,66.123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.6,-6.3],[124.262,-7.212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.520125,43.51675],[-8.729125,43.4265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,30],[-160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.333937,38.828812],[0.488125,38.813875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.913,38.983],[-73.806,39.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.937938,37.6835],[24.90025,37.57616]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.811,33.344],[-69.089,33.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.971,13.668],[-73.778,13.508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.206,-10.581],[145.761,-12.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.011,55.475437],[15.969508,55.613234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.9255,53.926],[1.012875,54.0385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.559,34.452],[29.739,34.464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.879,37.69],[5.416,37.499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.1,5.8],[79.567,5.951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.386314,36.822074],[15.2715,36.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.968,7.312],[119.702,3.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.78925,42.880656],[-10.0825,42.6135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.507973,48.596453],[-5.55925,48.805484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.059781,57.520688],[20.965,57.343]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.888,-45.402],[-150,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.277,25.4875],[-82.7,24.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.531,39.168125],[19.699125,39.180375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.382,-21.526],[114.5,-20.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.9255,52.01575],[2.082,52.199]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.595,4.649],[-27.042,2.553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.272176,36.528695],[23.424594,36.563602]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.519,-34.913],[-150,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.08525,59.9725],[-1.099,59.808]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.135,-0.877],[-160,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.719938,37.163031],[11.82925,37.291375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.1505,38.4395],[15.261312,38.501312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,-35.386],[-140,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.395,56.181],[6.507219,56.241031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.78125,49.274687],[-2.985313,49.198062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.319,33.892],[125.6,34.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.786625,60.099375],[4.889375,59.896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-40],[-86.535,-40.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.05875,56.04875],[-2.0355,55.905625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.543,-16.93],[2.559,-17.795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.754891,56.695094],[11.8545,56.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.94,48.167],[-6.9055,47.983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.257906,44.431859],[13.923,44.301094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.91,37.514],[-0.762875,37.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.219125,57.452375],[8.166625,57.291313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.623,38.347375],[25.554063,38.455859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.527,38.939],[6.093,38.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.206125,57.692437],[10.443266,57.8495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.43,54.335],[1.635,54.501]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.094875,57.59975],[18.0965,57.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.57,40.29875],[18.522156,40.175484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.2955,40.441],[-71.118,39.813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.673,43.537],[-8.848,43.58175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.820594,36.086266],[15.045,36.276],[15.13,36.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.01,49.633],[-15.361,48.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.23,-4.631],[125.151,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.023,58.121],[-5.663,58.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.799125,36.461125],[13.663,36.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.656,55.829],[16.442,55.811844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.765,54.8335],[-0.648383,54.80768]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.089906,37.972094],[24.207539,37.923922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25,-35.386],[-24.632,-35.036]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.67,43.835],[-10.4275,43.6615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.497,41.098],[1.701,41.083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.351,26.834],[-130,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.233625,38.927062],[15.10675,39.0245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.004,36.43175],[20.82746,36.416233]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.498,-23.712],[-126.344,-23.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.89025,65.97275],[12.311,65.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.9,52.6],[-180,62.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.079219,42.322922],[11.074531,42.170063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.081,36.465],[-71.457,36.644]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.832125,37.323375],[-10.413,37.18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.815,25.79],[-80.029,25.115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,14.786],[125.7,13.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.199,49.28],[-3.991312,49.086812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.001,12],[44.85475,12.05975],[44.67675,12.1335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.214438,52.812],[0.37425,52.78625],[0.361969,52.951855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94,6.7],[96.541,2.462],[99.9,-1.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.8245,40.5645],[18.546594,40.587594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.001,37.64],[-14.974,37.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3455,56.35825],[4.498375,56.226125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.236,37.491],[2.6785,37.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.118,19.73],[39.335,19.909]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.136,-2.703],[155.8,-5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.002,46.123],[-130.9255,45.6835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.765437,55.888125],[12.675594,55.955906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.133,22.009],[-68.048,20.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.34325,41.5275],[12.278,41.611],[12.14625,41.74625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50],[-19.743,49.727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.001,48.695],[-30,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.534,43.563],[-2.76175,43.48225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.8625,53.8025],[-5.839023,53.641422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.002,-35.004],[18,-35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.109,53.893562],[7.99075,53.869]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.8175,38.0295],[10.3385,37.811]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.45,23.96],[-91,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.858,36.624],[28.110809,36.492992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.497625,42.175156],[15.703383,42.106164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.81,39.197],[0.808375,38.9915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.412,-31.535],[50,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.013,64.135],[-0.977,63.336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.790438,43.889844],[28.7465,43.7345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-10],[-158.338,-8.371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.112977,51.465672],[1.424238,51.448891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.693,31.223],[-72.738,30.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.79275,39.80475],[10.032,39.59575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.188,-5.453],[116.95,-5.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.78125,49.274687],[-2.509375,49.419125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.16875,35.7475],[-8.524,35.762]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.5245,37.4895],[10.934,37.421]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.009,28.936],[-88.785,29.061],[-88.961,29.4405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.506812,58.233125],[10.368547,58.168937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.802,35.8925],[34.82225,35.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.305,51.776],[-152.843,51.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.57475,-7.0675],[125.289,-5.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.483,2.014],[78.816,2.468]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.224,63.021],[-19.994,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.3365,19.406],[-66.473875,19.311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.168,35.6615],[28.023,35.50875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.402,-32.612],[-44.758,-35.162]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.97275,-39.8775],[-52.887,-39.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.97,64.941],[39.513,64.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0245,39.307],[8.0275,39.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.551836,43.171375],[9.656719,43.130891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.146,55.546],[142.524,56.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.43,29.926],[129.584,28.732]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.341,53.5],[3.470094,53.916625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.235,42.608],[3.605375,42.797031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.181,59.334],[3.48175,59.2585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.189,48.601],[-6.349,48.593]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.973,18.043],[-78.14949,18.992057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.999,-25.847],[-26.396,-26.595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.127625,57.972062],[6.0195,57.9865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.509,57.7525],[8.545969,57.573281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.44575,40.680125],[2.2335,40.7045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.946148,53.088938],[1.137125,53.032375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.721453,36.648922],[14.635687,36.517281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.895,40.807],[28.934125,40.948875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.921,57.165],[5.073,57.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.891,5.908],[-51.901,5.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.653,44.706],[-60.217,45.284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.994,37.909],[-10.703,37.724]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.286,-10.031],[53.918,-6.021]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.439375,49.223875],[-4.217,49.290875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.33375,54.50225],[10.449,54.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.316,36.971],[-70.206,36.579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.109,59.2925],[22.192,59.395625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.615,-35.018],[-13.481,-33.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.194125,57.71575],[8.9415,57.48925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.914094,58.455031],[-2.950254,58.636547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.91,37.514],[-0.615,37.520812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.874,21.664],[-85.8755,21.836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.219125,57.452375],[8.3755,57.552844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.251,28.013],[-73.3,27.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.877,0.889],[-31.299,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.55325,55.665],[19.479,55.499781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.316,4.618],[113.689,5.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.71975,59.117234],[4.9735,58.866]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50.54],[-20.509,50.531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.08275,35.172062],[23.973812,35.072219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.891,51.818],[6.037,51.874]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.450672,36.049],[27.55675,36.341625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.12525,54.292687],[7.01775,54.861375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.297406,56.292187],[7.228313,56.164125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.4725,60.666],[20.15675,60.833875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.32925,56.925],[11.2215,56.872]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.117906,56.828844],[12.203125,56.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.618,39.27],[-68.792,39.181]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.642,51.476],[-5.815688,51.500125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.301,65.057],[22.47275,65.02225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.177156,44.91425],[14.237156,44.597531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.195,63.468],[20.4485,63.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.797738,38.21166],[25.754,38.101328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.305,61.097],[21.127313,61.156312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.9775,35.743469],[23.777125,35.745937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.514531,40.822406],[10.769813,40.779313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.94,36.957],[-0.240875,36.694375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.1715,62.37],[18.419,62.3635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.249,-8.7],[112.625,-21.598]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.764938,38.532688],[20.77275,38.6635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.934781,48.869406],[-4.009375,48.941063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.948,-24.552],[154.2435,-27.0115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.505,60.908],[1.901,60.737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.089,-20.029],[-10.796,-20.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.5045,60.4425],[28.344,60.48425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.394,64.981],[36.535,65.253]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.975875,36.46325],[12.8755,36.5355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.116,52.94475],[-0.016,52.968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.438375,36.958625],[12.33775,36.96975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.929,10.355],[-80,9.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.769,58.29175],[9.72325,58.458625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.882,73.669],[140.612,74.579],[142.493,74.519],[145.798,73.942],[149.71,72.881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.9215,63.047],[19.064016,63.151594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.169,-24.419],[-90,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.916555,64.593055],[-13.6875,64.6715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.45675,21.062],[-157.639563,21.207063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.2245,57.755],[24.3735,57.317]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.3495,34.09],[-15.638,35.281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.178625,43.549125],[15.151125,43.399875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.873,57.516],[20.02225,57.6885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.352844,36.565609],[-6.41675,36.40525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-112.56,16.222],[-112.949,17.193]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.544,0],[53.365,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.980187,39.279164],[23.104813,39.053531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.544,64.185],[-22.819,64.18525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.339625,55.3235],[4.18575,53.974]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.2795,16.1565],[-86.735,16.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.236125,36.335],[24.273031,36.518203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.644,58.291],[20.559313,58.235813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.439,27.184],[-94.492,26.931]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.106406,48.123625],[-5.136656,48.026813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.807,46.198],[36.755,45.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.083,39.467],[14.14625,39.548]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.716,71.27075],[20.9235,71.2085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.9595,35.5965],[35.063,35.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.511,40.82075],[1.432,40.712]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.001,-22.121],[0,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.385,35.05],[-74.1655,34.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.145,49.184],[-2.0645,49.09525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.6575,43.849969],[14.777938,43.697437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.806,-12.935],[-19.999,-14.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33,43],[33.5275,42.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.480375,54.814172],[18.51843,54.966344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.766,54.988],[18.253312,54.956063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-50],[-160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.434,50.0555],[-0.336625,49.931]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.164453,55.329266],[13.426,55.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.761375,52.509625],[-5.814641,52.630781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.126,-36.193],[162.469,-37.722]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.268039,57.791641],[10.058234,57.74757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.7,32.839],[-52.246,32.442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.126,34.283],[34.956,34.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.146799,56.664843],[-6.2475,56.7045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.22,37.771],[-12.059,37.67175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-172.539,47.582],[-173.038,47.179]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.9535,55.3335],[-5.833563,55.30441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.282619,35.947516],[-5.439953,35.9825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.269,-20.052],[-98.753,-20.017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,20],[-167.458,17.593]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.236625,54.069906],[8.096453,54.026688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.771062,57.953812],[8.89325,58.07875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.781094,50.894406],[0.768,50.744]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.04275,56.005125],[18.139,56.077],[18.23175,56.1155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.692,36.352],[-69.237,36.152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.7,35.9],[34.992,35.874]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.252,35.246],[-126.521,36.357]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,40],[-30.641,39.408]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89,28.8],[-89.184,28.543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.387391,55.698687],[7.438,55.55675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.5915,44.73925],[29.794,44.961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.62275,41.78625],[3.363,41.548]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.043,21.094],[-170,20.694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.148875,53.67825],[6.105906,53.503531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.511687,53.391188],[-5.474625,53.615375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.090375,44.612375],[13.341,44.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.766711,36.886488],[25.919828,36.942359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.809,36.103],[25.666,36.0145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.26625,38.835375],[8.454969,38.787375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.798937,43.722375],[-5.935922,43.688109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.832125,37.323375],[-11.1175,37.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.764,50.997],[-4.354328,51.25282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.0095,58.5025],[18.895,58.443]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.278859,40.599051],[14.235875,40.468812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.939625,43.833375],[14.046023,43.678289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.729563,37.785062],[11.7995,37.939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.166906,56.684656],[7.09175,56.89825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.44,33.877],[17.68,34.898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.584281,51.740625],[2.998203,51.880914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.167,35.406],[27.225375,35.544375],[27.252938,35.780312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.555438,56.672406],[11.732125,56.57975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.001,15.524],[-153.003,15.497]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.161125,53.778312],[6.148875,53.67825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.59,36.708375],[24.503,36.7755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.652,40.4765],[18.546594,40.587594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.85675,54.66875],[-8.77625,54.59675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.57025,39.951344],[24.5285,39.795219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,-5.057],[-127.463,-2.574]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.51,0.345],[-89.857,0.723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.36175,39.533281],[24.11875,39.6085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.061,25.219],[-177.578,27.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.921594,47.532438],[-5.0205,47.744]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.576,29.682],[32.689,29.726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.578,13.736],[42.498489,14.102685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.586,60.049],[25.577562,60.231437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.804,54.9775],[-5.76,54.841313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.384,53.792],[-162.56,54.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.635,23.853],[-150.001,26.106]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.794,56.6105],[11.042334,56.518523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.133,53.382],[5.2995,53.54075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172,-40.5],[173.9,-40.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.813,35.959],[14.820594,36.086266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.254,21.329],[-153.14,23.327]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.728,60.862],[-0.92,60.894]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.002,34.829],[-51.522,34.644],[-53.599,33.913]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.37675,45.8435],[-4.368,45.815],[-4.252,45.602],[-4.229,45.566],[-4.1455,45.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.203,37.918],[11.30575,37.711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.835,35.055],[-73.834,35.227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.699,-16.845],[-130,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.98918,37.466242],[25.123682,37.488928]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,30],[-146.104,34.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.362,45.074],[12.330063,45.226062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.459,62.7485],[19.479125,62.294875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.108,-48.335],[70.001,-48.29]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.922016,57.835414],[10.806719,57.722094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.299,17.579],[-67.928,18.4805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.605,29.627],[-150.021,29.222]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.921625,49.43825],[-3.069125,49.372]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.243688,39.123438],[2.4465,38.7015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.667,41.576],[-172.989,41.3],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.43,36.95325],[26.3595,36.848344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.604,42.415],[40.52775,42.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.346187,44.948625],[14.226801,45.103111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.472789,58.105783],[6.621906,58.036484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.209,49.577],[-0.964,49.666]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.54,43.763],[13.5725,43.9135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.898,50.123],[-30,50.116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.7055,54.5395],[10.544281,54.556969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.068,58.939625],[5.075875,58.753875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.989375,36.541062],[-3.253,36.435],[-3.36875,36.371844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72,-33],[-75.82,-36.568],[-80,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.379,-18.213],[167.886,-18.472]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.614,-35.249],[-56.162,-37.124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-101.61,68.499],[-106.278,69.002],[-109.882,68.46],[-113.178,68.38],[-113.529,68.701],[-122.995,70.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.929938,38.868688],[-9.83275,38.746875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.940734,54.140664],[7.990547,54.009406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.001,15.169],[-43.776,16.377]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.288656,40.061469],[12.213125,39.891875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.035234,49.205703],[-5.869625,49.220375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.1415,59.87675],[-1.214,59.5285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.752,8.531],[120.05,8.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.246187,40.040219],[5.097625,40.112875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.0165,41.837688],[9.876875,41.803938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.978375,38.415469],[9.8175,38.0295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.844,40.8305],[-10.296,42.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.674672,56.071289],[16.533219,55.99525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.839,16.706],[-166.898,17.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.39125,62.12425],[5.3005,62.2955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.5625,36.3595],[21.295,36.354]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.479688,36.063],[24.354469,35.785625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.671016,50.264617],[-4.715641,50.09257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.791,-10.5],[159.98525,-10.1215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.581,34.165],[-70.215,32.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.269625,51.369531],[-3.413312,51.341313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.954625,50.379375],[-2.093375,50.209563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.722,71.541],[20.327,71.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.861313,68.311375],[16.031,68.383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.109,53.893562],[8.060965,53.768402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.2275,43.113875],[10.439473,42.905105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.81575,57.98175],[-1.675188,58.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.659,-12.799],[-172.601951,-13.35449]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.391,48.358],[-6.323187,48.24875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.676,39.431],[14.388,39.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.9,53.37],[-137.211,57.723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.580313,52.89825],[1.671,52.849]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.174062,60.283125],[5.11575,60.165125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.045,44.772],[-9.385,46.758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.0485,54.216188],[11.760094,54.309625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.698,37.273],[3.786,37.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.369,1.108],[-1.744,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.495,36.984],[-12.424,37.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.05075,36.79025],[21.911,36.654],[21.765,36.649953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-10],[-140,-5.126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.8875,38.58575],[25.014125,38.51025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.231156,54.456891],[8.16725,54.30925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.432375,38.72425],[9.2345,38.78125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.868,39.294],[-73.78075,40.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.269,17.741],[-75.801,16.923]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.19,55.7165],[6.104,55.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.447,50.4765],[-16.22,50.038]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.927,54.366],[6.7685,54.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.754,50.708],[-11.239,50.819]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.26275,58.30375],[6.315875,58.167187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-50],[-89.997,-53.308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.867,58.992],[-1.9815,59.394]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.3625,51.608063],[1.424238,51.448891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.213461,41.962656],[16.347078,41.885453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.070766,41.926359],[10.826625,41.830687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.012,58.195375],[9.155938,58.25475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.543,12.755],[-137.254,12.874]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.12025,57.31275],[20.152469,57.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.009375,37.257469],[25.927406,37.128438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.994,60],[-17.703,57.824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.343,54.4975],[7.305438,54.271844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.328,65.7135],[-24.5125,65.51375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.415,-11.664],[80.001,-12.814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.949875,52.440313],[-10.09,52.4045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.266,-60],[-65.17,-56.0015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.90425,52.560187],[1.836,52.6515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.759,57.006],[19.9445,56.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.290781,49.913063],[-1.138,49.809625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.0035,-9.993],[163.78,-16.373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.6,26.3],[53.2145,26.3495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.250352,61.193086],[21.127313,61.156312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.452625,39.15675],[3.186125,39.03375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.307125,53.777125],[14.285,53.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.569,38.308],[2.4465,38.7015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.649,38.7205],[24.581,38.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.855,47.884],[-6.889,47.787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.477,-28.561],[169.996,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85,-35.386],[83.619,-33.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-118.145031,33.559938],[-120.609,32.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.301375,37.367719],[25.304328,37.265297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.7295,60.3865],[-63.426,60.948]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.44,56.748],[-6.449,56.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.001,33.408],[-19.9605,29.97825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.69,-0.688],[107.589,-1.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.801,58.44],[1.416,58.758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.122297,35.373719],[25.36775,35.442875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.894,42.96],[14.06625,42.97975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.096,75.489],[11.614,74.782]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.883625,52.02475],[-7.03975,51.93075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.384,56.611031],[-2.4465,56.7035],[-2.249,56.770875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.876,-12.079],[-130.003,-11.788]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.491938,40.297187],[-70.459,39.182]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.255,42.639],[39.454,43.436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.850938,58.455938],[9.974328,58.589453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.8505,41.296],[8.574344,41.261812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.695,52.042],[-6.943312,52.126937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.329,44.112],[-138.863,41.273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.444688,43.3345],[8.5545,43.327875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.863,41.273],[-139.833,40.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.12875,43.70425],[8.975734,43.784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.167375,59.504625],[20.278,59.40475],[20.426,59.304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.037,33.675],[14.748,35.8695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.4135,37.912625],[26.318219,37.858234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.584,28.732],[130.349,30.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.275625,57.603875],[8.219125,57.452375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.31425,36.45525],[14.635687,36.517281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.38,69.334],[16.32375,69.22475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.4,-10.003],[160,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.42375,68.5555],[16.138,68.498],[16.031,68.383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.269317,43.531904],[10.219016,43.358938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.368,59.012],[-0.177,59.329]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.17725,50.509],[-2.049,50.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.3965,42.89325],[17.688086,42.782715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.873,42.532],[10.919633,42.400891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.293,43.399],[-9.5,43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.575,50.60225],[-0.678891,50.605625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-13.081],[-130,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.565,18.505],[119.608,18.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.75,-55.43],[-47.353,-52.757]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.9,-36.25],[179.5,-37.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.9585,56.3915],[4.186,56.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.485867,57.924367],[7.65,57.634]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.176,17.498],[-87.909,17.142],[-87.562,17.333]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.572047,37.841047],[11.729563,37.785062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0165,-30],[160.001,-25.478]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.208188,41.559531],[12.34325,41.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.247,41.869],[-10.81,42.436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.3275,60.905],[20.778625,61.193875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.638,37.563],[-34.573,37.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.5145,5.516],[-13.566,7.596],[-13.817,7.846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.8645,36.1305],[21.973,36.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.498,61.246],[21.282656,61.290219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.830469,55.803406],[11.837977,55.960992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.415,25.571],[121.463,21.815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.663156,49.929469],[-4.8205,49.9535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.001,-28.244],[100.001,-26.396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.148,-21.216],[0,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.173,-3.8745],[-180,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.717,38.243125],[6.765,37.973]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.005,60.293],[3.91075,60.07075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.153719,59.551219],[23.064625,59.397875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.227,53.953],[-4.029,53.946],[-3.798375,53.92875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.1,-37.7],[150.184,-37.852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.082,7.348],[-84.9,9.2],[-86.604,10.022],[-86.808,11.109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.584,47.45],[-4.8205,47.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.675125,44.706625],[12.595,44.578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.295,-7.16],[0,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.235304,53.17],[-10.2,53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.097,39.386],[18.1965,39.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.9885,36.1685],[23.926188,36.072688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.023375,56.841187],[8.082187,56.717187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.685,26.28],[-86.8515,26.3215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.288,36.802],[10.451,36.87975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.89,37.416],[-14.37,37.359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.914687,43.390719],[10.025413,43.585063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.5935,56.277],[20.743063,56.151656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.698,37.273],[5.283,37.299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.214187,57.974],[9.373,57.90075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.176875,45.08725],[139.4,41.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.679,39.077],[9.61225,38.884687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.388,56.102],[-2.528125,56.24425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.968562,55.866688],[16.080562,55.967969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.522,58.133],[150.9,58.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.449,59.08475],[-1.9815,59.394]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.4,7.308],[68.961,5.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,30],[-169.125,29.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.329,44.112],[-134.7,43.486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.651,37.131],[2.838,37.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.33457,36.37425],[-2.1965,36.3785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.895,37.092],[3.2755,36.9965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.427,54.163],[-5.5835,53.9915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.385392,53.617587],[5.069,53.58]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.639578,40.049898],[25.782812,39.842437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.476965,55.890152],[10.511547,56.048703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.73557,57.980012],[10.922016,57.835414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-148.132,11.961],[-149.999,9.999]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.8825,37.213],[5.331,37.161]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.296,42.43],[-10.156,42.8315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.19,55.7165],[6.131,55.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.595469,42.98625],[7.605,42.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.126,27.642],[-63.095,28.362]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.652875,-23.02875],[168.546,-22.802]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0365,40.67025],[8.10375,40.953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.608,18.903],[120,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.926,37.622],[7.160969,37.739]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-148.9705,29.0905],[-149.082,29.133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,30],[-170.759,29.283]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.693,30.578],[-68.6695,30.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.429,64.9995],[23.0895,64.786]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.537,39.659],[1.291062,39.408125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.2955,39.6565],[23.511,39.481]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.672,49.652],[-10.59025,49.12975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.3135,33.346],[-75.4485,32.907]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.964,35.8595],[25.01475,35.73975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.776,19.353],[-66.661,19.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.118,61.178],[20.457,61.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.541,60.6],[-6.155,60.667]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.56925,37.25275],[11.392781,37.305688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.633555,61.056664],[18.233,60.818]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.081125,40.871],[17.907,41.014]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.024,38.332],[10.2875,38.2405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.80325,58.08],[6.730938,57.987078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.554317,37.691314],[-32.968,37.789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.05,44.9095],[12.857516,44.946891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.86325,38.5275],[7.614,38.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.132,55.093],[-6.914109,55.239125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.678086,37.380227],[24.514453,37.487023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.664,40.787],[28.895,40.807]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.22575,59.944875],[5.341,59.778]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.921125,44.238812],[8.763789,44.097516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.874,21.664],[-85.79,21.603]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.799,27.605],[-95.439,27.184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.224,50.139],[141.092,49.388]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.65,57.1585],[19.780969,57.144813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.87,42.1315],[7.644594,42.228906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.632,-36.222],[152.54,-34.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.547,55.37925],[16.536,55.581031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-30],[-95,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.827063,57.636688],[21.059781,57.520688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.967812,50.461156],[1.189,50.5685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.762,24.561],[-19.939,22.492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.9925,43.809],[-2.95,44.354],[-2.92475,44.6545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.5325,52.837],[141.73,54.128]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.439,44.294],[15.276,44.342]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.436,53.898],[-36.736,53.808]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.539695,36.797211],[23.61075,37.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.777938,43.697437],[14.675906,43.631531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.930719,57.919812],[7.956,57.643]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.0965,-9.3795],[110.249,-8.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.033,57.903],[3.146,57.054]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.544219,51.431562],[1.835754,51.295676]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.598375,42.457594],[15.779031,42.454313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.9,58.7],[154.489,54.771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.929,62.879],[6.835,62.93875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.782,-6.598],[-80.967,-6.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.598,48.155],[-4.740406,48.163031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.674,38.232],[2.6785,37.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.203,28.276],[-15.384313,28.145375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.126,69.493],[14.256,69.516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.9135,57.7845],[-8.116,57.615],[-8.106,56.746],[-7.662,56.487]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.221,64.847],[10.358,66.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.50275,51.828812],[2.379469,51.685312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.055,14.512],[-82.7,14.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,13.366],[-30,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.991219,54.888781],[17.665,54.887]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,25.337],[120,25.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-16.177,41.207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.454,57.7895],[20.559313,58.235813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.345,54.925],[5.373,55.1015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,9.752],[-79.922,9.364375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.633469,50.502023],[-1.582625,50.663031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.872156,50.465688],[-0.750258,50.333555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.109,45.405],[-41.659,48.508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.28375,36.7175],[26.3595,36.848344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.744,36.738],[-73.6255,36.501]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.301,60.082],[-54.099,56.721],[-52.262,53.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.053875,58.408],[-3.0805,58.149]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.708469,53.284531],[0.946148,53.088938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-116.174,28.007],[-116,27.5],[-111.007,22.311],[-109.833,21.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.9785,39.00525],[-29.041,38.4495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.88425,40.489875],[-10.844,40.8305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.941,39.132],[150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.698188,54.519414],[-3.603,54.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.109,-45.405],[50,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.346,29.023],[-86.504,28.339]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.485867,57.924367],[7.180867,57.926906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.616,48.445],[154.651,47.251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178.61,27.897],[-178.5,28.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.999,29.199],[-78.24,28.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.058125,55.827438],[18.14,55.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.3625,61.832125],[20.018937,62.395094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.7155,39.0235],[24.006,38.944625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.60025,55.279375],[17.743,55.188],[17.994,55.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.503,58.565],[18.706937,58.325312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.822,56.639],[12.438195,56.321961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.131,55.9],[6.395,56.181]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.95,47.109],[-4.9975,46.991]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.932937,43.948188],[12.761,43.9825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.777,42.899],[28.92125,42.846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.3,46.1],[-60.68,45.541]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.511625,37.280813],[12.537016,37.42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.001,-27.124],[2.015,-28.169]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.644594,42.228906],[7.593,42.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.783125,59.925],[22.863,60.106],[22.873,60.156],[22.945,60.257],[23.013,60.302],[23.056,60.353],[23.085,60.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.3155,41.3365],[11.145109,41.333125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.602,-9.404],[7.408,-9.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.014422,42.730695],[9.941361,42.586406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.002,57.344],[-20.002,57.553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.988,55.7395],[4.191,55.453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.317,58.217],[18.145,58.324]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.647,57.784],[-6.782594,57.578156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.127031,57.969063],[11.07675,57.820687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.13752,37.961805],[12.034,37.8625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.470594,51.9315],[1.64525,51.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.8595,43.1855],[4.159,43.236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.704461,43.254555],[9.6795,43.3735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.638312,54.561875],[7.4405,54.452125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.322,29.443],[-15.1645,28.827]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.048098,37.050152],[25.316312,36.979156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,62.1],[-177.304,62.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.619062,-14.248125],[-170.597,-14.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.859422,56.530578],[20.836,56.362]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.245,56.368],[1.744,56.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.082625,36.22475],[23.193945,36.375039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.318812,54.628844],[10.319777,54.745898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.389,35.834],[27.585375,35.853125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.989438,54.608937],[-4.778,54.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.2005,40.8345],[25.382375,40.479094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.460875,55.291625],[19.16675,54.982062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.445,54.887],[16.979188,54.837812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.419602,53.471922],[0.708469,53.284531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.41125,37.695766],[23.556875,37.612313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.736,50.477],[-10.887,50.254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.025,34.514],[34.886,34.514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.630656,46.091781],[-1.4055,45.753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.12,10.2195],[104.9,8.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.038,56.485],[-11.893,58.392375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.657,36.236],[-4.86125,36.14225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.176,25.627],[-91,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.391,18.718],[-76.2815,18.7005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.545,41.648],[-145.448,42.072]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.10475,38.886125],[26.014492,39.010125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.391625,58.22625],[8.330156,58.098406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.081,61.929],[5.256,61.833],[4.96575,61.68225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.329156,49.909594],[-4.3895,49.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.99925,40.55275],[4.678,40.29425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.763,41.146],[11.7015,41.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.038,41.22],[2.142937,41.267531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.498,13.5],[-61.537,14.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.743,70.599],[17.261,70.047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.741,10.545],[-17.007375,11.029125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.667,39.105],[18.7675,39.536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.988,55.7395],[4.023,56.034]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.006125,36.64475],[23.901047,36.726672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.193188,39.587438],[18.7885,39.774062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.372,32.409],[22,33.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.819,24.432],[-164.245,25.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.205,39.54],[1.153,39.449313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.3035,37.0535],[21.162,36.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.472,28.476],[-91.815,27.897]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.824,26.564],[-85.784,27.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.054,-26.21],[169.996,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.13,-13.244],[177.3165,-10.549]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.954,56.342],[-1.881813,56.794063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.149,-45.637],[-50,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.192,-35.583],[110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.184,59.405],[20.5635,59.075375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.757,61.6395],[20.96575,61.44125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.314,19.914],[119.667,19.443]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.601182,53.622092],[6.478,53.647]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.365,-14.374],[5.878,-14.821]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.079219,42.322922],[11.062148,42.430477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.978375,38.415469],[8.61725,37.91525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.282619,35.947516],[-5.282375,36.112375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.715,-14.445],[-140,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.55,-36.509],[155.568,-36.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.073,58.731],[-158.741,57.932]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.435813,51.826078],[-5.56875,51.8795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.39725,43.766875],[8.497633,43.934609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.06075,52.44525],[4.118875,52.629625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.714344,39.443875],[0.641625,39.316125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.007,61.559],[18.604,61.583]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.634,48.102],[-4.798641,48.058188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.279844,49.687828],[-3.13575,49.6995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.27325,36.578],[14.1195,36.57825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.16525,42.1755],[4.887,42.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.521,6.37],[-97.481,10.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.8,24.7],[54.463,25.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.136,39.0995],[25.825812,39.271125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.886,38.627],[118.99,38.729]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.03875,38.08375],[11.14275,38.0085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.374,-6.837],[178.176,-7.0755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.396,-26.595],[-28.168,-28.269]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.825,16.97],[160,17.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.18075,37.855125],[23.336,37.859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-10],[-117.177,-7.228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.976,35.423],[124.177,34.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.682,-24.21],[156.042,-19.177]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.61925,63.4275],[20.76475,63.2915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.55,7.306],[-90.812,8.98]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.211,54.574],[0.486,54.257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.4195,37.4735],[7.5,37.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.825219,48.522094],[-5.968813,48.644281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-20,39.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.08,38.581],[-9.822688,38.526875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.184,63.31175],[19.064016,63.151594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.977379,55.011469],[10.854008,54.863625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.246,-15.2785],[173.162,-14.028]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-103.665,13.916],[-110.001,15.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.777687,60.865812],[19.744563,60.670875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.89625,42.18725],[15.04525,42.33075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.471,50.184],[-10.603,50.673]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.893,54.711],[2.32,55.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.125063,56.87325],[-7.051,57.140375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.587,34.509],[26.656,34.712]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.632,62.734],[-29.239,63.134]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.786,38.898],[26.676,38.936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.128,42.440875],[28.439,43.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.41625,43.609],[8.409,43.479]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.8,-32.2],[-54.614,-35.249]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.488,34.2305],[19.372,32.409]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.181625,55.249875],[17.1385,55.134]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.23925,49.463688],[-4.12475,49.33025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.1295,50.296469],[-0.972328,50.363828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[112.047,16.953],[111.831,16.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.339375,41.356375],[10.499,41.42925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.737,-20.376],[110.6085,-22.90075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.038,55.518],[20.559312,55.7235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.17,58.304],[21.052625,58.21275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.618891,55.258641],[13.37375,55.03225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.537,41.41475],[16.622687,41.567281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.251,-26.294],[-42.258,-27.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.318,48.93],[-24.15575,46.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.981,-43.182],[85.111,-45.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.835344,40.158781],[18.493688,40.443703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.35825,41.65725],[8.289531,41.935969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[102.893,1.498],[102,2],[100.922,2.927]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.3,27.331],[-73.3325,26.57925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.289,43.92],[-12.767,42.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.538,39.424],[131.773,42.119]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.91425,62.432375],[5.6555,62.5285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.6315,-51.4805],[-50,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.252938,35.780312],[27.31343,36.005234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.2315,55.50075],[7.0165,55.547187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.248,19.455],[-66.3365,19.406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.57375,41.32575],[5.062375,41.7515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.1185,55],[17.648,55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.121,32.349],[-71.294,31.627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.975,60.082],[21.088938,59.994812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.592562,39.30025],[19.79725,39.287688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.625,36.883],[15.436141,36.939063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.458,42.625],[-25.565,41.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.458,39.335],[19.531,39.168125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.878,2.918],[-41.486,2.063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.595,64.684],[39.513,64.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.318,52.727],[5.642,52.824],[5.325,52.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.286,57.876],[-0.4905,57.77225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.376562,41.400156],[16.61325,41.319875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.498375,56.226125],[4.339625,55.3235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.608,57.6625],[17.626312,57.555813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.474734,41.922687],[16.388719,42.002531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.380375,49.082875],[-5.42959,48.744031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.120004,55.848078],[16.246688,55.863188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.848,37.221],[-69.88,37.096]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.864688,49.751],[-5.909195,49.889227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.698,34.533],[139.9,34.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.3335,59.098],[-1.4245,58.776875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.002,53.5],[2.451,53.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.768125,36.398812],[26.72025,36.530187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.995,1.02],[-39.296,0.714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.7155,36.6275],[-2.51025,36.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.6575,54.4065],[19.678,54.36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.45725,42.572],[5.352,42.5495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.48,33.946],[28.159,34.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.781,34.445],[26.015,34.517]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.853578,50.114625],[-4.986512,49.982141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12,66],[11.363,66.053]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.21975,42.249031],[11.079219,42.322922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.194625,39.246],[2.76175,39.108]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.969,38.037],[-71.235,37.881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.531,37.119],[-8.2365,36.945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.218484,54.489812],[10.449,54.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.253,-26.235],[163.979,-24.218]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.438,55.55675],[7.334852,55.396055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.969938,55.804187],[-2.0355,55.905625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.593,56.37775],[7.613766,56.199719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.811,50.831],[-0.837,50.806],[-0.978195,50.7655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.668,29.132],[-94.4035,29.139]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.54275,51.68125],[-2.726656,51.531188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.22575,59.944875],[5.135,60.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.204687,50.567141],[0.612,50.776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.632,-35.036],[-19.998,-35.024]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.288,35.615],[23.21,35.3955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,21.289],[-151.254,21.329]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.197,68.198],[13.373,68.257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.959625,43.261375],[5.294531,43.294875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.665,26.3255],[-76.808,26.131]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.309,0],[-160,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.14,70.7125],[-144.071,71.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.107,36.229],[-70.136,36.117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.41125,37.695766],[23.62393,37.715352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.703,-39.613],[147.304,-39.286]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3195,54.033],[4.781,54.478]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.214,29.13],[-92.472,28.476]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.333,38.83],[-72.491,38.968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.1325,58.114875],[9.992,58.00925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.482734,66.103766],[-18.393469,66.001937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.035,34.801],[23.505,34.7635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.780188,57.689125],[16.907,57.73575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.485,41.662],[5.565,41.439]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.672,10.4],[-99.96,12.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.89175,41.38325],[-8.98075,41.019875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.197,58.321],[17.47,58.224375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.723,52.764],[-5.7605,52.923]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.056984,39.46143],[25.9265,39.5015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.18175,61.662],[4.1,62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.382613,43.609586],[7.600777,43.526945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.033859,37.086859],[27.001625,37.213]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.002,-35.01],[4.606,-35.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.865,46.9165],[-2.713891,46.962469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.372797,56.478781],[7.570156,56.535844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.668,37.28875],[11.565,37.376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.06775,36.97475],[3.115,36.822],[3.2755,36.9965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.0795,53.285],[1.244,53.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.485594,54.052188],[14.772875,54.1965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.972,56.678],[-152,57.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.713891,46.962469],[-2.829,46.8045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.255437,39.833188],[25.317922,39.711375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.728156,51.331844],[2.809,51.62975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.741,45.37175],[12.446938,45.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.688086,42.782715],[17.55,42.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.923344,58.151258],[10.782141,58.092062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.36,61.113],[17.363469,61.229141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.338219,44.012188],[9.584484,43.894141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.237156,44.597531],[13.99175,44.65725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.568,61.81275],[-6.303,60.933]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.903,38.962],[7.741,38.922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.313,63.932],[-167.009,63.631],[-167.36,63.148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.277,37.303],[-75.96,36.949]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.619,41.455],[160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.752141,57.860664],[10.806719,57.722094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.615795,59.285332],[10.559875,59.018375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.958,59.10825],[21.822125,59.054375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.933,41.615],[16.3005,41.716375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.497555,58.616561],[10.633281,58.488969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.867687,41.646563],[11.01,41.599]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.038,19.012],[-66.215812,18.676063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.352,11.99],[-82.7,14.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.147,50.444],[0.204687,50.567141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.68825,57.74475],[19.7785,57.6795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.982,25.237],[-86.468,23.178]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.622,26.141],[51.6,26.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-40],[85,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.17725,39.645],[13.92475,39.760375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.381,37.076],[-10.25825,37.08725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.255,-32.224],[-51.8,-32.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.356812,60.36925],[21.464687,60.453016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.658,-24.543],[-72.8,-29.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.059781,57.520688],[21.20325,57.5165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.97,64.941],[39.5555,65.454]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.006,38.944625],[24.122578,38.783789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.582,10.026],[-141.065,8.956]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.488188,42.670313],[15.416125,42.770187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.017062,51.85325],[3.996438,52.000344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.5545,56.932375],[11.700969,57.004469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.771,55.325],[-7.102,55.371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.153,61.039],[3.87,60.953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.952,33.609],[131.839,33.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.787297,57.902203],[18.96175,58.00575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.699375,55.280125],[9.807994,55.276076]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.315,37.2935],[-11.1175,37.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.5,18],[-99.91,15.629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,50],[-150.308,51.268]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.82375,38.788313],[8.90025,38.70575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-112.56,16.222],[-113.663,16.489]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.82375,38.36125],[-72.002125,38.15475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.0705,49.00275],[-8.72,49.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,-5.057],[-135.762,-4.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.7395,48.4325],[-122.828,48.193]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.060996,39.812531],[25.181562,39.72475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.437883,36.621586],[27.5875,36.584],[27.848625,36.501473]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.155938,58.25475],[9.44075,58.222]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.108,20.499],[-157.45675,21.062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.548821,36.637965],[26.3885,36.671],[26.28375,36.7175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.7785,59.9485],[24.898484,60.112219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.78675,43.472062],[-3.76282,43.569477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.986687,49.76425],[-6.134,49.447]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.922,57.675312],[8.66275,57.729375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.477141,44.123984],[13.66225,44.06325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.559875,38.549625],[14.362,38.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.641,28.936],[-74.792,28.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.824,36.671],[-74.435,36.158]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.3545,60.796],[18.557,60.827]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.179625,44.06],[14.386258,43.984094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.964926,55.675785],[-4.908125,55.91075],[-4.7935,55.977],[-4.461,55.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.478,23.834],[-85.695,21.942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.8,3.7],[113.689,5.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.1755,55.115625],[15.269281,55.231125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.495,57.79],[-7.104,58.299],[-6.0265,58.6295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.7145,48.721],[-4.551687,48.709125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.416,45.302],[14.341164,45.222477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.005,12.795],[44.962,12.804],[45.001,12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.312141,42.964672],[16.22367,42.828633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.78875,41.56925],[17.561063,41.506625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.411613,43.265967],[16.462125,43.14575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.354,56.495],[-30,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.46,8.077],[120.752,8.531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.607,20.303],[108.812,21.501]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.372,39.493],[17.179248,40.13094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.64625,49.77825],[-5.593,49.552]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.491938,40.297187],[-69.468,40.492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.327,65.004],[22.779875,65.187375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.344,38.667],[26.2925,38.478]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.901,60.737],[0.57,60.568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.079625,54.454125],[14.10525,54.3485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.614,-35.249],[-51.625,-38.322]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.551172,50.742578],[-0.291312,50.692563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.639,50.8105],[-5.677,50.6645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.248,19.455],[-66.26575,19.25825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.723,26.778],[-77.085,25.8165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.630656,46.091781],[-1.654,45.829]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.693234,55.11175],[9.699375,55.280125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.48,32.124],[-80.029,31.681],[-80.1175,30.3905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.577,69.897],[33.589,70.412]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.579,39.815],[17.164406,40.368625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.88625,40.770875],[-8.8425,40.9385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.928,46.526],[-2.37125,46.746781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.999,16.139],[69.999,13.766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.254,-16.799],[-149.682125,-17.353625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174,-37],[169.311,-38.168]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.3985,38.24725],[-0.092625,38.133375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.837,5.12],[172.864,1.391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.178896,54.620967],[10.319777,54.745898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.1755,51.3055],[-10.311,51.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.001,41.749],[-160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.305,51.776],[-156.384,53.792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.956,57.643],[8.059094,57.563531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.681,34.719],[33.819,34.539375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.004258,44.008082],[9.8625,43.9005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.341961,39.129945],[25.468312,39.035625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.01875,54.0905],[0.074,53.873]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.168426,40.741285],[14.278859,40.599051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.793625,54.122],[5.666,54.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.561063,41.506625],[17.38325,41.431125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.32,41.223],[17.271711,41.397918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.369,50.739],[-139.807,50.592]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.0055,-34.501],[26.107,-34.543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.84525,63.1775],[19.9425,63.208]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.678891,50.605625],[-0.803031,50.648687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.358,36.619],[-10.074,36.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.059,0],[-150,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.51875,51.3205],[-9.506,51.353],[-9.262,51.404],[-9.249,51.407]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.79575,50.55075],[-0.920531,50.60275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.914687,43.390719],[9.877375,43.491312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3385,38.962],[4.7045,38.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.166625,57.291313],[8.247625,57.206937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.001375,61.586],[4.96575,61.68225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.4075,58.2605],[6.315875,58.167187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.914562,56.956187],[17.973375,56.86475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,9.752],[-75.938,11.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.215,-32.111],[100,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.027188,56.479687],[11.9955,56.304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.74725,39.38525],[13.970688,39.329062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.584484,43.894141],[9.661094,43.761875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.3275,60.905],[20.832812,60.783469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.782141,58.092062],[10.73557,57.980012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.86,52.696],[2.861125,52.4445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.37,-2.623],[-103.444,-1.851]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.61675,36.92625],[23.539695,36.797211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.043,38.1465],[25.899906,38.140844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.8925,56.96425],[7.868266,56.714313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.581445,37.077711],[12.916,36.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.879,29.385],[-77.999,29.199]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9175,43.7535],[10.025413,43.585063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.303,48.835],[-2.567,49.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.316,13.76],[-67.68,14.047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.145375,36.8225],[18.355,36.747]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.015,64.642],[23.847875,64.741625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.038,41.262],[5.05,40.689]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.442625,37.017625],[23.61075,37.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.0695,50.406],[-1.954625,50.379375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.429,19.825],[120,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.949,10.461],[-79.929,10.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,13.964],[126.4,10.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.301,11.6],[51.001,13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178.5,28.5],[-178.683,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.767,35.814],[-8.16875,35.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.625,12.488],[-61.8895,12.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.253,58.617],[16.303,58.63],[16.312,58.634],[16.406,58.648],[16.7785,58.614]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.583625,50.356625],[-1.48575,50.30325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.79,42.96775],[6.583,42.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0165,-30],[163.253,-26.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.026969,56.404344],[16.82525,56.18975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,30],[136.644,30.428]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,0],[-100,3.288]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.093,7.111],[166.257,7.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89,28.8],[-88.855,28.698]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.26175,64.9965],[-23.381625,64.986375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.921594,47.532438],[-4.847859,47.767328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.514,-16.306],[145.86,-16.1785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30,-50],[40,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.524,35.762],[-8.687,35.751]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.79,42.96775],[6.899,42.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.3005,38.593],[-27.526,38.458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.636,34.76],[25.236,34.693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.5,-47],[170,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.053812,57.174594],[20.152469,57.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.869,55.048],[6.704,55.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.325,21.041],[-92.7515,22.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.5395,58.664],[-3.6875,58.7155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.379,-18.213],[163.7,-19.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.911102,41.74726],[12.011,41.602594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.296,34.725],[-21.833,34.22],[-21.534,33.533]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.862,28.766],[-70,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.102156,62.571313],[18.1715,62.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.853,25.867],[-85.8335,26.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.2,19.619],[112.047,16.953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.563,44.837],[-0.721,45.17],[-0.798,45.351],[-0.892,45.444],[-1.049578,45.593297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.454,-3.189],[118.019,-2.681]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.825,24.219],[-79.634,23.534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.524,56.83],[143.219,59.197]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.061,25.219],[-176.861,23.327]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.025,31.186],[-61.32,30.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.794937,36.143187],[24.845813,36.259187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3255,52.5075],[4.223375,52.521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.126158,54.943963],[10.193465,54.806707]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-93.011,75.159],[-93.106,74.549],[-92.686,74.342]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.416,35.98],[23.356,35.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.806,35.6935],[-12.8725,35.468]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.97125,40.524],[24.091,40.569]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.798,-7.164],[172.616,-0.647]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.067937,41.153672],[11.145109,41.333125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.80325,58.08],[6.621906,58.036484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.196727,40.064031],[25.639578,40.049898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.075875,41.67475],[17.161313,41.523086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.526,41.952],[3.8555,42.056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.751,58.8205],[-2.950254,58.636547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.625875,44.79225],[14.639375,44.56475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.78925,42.880656],[-9.5,43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.786,31.734],[-10.789,32.746]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.02075,45.27675],[-4.129844,45.311562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.839,35.4985],[34.9595,35.5965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.888,30.351],[-78.114,29.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.181,58.8705],[23.382625,58.650625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-30],[-105,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.005,52.8665],[2.2465,52.74075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.1,43.8],[-3.09,43.692]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.357,34.734],[35.292,34.513]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,30],[157.015,33.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.665,-5.005],[125.787,-5.049]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,50],[-161.84,51.749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.25175,38.560375],[10.01,38.6185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.415844,40.292906],[24.472578,40.184711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.37,38.242],[22.631336,38.342301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.634375,55.140125],[15.749422,54.994109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.78075,40.069],[-73.028,39.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.90925,48.273438],[-4.852625,48.384375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.546,-22.802],[170.676,-22.281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.471,40.313],[10.2125,39.9575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.278492,57.636105],[11.470937,57.634844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.702,16.359],[-158.794,15.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.746,-43.645],[75.111,-45.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.501,66.334],[-14,65.9755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.706,63.03],[-4.013,64.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.439219,42.239266],[16.49875,42.108125],[16.627875,42.037047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-50],[-34.915,-55.068]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.77275,56.177375],[10.952836,56.35907]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.2125,64.65175],[24.369,64.658]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.0645,49.09525],[-1.949625,49.013875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.410563,39.767125],[19.1475,40.1945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.697,13.947],[-145.851,14.306]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.5,27.001],[34.223,27.333]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.17,53.213],[-9.352937,53.182125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.11625,58.3085],[0.483,58.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.684125,38.549875],[14.835,38.68175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.782,-10.031],[90,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.892469,49.848457],[-1.991812,49.876688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.999,-33.263],[-29.999,-33.147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.407,20.35],[-67.674,19.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.337141,55.427813],[15.153191,55.347656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.873703,39.856859],[19.513125,39.796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.668891,37.886359],[24.613969,37.726234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.271555,41.142922],[2.15525,41.04325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.895656,56.986219],[11.756,57.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.1235,54.886125],[-1.197555,54.799437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,20],[-180,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,20],[-180,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.074,36.89],[-10.34275,36.946375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.432,28.92],[-83.382,27.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.992625,52.17175],[3.885035,52.111375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.591,34.649],[20.229,34.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.224,38.632],[26.2925,38.478]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.175,74.468],[-19.24,70.804]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.01275,63.1935],[20.906,63.252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.0475,40.32075],[24.822,40.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.5,-33.5],[32,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.1385,55.134],[17.1185,55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.865,45.3925],[-4.02075,45.27675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.2095,45.552375],[13.323148,45.536664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.21775,58.104625],[-6.023,58.121]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.7595,38.7865],[10.155,38.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.0645,49.09525],[-2.307953,49.198984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.787547,54.365617],[13.848451,54.48759]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.765,37.973],[6.816375,37.652375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.9955,37.929],[-27.112,37.928]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.592,-11.504],[152.698,-13.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.330063,45.226062],[12.446938,45.363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.002,46.123],[-129.992,46.22925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.597,65.206],[23.627875,65.098062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.561875,54.698719],[-3.723,54.659]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.387391,55.698687],[7.3555,55.53825],[7.334852,55.396055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.192,35.917],[-8.5355,35.9135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.57275,37.6575],[-10.604,37.794]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.766063,51.692312],[-8.070594,51.584297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.332,61.1705],[18.158125,61.129375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.435,36.158],[-74.831,35.7905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.819687,55.97925],[16.080562,55.967969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.77925,54.7095],[19.627875,54.857813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.698,44.061],[-5.698,43.879]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.88575,39.7225],[26.196727,40.064031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.554,36.768],[-7.301,36.759]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.903,38.129],[10.136,38.053]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.6,40.1205],[12.4675,40.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.584,36.214],[-20.001,36.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.597,-14.415],[-165.186,-15.188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.717,38.243125],[7.160969,37.739]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.920531,50.60275],[-0.978195,50.7655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174,-37],[167.46,-36.56]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70,30],[-70.592,30.034]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.118,53.17],[-10.235304,53.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.896,30.975],[-142.772,30.052]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.563477,50.067563],[-2.444969,50.004984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[92.978,10.139],[94.681,8.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.264,36.18875],[-3.113,35.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,20],[167.48325,19.464875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.714,36.223],[24.794937,36.143187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.129,40.142],[25.0475,40.32075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.8335,47.7205],[-3.937,47.7505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.232875,42.6225],[17.187687,42.506812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.559,56.855],[17.649,56.724]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.041,38.824],[13.67125,38.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.347,30.087],[-50,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.787,35.6945],[-4.66925,35.99725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.95,-5.4],[113.959,-4.539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.944187,63.182125],[18.9215,63.047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.848,58.285],[9.012,58.195375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.53,50.548],[-16.723,50.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.417,25.583],[54.463,25.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.709,69.949],[16.2055,69.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.925,48.325],[160.281,48.041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.02025,49.165],[-5.223219,49.133437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.87375,39.907],[13.92475,39.760375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.739,40.644],[4.845,41.2535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-50],[-80.716,-50.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,25.277],[-146.072,26.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.5675,40.79],[8.015125,40.298375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.654,35.267],[-8.997,35.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-4.462],[-110,-3.168]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.1525,61.9975],[18.117,61.83175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.721453,36.648922],[14.920156,36.622395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.875,41.001],[3.665,40.72475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.85,3.898],[-165.309,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.341328,54.389234],[11.502969,54.491469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.7155,41.115],[17.768,41.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.186,-15.188],[-165.085,-15.086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.5435,40.9],[3.369875,40.806375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.787,-5.049],[125.321,-4.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.647125,58.605219],[17.498,58.46775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.42,-9.431],[163.301,-10.024]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.095,42.752],[7.111,42.624]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.664,46.283],[-2.6475,46.1675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.965,-55.315],[-64.181,-55.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.777,35.7],[-74.457625,35.79275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.56,65.936],[-14.501,66.334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.42825,60.5685],[28.554,60.614],[28.742,60.716]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.474,41.073],[-71.5945,40.452]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.23,-4.631],[125.1,-3.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.127313,61.156312],[20.973,60.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.583875,39.728437],[4.641,40.081]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.536,55.581031],[16.764375,55.57025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.30725,42.94575],[10.015738,42.886645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.707,31.671],[31.6185,31.8515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.90625,56.33675],[16.807,56.313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.076406,56.69125],[11.042334,56.518523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.683,59.898],[2.6205,59.586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.900125,41.061937],[9.92275,40.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.612,50.776],[0.781094,50.894406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.75625,39.75375],[23.561,39.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.105,14.132],[-69.297,13.889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.172,35.80525],[23.3265,35.767125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.155,29.047],[48.3045,29.107]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.448,40.61],[-70.146,40.743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.273,22.218],[-86.165375,22.086781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.153,61.039],[4.1595,60.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.8105,39.4265],[1.6795,39.3255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.718538,41.717609],[28.632375,41.82],[28.474,41.991]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.785,53.172],[-10.118,53.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.994,29.62],[-92.133,29.39],[-91.851,28.666]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.866594,58.323113],[5.780375,58.159937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.9055,43.753],[14.88932,43.614086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.3395,57.45825],[7.457375,57.510875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.62,47.1905],[-2.4565,47.093312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[151.5,-34],[152.376,-34.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.492328,50.412828],[-0.604,50.460875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.711118,37.566561],[23.839531,37.626]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.530312,50.3175],[-3.415,50.202875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.143,39.667],[10.136688,39.241187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.786625,60.099375],[4.82775,59.78625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.528313,41.390375],[12.292844,41.374625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.9635,40.332],[-8.9565,40.45625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.5035,55.045875],[11.3995,55.043813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.41,29.076],[-89.3515,29.281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.564063,57.590063],[11.654469,57.646875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.522,34.5055],[35.292,34.513]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.67675,36.54525],[34.689,36.3035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.422781,38.184656],[13.456188,38.359125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.806,52.786],[-5.107781,52.790656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.436141,36.939063],[15.355092,37.062154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.242,64.142],[7.3775,63.4075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.05,40.689],[5.408,40.741]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.445,15.645],[54.187,14.031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.201,43.211812],[16.221594,43.099391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.12,64.759],[9.221,64.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.794,50.373],[-162.106,48.106]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.334934,44.560594],[14.237156,44.597531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.452469,43.254219],[9.427875,43.411812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.0275,66.2495],[-18.91425,66.23075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.643,-16.635],[153.748,-13.127]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-10],[-136.076,-6.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.33375,54.50225],[10.605,54.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.661375,54.568625],[-0.3325,54.337]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-10],[-11.324,-11.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.132344,36.812094],[23.988875,36.801625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,10],[-108.98,10.008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.695875,57.140875],[17.784,57.023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.246,41.615],[-11.247,41.869]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.4,15.565],[-145,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.9375,55.80975],[17.518,55.583]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.197,58.266],[-40,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.9155,40.18075],[-9.296,39.821]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.001,31.604],[-40,30.806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.49425,60.75125],[4.1825,60.43825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.002,35.697],[-143.235,33.517]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.542,41.8305],[8.432875,41.806375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.984,50.0715],[-7.676,49.827437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.987375,59.541],[20.0445,59.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.67,42.205],[-127.424,42.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.440312,43.648844],[14.331375,43.614375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.17475,40.54075],[8.09725,40.44025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.198,-28.298],[-10,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.0805,48.083],[-5.825219,48.522094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.395,27.951],[131.543,30.214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.960125,48.668156],[-4.9995,48.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.211062,40.02175],[23.207,39.906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.834,39.231],[-30.131,38.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.272,57.368],[-6.993375,57.26875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.5025,36.40275],[-3.6365,36.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.009,20.803],[-69.133,22.009]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.5935,54.1315],[-3.488,54.082],[-3.333215,53.965777]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.523,-26.761],[0.001,-25.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.18325,57.69425],[-1.0765,57.837]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.8555,56.905],[-1.801,57.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.14,57.671],[24.0165,57.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.143062,54.089687],[10.943109,54.001172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.021656,36.719547],[-7.253,36.829]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.207812,40.832594],[13.145797,41.031211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.1845,55.0125],[14.151875,54.729875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.494438,53.131156],[4.242,52.804125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-17.453],[-105.82,-14.338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.763016,37.420797],[26.656375,37.4955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.458,17.593],[-167.208,17.349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-30],[70.001,-25.809]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.267,25.591],[34.917,25.486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.6,24.3],[64.14,22.908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.505937,59.709625],[24.356008,59.773688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.2235,40.382],[-11.1625,40.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.574,59.042],[-167.643,58.368]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-116.621,13.52],[-120.001,13.894]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.386,35.691],[16.085,36.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.941,39.132],[152.227,39.637],[154.056,40.087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.667,56],[-165.253,56.508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.617687,65.598187],[-13.55,65.4755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.8925,52.521],[-5.814641,52.630781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.224,35.846],[14.008,35.948563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.482,-8.1005],[44.979,-8.278]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.746,70.023],[-179.447,69.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.709937,38.299813],[21.436344,38.320094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.0435,43.469406],[9.914687,43.390719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.518625,38.61025],[8.66075,38.5265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.882875,43.808],[-7.37575,43.98975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.514,26.476],[-76.665,26.3255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.286,44.877],[-154.335,44.621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.39775,57.53725],[19.554,57.3935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.6,-46],[160,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.6995,57.301],[8.801,57.324]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.883,58.186],[-1.81575,57.98175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.248781,52.253125],[-6.279813,52.145188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.248,40.4505],[3.764,40.314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.992,53.419],[6.105906,53.503531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.64175,57.707063],[9.54475,57.600625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.36825,65.797],[-20.297,65.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.622875,53.805125],[-3.798375,53.92875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.749937,51.477312],[-4.145,51.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.081,65.757],[-21.234,65.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.39025,54.168062],[7.305438,54.271844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.655,44.909],[12.857516,44.946891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.248188,47.74675],[-4.44875,47.672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.669117,38.353867],[15.861937,38.459312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.9525,58.354],[17.091,58.314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.53575,37.455],[-9.3805,37.5765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.049,40.575],[25.288,40.394]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.249312,57.976813],[11.24507,57.844516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.2,34.199],[35.292,34.513]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,-37.8],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.234,12.54],[-69.98425,12.99075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.054,-26.21],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.996125,40.46475],[18.8245,40.5645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.023,65.254],[35.456,66.101]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.989,56.655],[-40.002,57.289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.9585,64.739437],[-14.05075,64.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.722562,41.376844],[9.882437,41.374219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.451,-10.011],[159.98525,-10.1215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.007,-8.92],[132,-8.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.196,-52.636],[-75.492,-52.704]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.565,41.125],[-20,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.119125,57.372625],[10.881344,57.460531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.451,-10.011],[162.278,-10.017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.40425,51.55325],[3.274,51.601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.966,15.2035],[-131.707,11.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.7925,54.9255],[19.924,55.192]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85,-15.17],[-80,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.220125,39.832125],[2.264,39.686],[2.331437,39.515187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.67,41.491],[-70.064,41.482]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.845844,57.967062],[6.833,57.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.94991,55.082172],[7.63225,54.71875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.970688,39.329062],[14.083,39.467]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.075,22.199],[-130.00875,26.148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.9,31],[132.3955,32.413]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.83,48.816],[-4.960125,48.668156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.821906,56.774562],[6.915062,56.724437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.310875,36.852719],[24.132344,36.812094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.365,0],[51.621,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.61725,37.91525],[9.8175,38.0295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.772,30.052],[-140,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.426,-54.622],[-63.38,-54.146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.752,36.68025],[-1.9535,36.561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.478,23.465],[-73.1405,23.2035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.223039,58.342094],[11.416,58.307625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.894,-5.6115],[116.95,-5.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.445,26.271],[143.037,27.131]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.599,41.888],[-86.417,45.257],[-85.878,45.826],[-85.19,45.886],[-83.901,45.708],[-82.191,45.03],[-82.305,43.252],[-82.513,42.61],[-83.098,42.273],[-83.115,41.967],[-82.071,41.771],[-79.374,42.635],[-79.212,43.256],[-78.834,43.617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.67,-10.085],[142.133,-10.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.889,-23.186],[58.0065,-20.694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.617687,65.598187],[-13.336,65.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.4085,59.934],[25.577562,60.231437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.8135,40.565],[24.68725,40.42225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.591125,38.638125],[-9.362,38.673],[-9.299875,38.631281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.9925,43.809],[-3.1,43.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.497,63.74325],[22.34,63.74125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.731883,38.950109],[25.706023,39.078133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.642,14.519],[-128.631,11.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.208,49.73],[157.616,48.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.976,48.959],[-132.689,48.554],[-131.605,48.556]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.64375,59.22475],[-3.262,59.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.0135,40.427],[3.0765,40.52625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.923063,57.919531],[6.0645,57.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.706,63.03],[-0.977,63.336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.296,7.347],[68.756,8.781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.513219,59.995],[19.705188,59.993406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.849,33.664],[129.097,34.949]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.461,70.995],[27.1,71.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-10],[-180,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.655,59.996],[4.554,59.948]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.671016,50.264617],[-4.853578,50.114625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.462,39.117],[17.629,39.184],[17.8635,39.2805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.692875,37.29175],[15.436781,37.155094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.649,38.239],[-71.82375,38.36125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.37275,58.05125],[11.509242,57.924437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.546375,65.172562],[-13.219,65.228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.246875,41.291],[33.328,42.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.096234,43.706109],[10.269317,43.531904]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.679,40.054],[17.464,40.156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.658359,36.855695],[24.503375,36.86575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.7635,37.2585],[3.939,37.619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.112,40.797],[-10.6655,40.587]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.7685,-18.776],[176.9,-18.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.295,52.927],[1.459,52.943188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.498,69.648],[46.654,69.842]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,30],[-180,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,30],[-180,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.89325,58.07875],[9.012,58.195375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.732125,43.37075],[3.6845,43.186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.922438,50.531938],[-1.815812,50.458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.822125,59.054375],[21.710375,59.180125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.512,16.612],[41.2525,16.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.0585,56.0545],[-3.355,56.022]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.278031,38.316719],[-9.2935,38.1955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.844,39.49],[18.016,39.588]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.375,67.894],[14.302125,67.72325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.809563,55.387188],[14.141527,55.233]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.014,60.878],[2.833,60.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.799125,36.461125],[14.049,36.4915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.121855,37.413418],[24.267576,37.466994]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[79.545,2.607],[81.9,5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.715625,52.0255],[2.50275,51.828812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.983969,57.777156],[-2.12775,57.97225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,0],[81.9,5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.887,64.057],[-14.775,64.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.639,66.385],[-20.819,66.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.695375,38.0285],[13.753,38.1865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.61075,37.09],[23.73993,37.28957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.613,41.4505],[2.510375,41.390375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.597,52.706],[-33.174,53.307]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.472789,58.105783],[6.315875,58.167187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.278031,38.316719],[-9.38,38.256]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.359125,58.703875],[-3.2045,58.697633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.120984,51.713039],[1.24525,51.617438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.618,46.4045],[-2.484,46.1495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,40.62],[-50.587,40.588]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.1925,30.353],[-77.879,29.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,29.577],[-58.995,28.773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.759906,42.419344],[9.937078,42.383441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.342,37.73075],[25.464344,37.906844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.702,35.7385],[28.023,35.50875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-40],[-165,-40.107],[-170,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.375,41.251],[-10.0965,42.00925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.229,34.885],[18.083,35.493]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.7,13.4],[126.822,19.546]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.472,41.526],[10.336469,41.665875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.861813,37.206406],[26.723727,37.156914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.308344,54.149055],[11.143062,54.089687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.305336,50.890065],[1.10725,50.839062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.12475,49.33025],[-4.217,49.290875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.608156,55.73575],[15.687,55.5895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10,-50],[15.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.318,36.386],[34.637,36.7635],[34.67675,36.54525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.016813,55.50325],[7.938492,55.439906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.949,64.701],[-168.26,64.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.1,54.7],[158.626,50.969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.334934,44.560594],[14.257906,44.431859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.5475,43.2935],[4.766,43.294],[4.959625,43.261375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.216188,54.630812],[7.01775,54.861375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.691,42.4565],[10.581,42.418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.23875,51.02725],[-8.135,50.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.382875,57.420875],[23.793375,57.497812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.717,-10.144],[159.429,-10.1435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.048,43.517],[-9.20025,43.483]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.3325,26.57925],[-73.477,24.832]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.484,64.915],[7.315,65.203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.032,20.056],[-114.164,20.058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.458,42.82525],[8.508516,42.971422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.192,20.0075],[-46.037,18.239]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.739,41.6675],[16.74975,41.790813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.69,58.702],[-3.5395,58.664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.195,43.496],[-10.176,43.257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.4295,37.47575],[-122.9,37.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.694,10.201],[-28.406,8.438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.6115,44.854],[-5.794875,44.761]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.492,-52.704],[-75.645,-52.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.076,-6.13],[-135,-5.057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.634,23.534],[-75.704,22.244]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.56625,38.18525],[13.813875,38.304375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.61725,52.0575],[1.7845,52.05225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.998,-46.441],[-87.48,-47.734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.73825,41.006188],[11.3425,41.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.385,42.2565],[15.32525,42.0665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-50],[-84.889,-45.404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.843,70.7535],[29.39,70.8545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.459,39.45],[-25.335,40.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.177031,54.10407],[5.003969,54.116563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.683,54.062],[-3.575438,53.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.785,-49.073],[-65.997,-48.817]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.118859,43.526453],[-3.066,43.407]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.051,57.140375],[-6.887375,57.440375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.724,63.4365],[-20.3805,63.507]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.078,14.862],[42.022,14.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.732125,43.37075],[4.165,43.278]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.557,36.355],[14.456187,36.115125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.9485,38.465],[12.742375,38.453875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.764375,55.57025],[16.808,55.81475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.045574,42.939012],[5.128,42.647]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.38375,31.33875],[31.707,31.671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.091,58.314],[17.197,58.321]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.516,55.246],[16.619922,55.17168]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[84.777,11.17],[82.25,7.251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.85,41.633],[-155.114,40.104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.284,54.847],[-165.167,54.643]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.598,34.901],[139.9,34.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.412,-3.708],[113.959,-4.539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.258,53.198875],[5.05,53.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.806875,41.937125],[11.694102,42.070801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.108,-40.024],[10.42,-40.448]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.697,33.58],[28.511,33.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.881344,57.460531],[10.938859,57.578352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.111,42.624],[7.15425,42.4815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.3045,46.242],[-4.5075,46.1365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-1.919],[-160,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.534,32.308],[124.644,32.434]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.807,59.155],[-3.64375,59.22475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.76175,39.108],[2.732,39.376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.290781,49.913063],[-1.36875,49.81375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,20.001],[127.027,20.671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.187,36.481],[-126.38,36.659]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.68725,60.00425],[26.615,60.1165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.839023,53.641422],[-5.632,53.5115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.151375,56.527625],[20.00975,56.34725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.9,51.718],[1.833117,51.853805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.85825,54.026781],[7.770469,54.076375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.148,-9.738],[137,-9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.311,54.465],[-133.695,54.618]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.370219,43.833156],[14.5935,43.573813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.218,-9.752],[170.0035,-9.993]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.51825,50.43875],[-3.414875,50.408125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.199,37.102],[125.6,34.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.638,57.826],[17.824375,57.880875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.985,54.655],[2.808,54.541]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.239594,36.204906],[22.089,36.221]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.852,37.379],[3.01,37.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.4575,37.8095],[-9.562062,37.788625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.314,36.59],[-12.134,36.717]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1055,61.7375],[4.359,61.723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.563125,46.766312],[-2.582187,46.53325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,20],[144.273,24.529]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-10.695],[160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.891,22.713],[-86.417,22.161]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.058234,57.74757],[9.90075,57.728063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.848625,36.501473],[27.655375,36.505125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.467785,50.749156],[1.589688,50.881062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.382,49.6135],[-7.15725,49.684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.672,57.674],[-45.247,55.432]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.606563,44.994031],[14.625875,44.79225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.11725,51.391],[-4.0095,51.38025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.673664,39.548664],[25.5,39.677]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.549,34.763],[13.257,35.154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.882,46.741],[158.563,45.463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.7,51.6],[-176.996,50.559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.82275,16.004375],[-84.233,16.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.130758,56.077344],[11.0505,56.215063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.5905,56.392625],[4.498375,56.226125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.818,38.823],[-137.426,39.419]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.817,38.9955],[4.3385,38.962]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.644,21.08],[134.214,20.058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.324727,42.953508],[15.5215,42.94825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.705,-16.45975],[115.6045,-9.0895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.568,61.81275],[-5.674,61.688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.049,38.639],[7.86325,38.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.042,55.233],[14.141527,55.233]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.8835,33.199],[27.384,32.965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.963,37.096],[-11.78,37.4195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.6885,55.868688],[15.576812,56.035563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.976,36.3615],[-3.939375,36.260625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.088625,54.5905],[12.292,54.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.2865,9.991],[104.892,8.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.03,27.53],[-75.891,27.093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.748455,37.943438],[20.861,38.028188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.242,29.979],[-15.322,29.443]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.411719,38.901266],[8.560625,38.823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.761,34.928],[-69.804,34.036]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.849,-3.255],[-31.299,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.03,77.606],[11.614,74.782]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.99125,61.414],[18.894,61.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.251,50.457],[0.147,50.444]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.667,19.421],[116.638,18.166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.1,-37.7],[150.443,-37.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.46925,51.608875],[1.3625,51.608063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.511,40.82075],[1.575,40.65925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.062875,36.194766],[27.027812,36.308605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.833031,40.499813],[-68.763,40.292]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.572047,37.841047],[11.30575,37.711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.228,25.712],[120,25.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.082,69.233],[14.69175,69.6205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.892,43.921],[-2.176,44.266],[-2.3655,44.4945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,20],[-130.00875,26.148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.080813,36.912281],[24.958703,36.849672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.3765,57.602187],[17.326656,57.498406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.999,-16.801],[-100,-10.344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.107,-34.543],[32.918,-37.307]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.17475,40.54075],[8.318,40.566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.510375,63.660875],[21.116,63.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.846406,36.884875],[-7.645,36.932],[-6.875125,37.101]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.773,39.334],[23.650844,39.329031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.409937,57.676063],[21.341812,57.576]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.995875,37.481313],[10.850938,37.541313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.1485,56.8475],[17.14,56.61875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.234,19.603],[38.118,19.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.509438,43.597],[9.40825,43.841641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.563,45.463],[153.277,43.103],[151.14,41.972]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.06075,52.44525],[4.0405,52.33875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.346,11.736],[-45.001,15.169]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.851,56.53925],[18.99475,56.60875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.808375,38.9915],[0.743875,38.873375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.790875,40.621656],[2.912,40.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.294531,43.294875],[5.350734,43.1385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.335,57.575],[7.3395,57.45825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.025,70.537],[22.506,70.466]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.844,37.68],[-68.373,37.529]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.998,-35.015],[-9.998,-33.919]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.420437,38.801219],[15.255648,38.795563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.597,65.206],[23.791,65.202]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.649,38.239],[-71.455,38.392]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-50],[-136.126,-46.517]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.328,42.857],[34.5425,42.7585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.703,-18.3575],[178.801,-19.342]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[56.731,25.975],[56.616,26.447],[56.438,26.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.6595,50.30075],[0.562078,50.371922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.717,-0.727],[-140,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.781844,42.169281],[9.913,41.987625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.064,59.959],[19.927813,60.014313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.513,57.878],[-137.211,57.723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.153844,50.273531],[-4.290437,50.252063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.199125,35.627],[30.4335,35.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.51,44.848],[-20.001,43.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.64,-27.27],[17.59675,-34.271125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.9,28.284],[-90.145,28.015],[-90.381,27.999]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.912,35.933],[27.788423,35.822991]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.568,41.946],[148.342,41.327]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.52175,38.380344],[15.374844,38.326188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.099016,43.969094],[8.881109,44.035281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.356008,59.773688],[24.394,59.679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.895,57.3275],[7.15025,57.45975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.646,46.103],[-7.775875,45.926]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.074531,42.170063],[10.9425,42.22775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.4665,43.5815],[-9.587,43.542]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[146.437,19.216]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.005,-11.494],[-100.111,-10.043]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.85,12.26],[-27.694,10.201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.990063,38.303562],[25.0345,38.1545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.6,-16.7],[139.309,-16.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.4,18.6],[-92.097,20.352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.488828,37.066336],[24.36323,37.119352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.758984,57.331633],[11.649736,57.447521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.12975,36.701797],[26.179063,36.795719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.412,60.0335],[29.287,60.033],[28.747,60.048]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.17725,34.951813],[24.11475,35.0305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.879482,41.274148],[9.195668,41.28693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.926,54.994],[20.466,55.272],[20.58575,55.504]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.75225,58.339875],[21.052625,58.21275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.42,56.435],[17.53,56.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.264,27.064],[-91.813,26.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.083,39.467],[14.298547,39.434359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.317813,50.068906],[-4.1355,49.899156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.175,61.555],[4.1305,61.457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.84575,35.60475],[17.902,35.846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.043,41.272],[2.938875,41.14975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.45,-8.317],[129.147,-6.033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.604,37.794],[-10.813,38.502]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-40],[60.002,-43.304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.664375,49.23075],[-5.681625,49.108625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.85625,42.1635],[10.789,42.078],[10.696,41.9715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.624656,57.279063],[7.851,57.339375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.181,19.429],[-67.0775,19.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.447,40.003],[13.70075,39.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.4745,54.709],[12.58375,54.626375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.119062,39.170438],[9.181641,39.024703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.186,-15.188],[-164.98375,-15.20575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.964875,65.028375],[-13.867,65.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[87.401,19.625],[85.898,16.177]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.92725,37.891],[11.729563,37.785062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.211,38.8935],[-72.333,38.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.913,38.983],[-73.808,39.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.4165,54.092],[1.282125,53.973125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75.435,-35.787],[75,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.03,77.606],[17.096,75.489]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.001,-12.814],[80.001,-15.945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.265,39.5],[20.161453,39.414422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.30575,37.711],[11.359938,37.590219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.57225,42.61175],[-57.338,42.253],[-62.795,41.531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.03,27.53],[-74.98,27.996]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-30],[0.001,-27.124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.31225,58.564063],[20.527375,58.41625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.864688,49.751],[-5.875,49.623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.275,56.82575],[7.293625,56.684125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.328,42.857],[33.5275,42.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.36775,35.442875],[25.701406,35.484406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,38.862],[-29.041,38.4495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.64,14.9],[42.077422,14.86205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.313,-27.198],[70,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.342,69.9865],[30.461,70.0155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.003,44.692],[-129.455,44.103]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.3625,61.832125],[20.661,61.90475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.588125,49.24],[-2.78125,49.274687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.893,64.162],[-13.95,64.034]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.257,7.87],[169.423,5.494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.856,31.169],[-73.851,32.0965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.654891,57.282262],[10.653526,57.429626]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[89.328,8.964],[94,6.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.024,41.212],[18.231,41.22]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.4,-35.679],[165.34,-34.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.415,57.868],[17.3765,57.602187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.900813,36.420781],[26.947301,36.533693]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.036406,42.372375],[16.191125,42.334812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.978375,38.415469],[9.1295,38.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.184,28.136],[-87.055,27.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.462,25.708],[-87.1475,22.9585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.099,55.698],[-165.18,55.327]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.513219,58.767844],[9.786531,58.940641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.9,28.284],[-89.893,27.783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.358,67.056],[12.7005,66.57775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.01775,54.861375],[7.004,54.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.364375,38.108953],[25.497687,38.230871]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.675,42.504188],[14.699469,42.973188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.329,-5.273],[111.9,-5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.985,64.579],[4.889,65.799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.82925,57.105],[-0.5,57.124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.104,37.474],[26.945125,37.52475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.869656,57.696844],[-3.1415,58.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.79625,37.754109],[24.90025,37.57616]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.98675,65.00225],[21.785,64.912]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.002,27.586],[-82.323,26.667]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.241,38.951],[-69.631,37.604]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.12075,34.4865],[28.075,34.488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.499625,55.4135],[18.803187,55.4435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.022125,58.040625],[20.150562,58.106219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.449,39.492],[-130,39.609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.2545,58.0265],[8.3705,57.96675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.918719,56.112078],[15.138,56.045625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.84,51.749],[-164.001,53.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.95,4.569],[104.6,3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.224305,56.801758],[20.503602,56.56732]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.845,50.469813],[0.821124,50.461551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.107,10.578],[-87.996,10.0415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.129,57.9625],[20.251,58.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.269,44.669],[35.952,43.867]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.581,-25.73],[0.001,-22.121]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.896,20.105],[-30.254,20.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.977055,53.391461],[-6.110094,53.333734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.477,55.93175],[5.4305,55.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.126,34.283],[35.073,34.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.6255,36.501],[-73.4325,36.1165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.65,30.707],[-30,30.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94.140931,-41.414689],[94.304453,-41.382312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.650688,56.718375],[10.5125,56.93825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.444688,43.3345],[8.43,43.148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.771531,37.319719],[25.757562,37.463438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.079,51.947],[1.094,51.947],[1.314727,51.915547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.573,55.787],[18.41375,55.7645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[63.154,20.063],[58.999,19.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.419094,59.038344],[21.276,58.888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.379,35.923],[11.6,35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.638,18.166],[118.556,17.357]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.381625,49.071687],[-4.1425,49.1885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.298,36.383],[16.3995,36.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.397,27.928],[-77.547,28.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.246,10.563],[95.292,10.706]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.575438,53.967],[-3.5025,53.88275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.8145,57.23875],[17.695875,57.140875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.079625,54.454125],[14.029625,54.566875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.225,57.764],[8.090375,57.911875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[148.342,41.327],[146.81,40.247]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.448219,36.698781],[23.539695,36.797211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.371875,37.2265],[21.456018,36.948008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.673,9.202],[163.393,14.422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.6,35],[11.296,34.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,4.431],[-31.244,1.262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,39.205],[-17.102,38.719],[-14.48425,38.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.257,35.154],[13.028,35.462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.854938,59.180188],[19.747,59.344625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.027742,43.146727],[4.89,43.04925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.64,62.793],[-166.528,62.976]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.808,55.81475],[16.656,55.829]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.02075,45.27675],[-3.988,45.101],[-3.90975,44.938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,20],[139.999,22.746]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.26275,55.171875],[8.52575,55.0685],[8.3755,55.04625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.352844,36.565609],[-6.523844,36.615562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.1,33.37],[144.695,35.104],[147.668,37.848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.277,52.417],[-5.107781,52.790656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.763312,39.652125],[25.88575,39.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.323,0.534],[167.123,-0.453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.286125,38.122125],[11.481,38.108]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.603,44.128],[-8.619375,43.835906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.932,38.898],[19.415,39.089]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.76875,41.69],[19.0675,42.089]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.5675,40.79],[7.5495,39.8965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.684,61.894],[-7.55,62.003]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-10],[-14.2795,-7.9615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.842,33.26],[-69.903,32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.615,-35.018],[-9.998,-35.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.457625,35.79275],[-73.8395,36.3455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.613969,37.726234],[24.5975,37.608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.994,60],[-20,61.232]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.545,-9.331],[110.249,-8.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.5,-33.5],[34.358,-31.879],[40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.6115,43.0815],[8.679906,43.340594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.885,64.6985],[10.705,64.583]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.50525,42.98875],[14.699469,42.973188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.59,55.428781],[14.578789,55.280547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.67,-12.165],[136.8465,-11.7845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.055,40.295],[-69.491938,40.297187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.61,63.826],[9.478,63.9105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.083938,37.123469],[12.227859,37.204313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.522,58.133],[163.489,61.436],[164.4,62.378]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.47,58.224375],[17.4595,58.1035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.607,35.405],[-7.335,34.942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.07275,41.63825],[-10.0965,42.00925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.383008,44.545586],[12.615,44.391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.04,57.653],[9.194125,57.71575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.151,60.705688],[21.464687,60.453016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.473277,37.622613],[24.380484,37.715898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.13,44.384],[-9.368,43.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.603875,49.910625],[-2.563477,50.067563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.960219,53.640031],[7.124805,53.676789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.071,46.90425],[-6.9,47.118]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.647,58.923875],[19.7815,58.714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.03,-6.084],[64.967,-5.071]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-112.549,12.904],[-110.197,10.228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.075,-35.355],[164.826,-35.547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.17,46.936],[-5.297,47.224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.001,26.158],[-60.619,25.605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.032,61.644],[18.99125,61.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.972625,39.941094],[24.882625,39.80275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.761812,54.184625],[13.868,54.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.087,31.744],[30.349,32.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.19725,36.045],[-8.192,35.917]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.8765,41.2435],[19.057,41.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.7825,37.5575],[24.796547,37.32475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.091,25.434],[120,25.337]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.2815,35.6445],[22.7015,35.80725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.3185,61.60975],[20.253,61.409]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.79,53.24275],[2.6455,53.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.691,63.714],[22.497,63.74325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.46775,58.38925],[21.492036,58.225111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.51375,63.171],[19.51,63.063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.818,-27.338],[-20.627,-29.408]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[96.404,14.151],[97,13.788]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.743,66.855],[-18.976,66.919]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.514,26.476],[-76.3525,26.02325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.606,37.325],[2.105,37.214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.70875,65.088],[-23.874875,64.934438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.235062,36.074],[24.484875,36.30875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.616,48.445],[157.933,47.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.55925,48.805484],[-5.601281,48.656219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.375,16.79],[145.016,13.776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.09,34.111],[35.2,34.199]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.470125,57.394125],[-1.586781,57.449531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.568,36.2085],[19.1895,36.3565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.891133,18.951694],[-78.14949,18.992057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.347,30.087],[-56.661,29.006]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.574,29.138],[-15.679,28.904]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.040229,37.114312],[23.888502,36.95017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.814,4.858],[72.9545,4.022438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.783,41.703],[-9.748,41.9725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.286,29.135],[-79.005,28.711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.454937,56.3865],[11.229387,56.567371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.143,27.8135],[-72.818,27.532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.663156,49.929469],[-4.78325,49.835938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.289531,41.935969],[8.254188,42.212844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.535094,58.613656],[5.250344,58.687391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.824,-34.158],[-4.61,-35.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,-5.057],[-143.614,-3.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.268,61.45],[4.151,61.3485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.782625,38.671406],[24.8875,38.58575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.621,34.539],[28.581,35.4315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.294,-20.16],[-77,-13.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.13,36.33],[14.928875,36.426625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.2715,36.5525],[15.213625,36.4225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.636,55.285],[16.547,55.37925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.690062,41.219469],[9.527938,41.293125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.8995,49.0385],[-4.948,48.857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.06975,36.939312],[26.238844,36.939406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.02625,-9.99825],[95.782,-10.031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.3,27.8],[120,25.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.0665,36.591],[-1.974687,36.6915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.983,40.461],[0.942,40.278141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.348,35.7705],[28.168,35.6615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.392562,66.210797],[-17.55075,66.33975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.266,41.189],[-139.833,40.144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.3575,30.257],[-69.281,30.013]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.699125,39.180375],[19.776,39.083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.151,26.236],[-87.837,26.246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.097938,51.588313],[1.24525,51.617438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.0765,57.837],[-1.337,57.826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.995,1.02],[-40,2.174]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.999,-51.107],[-75.645,-52.756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.49425,53.83175],[6.297398,53.7685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.2265,40.19],[24.097687,39.923344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.342387,35.996514],[14.567266,35.916988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.076,-13.144],[173.094,-13.942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.912,59.3065],[20.79,59.192]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.558625,60.958],[19.361,60.937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.742406,56.692188],[7.781813,56.536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.676539,37.887812],[25.813418,37.781859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.911219,54.004937],[4.796552,53.753253]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.295,-7.16],[5.2,-3.536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.099,-35.201],[-49.778,-36.039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.0255,36.3725],[16.3995,36.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.833117,51.853805],[1.7845,52.05225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.423,-4.95],[137,-9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.73325,53.072],[-5.548,53.17875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.8555,56.905],[-1.881813,56.794063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.945,58.24],[2.463,58.176]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.15525,41.04325],[2.0035,40.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.5,-20.9],[163.7,-19.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[97,7],[95.246,10.563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.166,56.556],[0.49,56.634]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.573,64.761],[-13.6875,64.6715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.3135,37.865],[-24.9815,37.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-20],[-76.962,-24.967],[-76.035,-25.999]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.213,26.913],[-85.784,27.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.272,40.213625],[23.446,40.269],[23.711,40.026],[23.74575,39.901875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-50],[-164.888,-45.403]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,40],[-165,40.107],[-160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.73557,57.980012],[10.646875,58.118125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.941875,51.58575],[-7.54375,51.34625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.853125,57.20875],[20.8215,57.0355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-10],[75,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.577047,49.711531],[-1.6055,49.846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.766,27.727],[-89.893,27.783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.109,-1.125],[0,-3.091]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5,-35.386],[5.395,-35.007]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.296,42.43],[-10.469,42.281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-3.091],[0,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.473312,38.727063],[24.649,38.7205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.317922,39.711375],[25.543,39.821]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.528,9.438],[-81.714,9.512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.072,32.64],[-16.869812,32.617063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.116,33.526],[16.037,33.675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.537,19.987],[-23.231,20.659]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.873,54.944],[9.67075,55.0135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.001,-39.62],[40.001,-36.949]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.546,49.189875],[-4.62275,48.976375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.001,48.819],[-40,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.481,60.736],[18.746031,60.597609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.564,39.713],[18.4355,39.67525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.423625,45.31575],[13.454773,45.46168]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.656219,55.284625],[-6.534,55.306]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.381,50.316],[172.18,49.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.047,61.617],[18.117,61.83175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.195,27.85],[123.096,28.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.627,56.033],[-3.355,56.022]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.54825,44.178188],[14.39825,44.21375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.455031,55.455313],[14.578789,55.280547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.643,58.368],[-167.82,59.179]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.618,42.796],[-47.493,42.808]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.2335,40.7045],[1.825125,40.679375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.2055,69.695],[15.942,69.577]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.513219,41.580812],[4.533,41.884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.6205,59.586],[2.524,59.332]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.951375,36.629875],[14.1195,36.57825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.559766,49.923234],[-3.639953,49.750961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.1,33.2],[14.506,32.769]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-30],[-174.456,-24.723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.317922,39.711375],[25.301125,39.56325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.379,50.127],[-0.515844,50.214344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.0155,39.81875],[11.509,40.40825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.823156,42.681648],[16.590281,42.749016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25,-25.277],[-22.818,-27.338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.998,0],[141,-2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.185,36.373],[19.1895,36.3565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.031,58.046],[4.9415,57.9345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.8295,35.335],[30.79,35.018]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.11,-45.405],[20,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.655,43.319375],[14.887352,43.367371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.331375,43.614375],[14.2105,43.502]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.454969,38.787375],[8.411719,38.901266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.4405,54.452125],[7.343,54.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.459,62.7485],[19.638,62.636]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.978,55.927],[-8.451,55.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.119062,39.170438],[9.326438,39.083188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.988812,49.803875],[-3.279844,49.687828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.305188,56.185594],[12.0565,56.138]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[98.87,-8.892],[100.02625,-9.99825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.469,27.424],[-30,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.7615,44.01],[-133.877,43.939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.416,38.424],[-11.262,38.74775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.087656,37.298563],[22.940625,37.333875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.704,45.025],[-3.90975,44.938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.809,-22.958],[110.6085,-22.90075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.299875,38.631281],[-9.278031,38.316719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.146,55.546],[142.938,55.334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.526,37.715],[-70.3745,37.14625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.345,61.552],[4.268,61.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.313,68.21],[13.495,69.281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.308344,34.708],[32.3655,34.474]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.353188,57.745],[8.275625,57.603875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.0815,40.171],[-10.899,39.7605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.141312,37.48075],[15.314602,37.31057]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.731,-8.756],[70,-7.344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.652,44.483],[-3.467,44.177]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.062961,37.843938],[21.012969,38.074219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.999,19.998],[61.648,17.284],[62.607,16.551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-109.7,22.5],[-108.821,22.882]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.73,52.259],[-9.756,52.26],[-9.892,52.268]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.2865,9.991],[110.1,12.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75.435,-35.787],[74.343,-35.992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.406,50.896],[-1.319141,50.777234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-109.833,21.395],[-109.7,22.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.96175,58.00575],[19.031,57.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.401,-4.928],[134.423,-4.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.329,-35.079],[-35,-35.386]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.273,36.750625],[-7.983,36.866]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.25,41.8],[-68.359,42.156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.477,41.31],[-71.474,41.073]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.978,30.226],[-74.183,30.238]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.0165,55.547187],[6.7655,55.59375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.11925,34.68775],[-8.194,34.834]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[79.103,2.787],[81.9,5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.756,-25.508],[-124.573,-25.426]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.638,58.289],[150.314,58.584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.486,54.257],[0.845,54.0785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.558625,60.958],[19.671,60.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.96,36.949],[-75.807,36.847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,35.386],[-137.778,32.416]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.989438,54.608937],[-5.135187,54.614219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.222562,58.61375],[11.092,58.861]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,20.001],[132.96,23.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.077875,41.142875],[7.574,41.191]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.001,-31.786],[1.965,-32.137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.637,24.726],[-85.186,23.564]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.96175,41.76125],[-8.85,41.6715],[-8.953281,41.528719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.037,35.092],[129.097,34.949]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.957,29.224],[123.091,29.844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.297,34.251],[28.2425,34.1605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.225,39.30825],[20.356,39.114]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-96.416,74.299],[-96.153,74.005],[-96.327,73.313],[-95.9,72.223],[-96.074,71.814],[-96.706,71.486],[-99.186,70.748]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.02175,60.7085],[18.896313,60.581609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.78675,43.472062],[-3.58975,43.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.997937,58.12425],[9.869266,58.091203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.951375,56.953625],[7.018,57.11475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.372797,56.478781],[7.297406,56.292187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-25.335,40.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.416719,58.424625],[10.506812,58.233125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.001,48.245],[-147.484,47.633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2,58.4],[-1.7895,58.389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.7595,38.7865],[9.9015,38.639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.098156,60.383297],[20.997,60.296]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.551312,54.743437],[19.210625,54.798625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.665,34.941],[-22.296,34.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.279,58.6285],[-5.663,58.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.4485,59.0525],[19.315,58.938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115.441,0],[-110.953,0.967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.958,9.9915],[-33.505,13.767]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.818531,55.748875],[14.780344,55.927063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.7,59.116],[19.782,58.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.439375,49.223875],[-4.381625,49.071687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.194125,57.71575],[8.922,57.675312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.891,38.527],[11.0505,38.5065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.026,41.298],[6.391812,41.269125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.024344,55.9795],[6.956,56.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.843,35.642],[34.839,35.4985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.601,59.246375],[21.710375,59.180125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.6485,37.702],[-9.79775,37.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.255,35.428],[29.744,35.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.075875,58.753875],[5.048969,58.610875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.527938,41.293125],[9.722562,41.376844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3085,53.1015],[4.484,53.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.231469,35.660031],[24.402188,35.598812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.824813,55.531312],[7.938492,55.439906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-103.665,13.916],[-102.369,12.705],[-100.69,10.788]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.996,55.314],[6.869,55.048]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.095148,57.475766],[17.0345,56.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,-50],[125.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-40],[50.001,-41.928]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.7675,48.253],[-6.9055,47.983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.658,60.46175],[19.874875,60.618875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.9375,55.56225],[19.765,55.484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.037688,10.012625],[68.896,8.918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-5],[-30,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,-30.093],[-131.54,-28.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.722125,67.638625],[12.627,67.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.7515,28.85],[-84.652,27.583]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.687,35.751],[-8.923,35.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.024,60.6985],[18.233,60.818]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.8085,38.3535],[-9.755,38.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.4285,39.2525],[19.303,39.425313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,40.202],[-140.001,41.432]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.203,17.297],[-23.537,19.987]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.14625,41.74625],[12.208188,41.559531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.34225,43.293],[9.218438,43.126688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.116,50.019],[157.594,50.157]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.7465,53.6755],[-4.875063,54.010312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.0865,35.628125],[-74.777,35.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.801,64.414],[21.512,64.078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.200188,56.443719],[7.372797,56.478781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.598469,57.102031],[11.490312,57.152625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.5345,50.453625],[-2.4195,50.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.477,41.31],[-72.197,41.251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.214,59.5285],[-1.099,59.808]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.549,-29.574],[-85,-25.277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.246,32.442],[-55.347,30.087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.729,53.585],[-0.69,53.7015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.666,4.756],[125.683,3.951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.178625,56.688625],[8.157656,56.805281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.642,58.557],[-0.535,58.734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.359,-37.563],[50.001,-37.736]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,30],[159.999,22.421]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.1065,21.0735],[-73.899,20.346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.333,-24.947],[-169.999,-26.764]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.08625,52.512],[6.111,52.281],[6.15,52.253]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.898125,40.631],[24.8135,40.565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.231,41.22],[18.3745,41.2245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.050688,35.612562],[23.9775,35.743469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.145,41.445],[12.00475,41.5005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.9,52.6],[174.14,50.688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.876469,40.019656],[24.972625,39.941094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.931625,56.01225],[15.138,56.045625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.637,41.389],[2.510375,41.390375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.320789,43.409773],[8.444688,43.3345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.604,47.325],[-58.244,47.229]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.447656,44.963156],[13.411812,45.124281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.586,30.3695],[-78.849,29.333]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.273,44.126],[30.9,46.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.452,70.3295],[21.147,70.484],[21.028,70.724]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.4895,40.8185],[28.59,40.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.361,37.801],[19.92,37.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.489227,41.981977],[8.4265,42.35075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-30],[40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.301,11.6],[57.133,7.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.473277,37.622613],[24.267576,37.466994]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.5,-10],[152.6,-5.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.543,39.821],[25.676,39.86775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.64,40.625],[-66.864,42.036]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.582625,50.663031],[-1.444,50.736],[-1.319141,50.777234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.562057,54.684709],[-5.63925,54.808375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.634,-52.466],[-96.5,-53.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.124875,56.9615],[9.006375,56.871688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.345,55.714],[-5.15975,55.7245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.963,45.5505],[-4.162,45.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.851,28.666],[-91.5485,28.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.001,-38.7],[144,-42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.780375,58.159937],[5.914188,58.028562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.404875,45.23625],[-4.668,45.7575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.391625,61.266875],[19.450031,61.446969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.999,-26.764],[-170.525,-26.958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.941,47.454],[-7.051,47.314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.231,34.976],[130,36.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.122,26.213],[-74.235,25.469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.396,29.303],[-69.00175,29.074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.033,36.387],[16.186,36.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.06,39.724],[10.032,39.59575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.565,54.068],[1.819,53.993]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.9785,47.4705],[-2.95125,47.30675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.654,61.7045],[20.69575,61.374875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.4725,60.666],[20.722437,60.304438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.913,10.889],[60,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.731,34.056],[-32.553,32.7965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.059,57.6375],[17.095148,57.475766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.60025,55.279375],[18.205,55.113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.551,39.919],[3.574,39.7205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.09875,43.135898],[10.1945,42.9955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.405,53.76525],[-4.7465,53.6755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.0325,59.92],[24.031281,59.749813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.995,-32.169],[-139.999,-31.577]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.702,45.774],[-2.6475,46.1675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.674312,42.70125],[8.673,42.553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.381187,54.929438],[11.17725,55.0245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.241,7.29],[157.594,7.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.97,37.309],[-69.848,37.221]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.52825,51.629],[-6.6915,51.6215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.001,-14.889],[-2.2455,-12.331]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13,65],[-10.96,64.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.339,-13.808],[-135,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.449,-2.587],[70,-5.001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.018,47.51025],[-4.154875,47.526]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.643422,53.590187],[-3.534063,53.675375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.922016,57.835414],[10.752141,57.860664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.345264,59.233676],[5.34725,59.24175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.999,-2.158],[67.449,-2.587]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.966625,48.740125],[-4.0635,48.824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.952,35.395],[-15.638,35.281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.6175,54.6845],[16.349195,54.779453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.336,30.358],[-78.586,30.3695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.831,-6.279],[117.122,-5.686]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.231,23.112],[113.24,23.101],[113.516,23.03],[114.1135,21.70575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.277,46.728],[38.183,46.934]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.484,64.915],[6.3,63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.553,26.902],[34.5,27],[35.026,26.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.017312,62.650937],[17.965,62.648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.395,61.654],[4.175,61.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.87825,65.5025],[23.087,65.461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,30],[-150.669,29.266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.265,37.133],[3.895,37.092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.1705,56.736],[17.14,56.61875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.933875,65.3335],[23.398,65.378]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.842,-9.845],[69.692,-10.002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.913,10.889],[60.718,10.754]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.651,-1.368],[-30,-5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.778625,61.193875],[20.765,61.0095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.367,63.727],[-18.544,63.291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.835125,42.287],[15.935125,42.460375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.335,24.945],[-130.00875,26.148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.5345,45.538],[-3.691,45.456],[-3.865,45.3925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.625,36.776],[-12.495,36.984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,40],[-58.344,40.035]]}},{"type":"Feature","properties":{"pass":"dover"},"geometry":{"type":"LineString","coordinates":[[1.4835,50.972437],[1.423472,51.172862]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.3045,66.399],[-17.085,66.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-10],[64.967,-5.071]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.365,45.324],[-2.615,45.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.042,58.152],[-135.749,58.309],[-137.101,57.998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.866937,38.049],[11.695688,37.982687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.686,27.185],[-69.799,28.196]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.149406,58.661406],[17.08025,58.53325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.152,70.379],[0,67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.869656,57.696844],[-3.471,57.76875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.56875,51.8795],[-5.499,52.0465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.046,59.2725],[23.06,59.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.075875,57.366438],[18.059,57.1865],[18.093875,56.872062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.214,26.341],[-79.458,26.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.507,7.557],[158.258,8.292]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.5355,35.9135],[-8.7725,35.911]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.341812,57.576],[21.448813,57.452945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.580813,63.26475],[19.51375,63.171]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.707,11.95],[-136.543,12.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.933,56.074],[-2.714,56.1705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,10],[-161.561,10.012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.846,44.139],[-7.18,44.414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.665109,18.760476],[-76.391,18.718]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.858937,35.888188],[13.583,35.928]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.042334,56.518523],[11.454937,56.3865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.378,60],[-20.949,59.174]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.94975,54.67425],[14.029625,54.566875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.681,59.409],[13.672,59.375],[13.655,59.304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.375,67.894],[14.51425,67.90525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.464,40.156],[17.89075,39.952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155,-5.057],[-159.135,-0.877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.161,22.377],[-86.321,22.752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.997,56.211],[4.095,56.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,0],[-140,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.738,30.83],[-71.802,30.547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.783,8.614],[-83.034,6.602]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.057,54.315],[0.13525,54.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.077422,14.86205],[42.078,14.862]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.633,-33.033],[-72,-33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.741,38.922],[7.52225,38.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.7885,39.774062],[18.89375,39.8645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.852,50],[-140,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.392,59.829],[23.522375,59.71075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.601,70.79],[23.5595,70.8915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.613969,37.726234],[24.473277,37.622613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.349,56.625],[-6.146799,56.664843]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.808875,40.13075],[24.776063,40.249313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3505,59.89425],[3.91075,60.07075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.988,56.018125],[20.8605,56.036125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.014125,58.300438],[9.869266,58.091203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.852625,48.384375],[-4.859375,48.492125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.698,-57.126],[-50,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74,39.407],[-73.78075,40.069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.2665,58.0935],[4.033,57.903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.1675,37.705],[-9.356312,37.115141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.9675,37.06725],[14.2275,37.059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-50],[0.002,-46.134]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.917404,42.940596],[4.9185,42.94125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.781,64.411],[-22.223406,64.253375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.23225,55.829],[11.36,55.764],[11.254062,56.020437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.035,9.712],[-93.209,10.754]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.708187,35.97225],[14.820594,36.086266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[96.833,-12.132],[96.7525,-11.9985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.145812,60.519688],[21.332,60.473],[21.464687,60.453016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.625,40.051125],[0.672,40.08],[0.749,40.13],[0.815,40.173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,40.202],[-140.279,40.298]]}}]}', +); diff --git a/data/marnet-20km.d.cts b/data/marnet-20km.d.cts new file mode 100644 index 0000000..bfd7782 --- /dev/null +++ b/data/marnet-20km.d.cts @@ -0,0 +1,7 @@ +import type { FeatureCollection, LineString } from 'geojson'; + +/** Optional native passage label carried on marnet edges. */ +export type MarnetProperties = { pass?: string }; + +declare const marnetData: FeatureCollection; +export default marnetData; diff --git a/data/marnet-50km.cjs b/data/marnet-50km.cjs new file mode 100644 index 0000000..bae20ff --- /dev/null +++ b/data/marnet-50km.cjs @@ -0,0 +1,12 @@ +/* Auto-generated by scripts/build-marnet.cjs. Do not edit by hand. + * + * Single shared copy of the Eurostat marnet_plus_50km network, loaded by both the CJS + * and ESM builds (see src/lib/marnet.ts / src/marnet/*.ts). Shipping the + * network as one asset instead of inlining it into each build roughly halves + * the published package size. + * + * Source: https://github.com/eurostat/searoute (EUPL-1.2). + */ +module.exports = JSON.parse( + '{"type":"FeatureCollection","features":[{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.262852,60.422266],[4.9825,60.489453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155,35.385],[-155.72,36.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.269766,39.131094],[14.362632,39.363623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.3275,-21.305],[-35.225,-24.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.33,54.3],[-130.6675,53.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.5225,56.83],[143.2175,59.1975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.464375,20.9975],[-157.1075,20.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.34,62.6175],[6.210225,62.398984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.28125,43.234375],[36.3975,44.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,40.53],[-30,41.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-112.6675,17.47],[-112.9475,17.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.225,-19.68],[5.6525,-19.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.223594,54.010781],[3.75,53.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[87.7275,-42.545],[85.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.69875,40.73625],[11.197656,40.590156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.593125,28.889375],[-15.16375,28.8275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.09,38.07],[-133.1375,37.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.5,-20.9],[163.7,-19.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.37,51.0775],[-10.765,51.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.17125,35.45375],[-7.719063,35.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.302568,38.575815],[24.415684,38.837246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.0025,-34.7975],[80,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.265,41.19],[-138.8625,41.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.9,3.4375],[-180,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-30],[-84.61,-35.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14,65.975],[-13.670859,65.557656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,20],[-170,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.34125,17.7725],[-75.9725,18.0425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.679375,38.454336],[15.26334,38.308379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.3,71.2675],[27.1,71.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.8025,54.62],[-177.293437,54.639375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.9575,12.7375],[-99.84,15.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.55042,56.64918],[20.651816,56.985137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.995391,46.2175],[-2.285,46.1075],[-2.57,46.186875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.7525,8.53],[121.615,10.0075],[121.6125,11.2175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.402498,36.429963],[25.039025,36.476917]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.792734,43.166094],[4.330625,42.590312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.12625,36.93375],[-122.7025,37.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.89,1.805],[57.545,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.6675,29.1325],[-94.455625,29.054375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.036333,37.603433],[12.006514,37.88418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.242031,60.869062],[20.832734,60.783594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.716306,40.474192],[14.945625,39.859375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.56418,54.674063],[12.28207,54.708984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.2775,38.3525],[6.666875,38.215156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,61.2325],[-20.048411,62.415458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0025,-36.2875],[160.0025,-36.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.605781,38.426162],[25.340217,38.629578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.1,33.2],[14.40375,32.73125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.168137,42.247499],[16.483247,42.322456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.38,58.195],[3.6375,58.14125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.0025,63.94],[36.6125,64.4825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.812266,37.140313],[3.99875,37.631875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.97,61.84],[4.9375,61.83],[4.740021,61.920164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.447247,50.7914],[-1.187949,50.424773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.3,33.2775],[19.4875,34.23125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.500703,55.30668],[17.7425,55.1875],[17.995,55.0675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.480518,57.788066],[6.74793,57.527598]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.109297,60.063438],[5.446719,59.755508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.11,-45.405],[20,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.31832,40.896455],[13.538477,40.746328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.693906,-23.070781],[166.37375,-22.344375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.2225,-8.8],[-163.705,-6.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.10125,2.60125],[-23.96,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.9025,-20.9575],[82.7425,-20.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[101.3625,3.0075],[101.15625,2.74375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-116.77,-26.95],[-112.9175,-30.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.2,47.75],[-58.605,47.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-20],[-170.654141,-14.443984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.91625,7.02],[-61.068125,11.07125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.445,26.27],[143.0375,27.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57,54.6],[-63.72875,60.3875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.239062,55.553359],[18.319844,55.808359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.176953,56.145],[20.649277,55.753359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.59125,37.86625],[123.1975,37.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.25,-26.295],[-39.8175,-26.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.769736,37.73077],[25.602749,37.437231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.6675,41.575],[-170.535,41.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-0.985],[-119.2,-0.8125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.122251,56.883525],[8.074687,56.466875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.3975,26.70125],[-72.115,26.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[112.80375,-25.0175],[112.7,-26],[114,-29]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.374531,39.867656],[13.585,39.665],[13.849297,39.40418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,10],[-30,13.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.65,44.9575],[-154.335,44.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.6775,28.75],[-14.0625,28.750937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.823545,42.913235],[9.588618,42.703418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,37.695],[170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.3125,31.995],[-63.465,32.32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.98,42.2625],[-148.9275,41.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.125,27.6425],[-67.0825,27.2425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.597422,60.380859],[-0.82375,60.87875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.995,70.06],[-128.3825,70.6675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.61,32.9125],[-122.2625,32.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.907422,60.282812],[-3.8325,60.0475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.988867,54.780352],[13.361342,55.229045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.10125,64.086875],[-15.655,63.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.915,4.93125],[-29.2225,4.36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.21,65.8175],[23.399375,65.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.1325,7.185],[60,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.005605,43.022617],[6.226973,42.812876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.7,13.4],[124.6875,19.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.523477,54.868477],[19.149003,54.711791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.530674,36.614142],[26.74957,36.893555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.898643,38.091514],[25.481746,38.133721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.305,21.765],[-74.10625,21.07375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.809609,42.782812],[-10.011563,41.696562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.473301,58.69998],[5.7225,58.479375],[5.957869,58.265466]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,10],[-115,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-103.445,-1.85],[-102.9275,-2.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.185,28.135],[-87.055,27.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.0775,3.885],[-78,3.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.9825,25.2375],[-86.388125,23.20375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.6075,20.3025],[108.8125,21.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.09,33.1625],[-28.8525,31.2475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.5,-35.1],[-54.615,-35.24875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.09,-19.2025],[11,-19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.712278,57.941782],[7.934531,57.566284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.83,-6.28],[117.155,-5.56875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167,55.4275],[-171.665,56.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.61,-35.0125],[-5,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-10],[-160,-8.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.936445,36.140889],[16.37375,36.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.56,34.145],[31.770625,34.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.8775,-8.7725],[153.635,-5.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.58,56.055],[-152.325,53.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.00375,-9.99375],[163.78,-16.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.029375,-14.03875],[64.69625,-14.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.275,17.0575],[-64.2875,15.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.246257,54.019458],[-6.077656,53.644063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.86,36.9125],[-70.100625,36.533125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.99625,10.04125],[-82.145,7.35375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.6575,43.1225],[35.485,42.68625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.480625,42.289375],[8.363936,42.587884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.1275,-26.3425],[-97.855,-22.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.7,51.6],[-176.995,50.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.8225,54.541875],[5.245566,54.889023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,-50],[125.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.3175,33.8925],[125.6,34.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.444375,68.808437],[15.095,68.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.119157,66.387944],[-17.085,66.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.2425,-34.615],[106.215,-32.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-10],[-140,-14.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17,32],[15.366875,32.474688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.975,48.3375],[-8.8125,48.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.1825,25.785],[-79.91125,25.885625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97,22.3],[-97.7875,22.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.03,59.51],[-138.9,53.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.047688,50.190049],[-4.782803,50.104521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.366641,61.700234],[20.141562,61.29375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.95625,61.345],[18.098125,61.650312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.590479,42.619701],[17.16127,42.462773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.671084,49.779092],[-7.3625,49.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.175,30.388125],[-81.170625,30.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.525,41.9525],[3.88957,41.917344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-25.335,40.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.785625,58.774531],[19.568906,58.975469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.52,64.7375],[178.8975,64.265],[179.6425,63.5125],[179.7225,62.6725],[179.615,62.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.9925,-10.060937],[160.4225,-11.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.322344,38.101406],[-0.035312,37.537031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.623906,47.280781],[-2.93498,47.150312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.133311,43.544722],[15.129075,43.962122]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.032969,66.305312],[-20.64,66.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.615,62.02],[-180,62.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.54,33.545],[127.21875,32.92875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.785,52.2925],[-31.4025,50.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.155,59.9475],[-81.9425,61.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,10],[-128.63,11.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,20],[-171.685,18.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132,-8.9],[127.45,-8.3175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.2,58.6],[-42.6725,57.675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.676641,54.962285],[12.554133,55.233171]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.48186,36.060669],[25.703306,36.368428]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.270625,17.04],[-61.863125,17.18125],[-60.019688,19.97375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0025,-35.68625],[160.0025,-36.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-20],[-114.39,-20.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.17375,-55.2],[-76.24125,-54.92875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.7225,-8.8225],[176.6075,-9.12625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-5],[-30,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.878408,57.549116],[17.373462,57.437144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.39625,17.56125],[-66.5925,17.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.118125,-18.09],[168.5275,-18.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.985,-2.0125],[-110,-3.1675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.6125,31.83125],[34.24125,31.978437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.6075,35.405],[-7.986562,34.41875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.10375,70.0775],[23.684297,70.773828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.507051,43.373496],[14.859104,43.38701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.62,47.541875],[-4.799375,47.2225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.024844,49.586641],[-4.177578,49.34814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.5975,32.06],[-72.63625,31.319375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.155,37.55375],[2.605,37.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.243032,50.629766],[1.066029,50.901753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.3125,31.995],[-64.804219,32.365684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.645,-20.0375],[0,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.7825,-10.03],[98.87,-8.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,0],[-165,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.99,26.02625],[-96.9675,26.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.710234,63.392363],[21.446875,64.02625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.065,24.0775],[-82.4775,23.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.568906,58.975469],[19.196875,59.211094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.670596,42.432334],[15.819993,42.138586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.0025,61.2825],[1.181875,61.661875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.920625,35.503125],[29.48,35.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.181875,61.661875],[-1.7075,63.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.777886,56.109766],[11.03021,56.313276]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-118.19668,33.653711],[-119.222328,33.3387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.360938,37.926563],[-73.86,38.99875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.686904,52.46791],[-5.534102,52.231543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.1825,-19.785],[50,-18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.24625,-7.245],[-80.708356,-6.68635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.88625,28.0375],[-74.42,27.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.036152,57.56498],[17.373462,57.437144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.2575,7.87],[165.9775,8.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.148008,43.202773],[15.236143,42.952451]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-30],[40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.109805,41.729844],[-9.06,41.2675],[-8.842891,41.005273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[56.545,-18.795],[57.495,-20.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.149003,54.711791],[19.093408,55.023052]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.8125,17.4075],[66.53,16.6775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.14,23.3275],[-153.635,23.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.53,-8.5],[174.76375,-5.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-20],[-100,-16.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.625,36.50125],[-73.4325,36.11625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.2,-36.7],[157.6325,-36.2225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.6,37.35625],[-9.38,37.57625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.100937,35.027187],[130.1625,35.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.6675,45.24125],[-5.89875,45.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.519375,39.689141],[4.654375,40.162188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.678291,54.589424],[-3.967148,54.389336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.49,13.7525],[100.4975,13.74],[100.4,13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.4275,64.4025],[-166.5275,62.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.73,1.07],[173.0625,1.134375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.095,75.49],[11.615,74.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.98125,59.395],[-1.037559,60.133594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.5,-10],[152.6,-5.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,4.4975],[60.5275,3.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.395312,36.695937],[-4.906855,36.160156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.899038,52.034609],[3.6775,51.7775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.469062,65.465625],[-23.767363,65.032998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.7075,34.73625],[-12.1425,35.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.6,41.9425],[160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.01048,42.660972],[9.823545,42.913235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.136162,62.23126],[21.3175,62.2575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.9025,32],[-69.3575,30.25625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.73,35.395],[13.8225,35.7175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.05,50.7025],[-140.8525,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,-15.17],[-140,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.545,41.6475],[-145.4475,42.0725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.735,72.2725],[79.885,73.2025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.336846,54.795952],[15.519507,54.514373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.19,7.2425],[-165.435,10.0325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.4,18.6],[-92.0975,20.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.725,-9.46],[116.68,-9.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.739763,58.169515],[7.1175,57.507188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.395,-28.425],[100,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.8225,34.0775],[-8.179141,34.739766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[81.76,12.6325],[81.2325,11.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.1475,40.194375],[19.046445,40.513301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.7475,-23.5425],[-120,-23.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-30],[-165,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.21,10.755],[-94.0475,11.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.1125,20.055],[144.2725,24.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.274375,56.2925],[-7.156641,56.687109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.7525,34.08],[-135,35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.774375,65.679375],[22.977471,65.441455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.019414,57.933047],[20.4625,57.633437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.196689,54.343059],[8.380234,54.517422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.080781,54.53],[4.705625,53.99875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.4675,65.625],[36.416875,66.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.180273,41.264727],[32.8325,42.135],[35.295,42.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.613184,57.938828],[23.905249,57.467534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.1325,55.0925],[-7.002041,55.378682]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-118.19668,33.653711],[-118.01125,33.145],[-117.77,32.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.8225,30.04],[-142.7725,30.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.119157,66.387944],[-16.581563,66.439922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13,65],[-10.96,64.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.608437,51.464687],[-7.33375,51.65875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.050937,38.749375],[-27.24,38.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.045625,20.2925],[-68.9,19.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.255,-24.51],[-165.3325,-24.9475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.252344,55.362188],[3.885313,55.132188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.83,-33.4475],[-141.995,-32.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.9,-1.4],[-42.7825,-0.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.24,43.515],[37.365,43.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.775,14.9525],[-163.2075,13.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,4.1925],[-37.595,7.6425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12,68],[13.805,69.11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.835469,40.160469],[2.15375,39.811406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.498425,53.23605],[0.946543,53.089434],[1.25041,52.986816]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.024558,41.039642],[13.004155,40.577924]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.510937,38.706875],[-72.535,37.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.3475,29.0225],[-86.505,28.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.2975,47.225],[-5.276875,47.64625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.786875,51.741875],[2.461475,51.732637]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.701875,35.807187],[23.271992,35.712578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.035,25.848125],[-74.895,21.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.19661,19.230025],[-73.1,19.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.631641,34.477109],[28.58125,35.43125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.415,-11.665],[80,-12.815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,20],[67.795,17.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.435,8.465],[-137.3075,7.36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-30],[-138.86,-31.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.6725,9.2025],[160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.295,15],[-23,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.275746,50.442839],[0.042178,50.586245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.82375,60.87875],[0.104141,60.507578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-40],[-35,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.795625,56.125],[-2.107246,56.027568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.19,19.82],[-67.675,19.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.84875,-23.14125],[54.9725,-24.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.928555,36.400508],[20.925582,36.401348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.368342,58.619362],[10.687562,58.415442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-121.8875,18.2125],[-125,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.84377,40.685156],[2.893906,40.936875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,0],[-140,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.54,33.545],[127.6,34.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.48793,42.629805],[-9.5,43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.4675,41.715],[-160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.154248,39.934648],[-0.077788,39.484043]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.8925,20.2125],[37.53,19.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,60],[-42.6725,57.675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.335,30.3575],[-78.16875,29.77375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.805,69.11],[14.644219,69.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,30],[160,22.42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.912383,43.041563],[6.226973,42.812876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-50],[-10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.65,70.565],[65.6675,69.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.6725,26],[-91.1775,25.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.74,20.785],[-40,21.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.745234,39.090742],[26.415713,38.840752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.8475,-3.19],[-90,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.839688,57.517383],[-7.495,57.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.720547,56.398438],[-5.81,55.78125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.32125,27.41875],[-79.325,27.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.2675,13.1125],[141.3875,10.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.826719,45.021875],[-4.28,44.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-31.01],[-10,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.0275,58.55],[-135.0425,58.1525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.6425,30.4275],[131.8175,30.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.24625,-12.33],[-1.09375,-11.13375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.6975,-57.125],[-50,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.7825,26.2825],[129.035,26.0875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.861953,64.063906],[-22.427988,64.244668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.375,54.2175],[14.423984,54.004385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.355,47.1325],[153.97,46.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,20],[-117.1075,17.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.110156,39.516562],[10.704219,40.423906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.8475,27.6775],[-78.1825,27.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.0925,17.215],[65.8125,17.4075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.7325,68.49],[-99.1175,67.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.865,5.5225],[160,8.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,0],[-17.001875,11.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.2525,16.8475],[-78.7125,17.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131,31.0875],[-134.795,30.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.22125,-5.05625],[123.7825,-5.0725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.682012,57.129824],[18.389609,56.83502]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.733301,44.051143],[8.924971,44.285557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.1425,0],[-30,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.644219,54.943906],[18.30475,55.035637]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,5.0575],[-120,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.499775,38.82457],[10.313047,38.851172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155,15.17],[160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.581289,59.174766],[21.43623,58.543359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.289414,58.611396],[18.1275,58.5125],[18.128359,58.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.5125,16.6125],[41.2525,16.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.95625,26.42125],[-73.2575,26.54375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.935122,37.151133],[12.036333,37.603433]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.55375,33.9075],[17.68,34.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.665,-35.0725],[-29.9975,-35.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.169886,55.165555],[10.979445,55.601803]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.458333,42.138639],[11.316455,41.846387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.34,28.5375],[-60.225,29.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.851875,44.96625],[-8.8075,45.055],[-8.7925,45.075],[-8.705,45.1875],[-8.6825,45.2175],[-8.58,45.3525],[-8.320937,45.656562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.176094,58.115781],[18.934456,57.944988]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,30],[159.9975,34.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.780625,40.06875],[-73.895938,39.374844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.035,33.97625],[35.4975,33.92375],[35.096719,34.26375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.690146,56.531816],[7.915801,56.669648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0475,67.67],[7.7,66.98]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.158611,55.906924],[16.476875,56.010977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.1475,-6.0325],[129.768125,-5.03125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.316455,41.846387],[11.077656,41.655078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.547187,39.359844],[23.924194,39.296875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3575,61.7225],[4.740021,61.920164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-40],[-20,-40]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[100.54125,77.6975],[106.48125,77.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.757053,43.33144],[9.863027,43.62499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.09397,60.176763],[19.008465,59.705375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.973813,36.431958],[23.287891,36.571968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.02606,39.080732],[15.204447,38.802058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.61125,42.206875],[41.155,42.17625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.61875,35.21625],[-8.179141,34.739766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.28,5.94],[-46.8475,10.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.104141,60.507578],[-0.597422,60.380859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.46,39.675],[1.805,39.6025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.768828,20.000156],[-74.8375,18.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.273047,37.273672],[18.37625,37.86875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.2825,51.206875],[-10.7725,50.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-103.815,-6.77],[-104.1325,-5.9225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.84,30.52],[48.415,30.17],[48.3875,30.115],[48.84,29.960469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.6375,58.14125],[4.317969,58.094687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.762187,64.915625],[22.922773,64.697422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.335,44.6225],[-154.6975,42.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-172.54,47.5825],[-173.0375,47.1775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.08375,8.9775],[-81.835625,9.54125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.635,23.535],[-80.84875,24.55625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.492188,46.009062],[-4.3675,45.815],[-4.2525,45.6025],[-4.2275,45.565],[-4.079219,45.319395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.3,37.9],[128.5375,39.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.51,-12.6125],[-146.3625,-10.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.93,29.4625],[34.673125,28.549219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.5,-20],[-36.2,-13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.4,-4.9275],[134.4225,-4.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.2,-13],[-33.2125,-11.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,0],[-171.6525,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.1725,52.3475],[-142.435,54.88],[-146.03,59.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.5975,10.125],[-88.1375,9.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.360938,37.926563],[-74.59125,37.648438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.12,49.27],[-123.15,49.2825],[-123.3775,49.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67,22.3],[66.6,24.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.0625,45.36125],[-41.6575,48.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.168137,42.247499],[16.288393,42.803041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.125,44.55],[-6.9725,44.9375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.940898,43.284414],[16.69375,43.42125],[16.278228,43.464146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.5425,12.755],[-135.84,14.3175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.450625,36.23875],[15.936445,36.140889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[93.3,14.4],[94.87,15.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.415,42.09],[3.88957,41.917344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.855,29.59625],[-17.71375,29.43375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.315,-39.7075],[42.9525,-37.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.9,37.585],[-10.9925,37.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,2.7425],[-40,2.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.08,16.695],[-69.3925,15.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.6775,28.75],[-15.069297,28.329922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.03,25.115],[-80.84875,24.55625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.478906,48.577344],[-6.820273,48.182891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.03,34.321875],[35.096719,34.26375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.11,-45.405],[60,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.382344,66.157656],[-19.694688,66.196875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,0],[-175,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.44,-31.565],[95,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.166472,51.147981],[-4.549639,51.438965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.464375,20.9975],[-157.512266,21.273633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.786875,51.741875],[2.997742,51.438762]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.061797,54.235117],[6.790234,53.982109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.79,35.0175],[31.474375,34.946875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.6325,26.1475],[50.7125,26.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.452188,41.625078],[8.488291,41.900225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.355,-32.8225],[-47.055,-32.4075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.515,42.7825],[-150.0025,43.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.040937,-39.951563],[-110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-177.48,30],[-178.6825,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.37082,38.597422],[15.26334,38.308379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.935,-17.1075],[54.885,-16.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,-35.385],[-30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.685,28.4225],[-70.0325,27.1225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.715,-50.835],[-80,-51.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.36875,25.85875],[-26.47,27.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.7275,39.145],[-72.386719,38.994219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.6925,26.185],[-91.539735,26.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.8,3.7],[109.69,2.77],[109.1,2.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.958636,60.503345],[19.09397,60.176763]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.04418,57.309346],[18.829375,57.68375],[19.250391,57.807266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-50],[-20,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.096152,57.993447],[7.934531,57.566284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.43,14.69],[-17.4125,14.6725],[-17.885,14.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.626562,71.052656],[20.411563,71.279375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.435,3.7825],[118.1125,3.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.685,-14.365],[54.285,-10.0325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.14875,65.464375],[-23.379772,65.345373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.950937,36.170625],[-74.59125,37.648438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.1,2.245],[109.8,3.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.1,54.7],[167.9,59.6],[179.615,62.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.615,62.02],[168.175,58.99],[163.1,54.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.075,4.4075],[166.3225,0.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.378438,65.001875],[23.668203,64.983066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.584375,25.955313],[-76.716875,26.199375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.476719,58.596914],[-2.21375,58.65375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.948125,37.379688],[17.8025,37.415],[17.74,37.4275],[17.6325,37.4525],[17.3525,37.5175],[17.02,37.5925],[16.9025,37.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.09375,30.035625],[-146.105,34.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.6325,41.2225],[-66.6675,40.2675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.915625,-10.021875],[53.7725,-15.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-117.1075,17.25],[-120,17.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.33,70.2275],[15.7575,70.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18,-35],[23.125,-37.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.501523,61.532109],[19.604028,61.650012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.825,40.678594],[1.936484,40.904687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.720913,44.727219],[13.4125,44.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.02543,38.445742],[20.794766,38.623437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.353047,55.711758],[6.203784,55.319097]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.635117,43.933633],[14.357129,44.037832]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.63125,-51.48],[-50,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.109297,60.063438],[4.911777,59.718779]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.2,24.8],[-76.085,25.4825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.75457,40.789453],[25.155781,40.845312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.62,25.605],[-60.0025,24.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.455,-54.03],[-79.995,-54.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.285313,50.158047],[1.243032,50.629766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.4475,32.9075],[-76.2075,31.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.44,-31.565],[90,-32.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-50],[-80,-51.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.12625,66.855],[11.3625,66.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.005,-27.00875],[13.64,-27.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.148008,43.202773],[14.791904,43.008428]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.9675,26.5525],[-96.89875,27.65875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.446875,64.02625],[21.00875,63.57625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.33,57.095],[4.539375,57.721367]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.815,0.575],[-141.44,1.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,20],[-120,17.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.1025,-0.0975],[-89.51,0.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.655,63.4775],[-14.5825,63.6675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.9975,0],[136,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.665703,36.064629],[-7.324492,36.270234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.435,62.24375],[5.070625,62.185625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.102083,38.035994],[-9.112578,37.612578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.809687,55.440313],[3.5675,55.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.637969,38.376406],[-72.1925,38.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.3,-11],[123.2175,-9.415],[124.5475,-8.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0025,-25.4775],[160.0025,-24.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.555738,58.746776],[9.682773,58.456992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.987852,58.151973],[8.635947,57.806558]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-40],[-86.535,-40.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.3675,-35.0375],[-26.9975,-33.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.74,-34.63],[172.3,-34.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,20],[-23.23,20.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.555,38.6675],[-139.683125,39.82625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.7825,8.615],[-88.1875,9.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.925,43.928242],[14.129458,43.589639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.015,33.245],[159.9975,34.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-117.49,28.6925],[-120,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.8825,20.225],[-83.87875,21.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.55375,32.79625],[-38.9825,31.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.8775,-12.08],[-130,-13.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.4125,-24.6775],[-3.205,-23.3975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.1625,41.7725],[-70.19125,42.10375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.3275,54.5125],[-42.9275,53.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.5025,40.05125],[0.154248,39.934648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.006514,37.88418],[11.634863,37.840791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.2,19.62],[113.6675,19.4225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.32,22.7525],[-86.388125,23.20375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.62,0],[50,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.391758,40.245664],[14.809434,39.477559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.9575,63.79625],[-11.9325,62.8475],[-10.555,63.21],[-8.815,62.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.9325,38.8975],[19.487891,39.278262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.23375,44.276875],[-7.814375,44.189375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.827188,60.22875],[28.667188,60.285273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.135,31.3875],[128.9,31.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.964375,45.506953],[13.382898,45.325483]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.26125,-34.13875],[14.3325,-30.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.404687,52.319531],[-10.65375,51.7375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.86,25.30125],[-57.0475,27.21],[-57.915,27.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.8875,-45.4025],[-150,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.5775,-32.8025],[6.86,-33.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.98,-24.2175],[164.455,-24.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.95,60.75],[-146.77,60.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.175,1.8475],[-84.1975,4.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.895,21.9675],[-74.357188,21.172812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.1225,16.035],[131.33,15.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.498425,53.23605],[1.046392,53.582031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.526071,45.198754],[14.29,45.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.215,57.6425],[4.04,57.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.4175,-18.1525],[49.9375,-18.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.262227,42.577461],[13.980156,42.859297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.613828,41.268682],[17.964287,40.843486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.4025,13.72125],[-67.7575,13.495]]}},{"type":"Feature","properties":{"pass":"dover"},"geometry":{"type":"LineString","coordinates":[[1.494547,50.852914],[1.495222,51.13941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.470957,56.224805],[18.943711,56.542969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.6275,-35.1475],[112.97,-34.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.34875,34.09],[-17,33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.7875,59.7825],[-2.985,59.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.192188,38.465625],[0.5375,38.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.8425,-37.3775],[40,-39.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.011875,35.281875],[-9.00125,35.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.39875,60.99625],[-64.5,61.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-50],[-139.9975,-44.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.905,57.0225],[-151.5325,58.01],[-150.7575,58.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.30375,25.26875],[-18.76,24.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.0025,36.535],[-54.50375,34.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.475,27.5625],[-96.06,27.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,-50],[-50,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.0025,36.4475],[-30.0025,34.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.8325,50.8675],[-32.5975,52.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.610078,49.5425],[-5.713926,49.025977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,-35.385],[-141.995,-32.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.1,2.245],[107.76,0.31],[107.69,-0.6875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.147969,53.50375],[-5.527939,53.538066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.69,-0.6875],[109.1,2.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.366875,41.7975],[18.620781,41.540937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.76375,56.775625],[20.126279,56.452363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.267207,55.329902],[8.19335,54.792202]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.17207,39.607148],[0.48625,39.831094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-117.41,27.555],[-120,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.2075,49.73],[157.59375,50.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.590479,42.619701],[17.53,42.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60.5275,3.9975],[62.2925,2.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.33,15.215],[130,14.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-50],[-84.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-10],[-140,-5.1275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.95,4.57],[104.499219,1.555625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.744375,34.8025],[-72.85,33.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.141162,43.092314],[8.75431,42.72792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.37,26.58],[50.98,27.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.6325,-36.2225],[152.54,-34.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.335775,37.929713],[24.631413,38.327471]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.604097,37.545281],[25.07004,37.507314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.415,34.2225],[-69.09,33.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.855,16.94125],[-72.150937,15.625312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.9975,26.0275],[52.1,24.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.565,4.6175],[-150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.955,16.075],[-112.6675,17.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.2425,26],[-91.6225,24.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.77875,46.7575],[-50.0025,47.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.105,31.2],[139.64375,34.46125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.61,50.7925],[-16.4475,50.47625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.325,21.04],[-89.8,22.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.105,-20.7075],[173.055,-26.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.681875,59.484375],[26.675273,59.982813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.668203,64.983066],[23.772578,64.575469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.4675,59.035],[-158.4125,58.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.319315,55.488536],[7.30125,54.9525],[7.049219,54.647813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.566875,60.87],[-6.54,60.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.246257,54.019458],[-5.81623,53.720801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.365,30.1475],[122.83,29.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.492695,38.715718],[8.306465,39.121387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.705703,39.142422],[9.499775,38.82457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.2,69],[-55.43,69.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.0275,30.9025],[19.2925,31.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.065625,55.181445],[16.860312,54.820225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85.11,-45.405],[90,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.530674,36.614142],[26.229688,36.745088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.197656,42.566328],[5.339375,42.061875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17,33],[-17.12375,32.668125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.09355,36.067437],[25.402498,36.429963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.333612,44.573854],[12.672344,44.39875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.255937,51.314375],[-7.974285,51.728042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.375,44.045],[28.893213,44.010146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.25,-33],[153.6175,-32.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.69,41.66125],[6.451094,41.242969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.643477,58.374727],[-1.778125,58.673125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-98.1025,10.325],[-99.99,10.6625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.7325,68.49],[-101.61,68.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.015,33.245],[155,35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.195937,35.475],[27.318728,35.996227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.028437,64.741875],[-168.15,64.27125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145,5.0575],[140.7225,9.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.72375,33.689375],[-12.91,29.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.21375,28.50125],[-88.73125,28.20875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.775,57.51],[-11.893438,58.392813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.75,0.8],[172.9025,0.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.9075,-32.535],[9.9975,-29.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172,-40.5],[171.1375,-39.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.769199,56.145088],[17.015801,55.898398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.700625,66.5775],[12.964219,66.197344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.43875,40.0125],[-137.9025,41.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,20],[-107.184375,19.263438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.585313,63.03],[19.393125,62.802188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.095,54.3325],[-159.8375,55.335],[-156.7475,55.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.985625,37.286875],[-9.46627,36.936104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6675,38],[3.99875,37.631875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.82875,34.0025],[-16.34875,34.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.997987,38.455532],[14.679375,38.454336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-30],[-36.79,-26.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.703306,36.368428],[25.402498,36.429963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.688125,35.751563],[-7.719063,35.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.55375,33.9075],[19.4875,34.23125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,0],[-41.32,1.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.332246,41.00998],[2.128066,41.129287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.235,25.47],[-73.93625,25.2175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.3725,-10.185],[147,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5825,-40],[178,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.9825,27.6325],[33.55375,28.145],[32.755,29.0825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70,30],[-69.3575,30.25625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.33,15.215],[130,13.965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.96625,47.293125],[-17.925,47.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.444375,68.808437],[15.001777,69.098027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33,35.8],[31.6375,36.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.38125,36.43125],[-2.419822,36.391848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.8525,31.2475],[-21.3675,33.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.135,6.905],[133.635,6.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.100801,49.464824],[-5.281719,49.017773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.3325,29.9975],[-83.75,29.8825],[-83.02,28.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.79625,44.13625],[29.375,44.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.867754,58.728691],[20.781685,58.439336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.6425,14.5175],[-130,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.5425,32.11],[-124.3125,32.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.784238,43.718418],[13.534766,43.69332]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.590479,42.619701],[17.851562,42.47875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.2175,-9.7525],[170.00375,-9.99375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.0275,28.115],[-87.76375,28.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.64875,40.2925],[2.938984,40.445156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.493437,51.875522],[-5.774492,52.210547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.035,25.848125],[-76.584375,25.955313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.167744,59.819575],[23.969263,59.470547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.973813,48.334272],[-4.865234,48.664141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.8475,27.6775],[-77.4975,27.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.061406,38.540312],[0.322344,38.101406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.11375,33.39],[31.56,34.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.055,-12.8575],[179.3,-8.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.58625,-16.48],[146.8825,-16.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.277383,41.321865],[8.935967,41.305891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.735059,53.634062],[6.471309,53.733105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.5825,37.82375],[8.06375,38.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.7425,10.545],[-17.001875,11.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.195312,65.672344],[-23.919844,65.875391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.6575,33.8475],[-129.2525,35.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.8875,48.0575],[-16.235,47.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.1725,42.24625],[132.955938,42.725313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.015,10.005],[-50,13.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.415,58.7575],[2.13,58.7675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.435977,57.930264],[17.867734,57.827891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.125891,35.763713],[23.643446,35.63584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.04875,63.173906],[20.442869,63.090898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96,19.5],[-93.5375,20.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.5675,41.945],[153.5975,46.16875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-10],[-84.675,-4.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.597207,40.216558],[18.329941,40.571616]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,0],[53.0775,3.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.545,-29.57],[-20,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.34125,-0.325],[125.3625,-0.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.533433,49.108145],[-2.430313,49.543438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.510781,71.015313],[23.684297,70.773828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.89625,35.715625],[-4.732188,35.990938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,8.5025],[-138.665,7.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.155,14.4525],[144.9475,13.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.932109,22.026016],[-85.899375,21.717266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.516369,59.988532],[23.592334,59.543623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.865,-20.0525],[-120,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.443027,55.467617],[14.18752,55.196726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.990781,70.305625],[30.11,70.7175],[29.848125,70.810313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.3675,33.15],[-19.96,29.978125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.42375,61.82875],[19.752969,61.821328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.00125,62.650625],[19.393125,62.802188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.2475,-21.79625],[-160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-30],[-140,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.61375,-9.98375],[142.755,-10.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.315,36.6],[170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.574688,-7.068437],[125.454375,-7.94875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.54,-28.545],[-130,-27.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.075,36.89],[-9.46627,36.936104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.479375,62.294375],[19.42375,61.82875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.809297,39.776055],[25.553795,39.514287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[63.3825,-43.6125],[66.65,-43.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.884609,38.905703],[0.61875,39.029219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.282207,57.45085],[9.011016,57.479687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.5025,10.645],[103.12,10.21875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.33875,41.3125],[-69.25,41.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.41875,55.302656],[-1.603267,55.799884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.58043,49.953359],[-4.693389,49.700889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.7575,42.685],[136.01,43.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.4925,-40.0525],[-142.555,-42.8625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.026172,36.29752],[12.941094,36.737188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,10],[-45.0025,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.425,8.665],[-32.7625,7.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.4175,-9.53],[-161.2225,-8.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.136484,66.534727],[-24.081875,66.418125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.3725,4.6825],[-145,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.700625,40.262812],[0.154248,39.934648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.7725,50.9625],[-11.24,50.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.5,64.3],[-168.15,64.27125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.4475,0.3875],[8,0.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.273047,37.273672],[20.554375,36.50625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.179121,39.955371],[4.927604,39.853875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.172656,54.618281],[5.662539,54.805371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-179.4025,-37.01],[-173.465,-36.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,50],[-153.455,48.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.589375,49.12875],[-10.5575,48.1875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,5.0575],[-31.2425,1.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.43,-17.6075],[153.0175,-18.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,15],[-135.020625,15.224375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.8125,40.445],[-73.780625,40.06875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.768555,56.627061],[11.887881,56.8654]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.22625,65.060625],[25.38,64.985],[25.4175,65],[25.22625,65.060625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.32,30.6325],[-60.5425,30.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.275746,50.442839],[0.696914,50.83457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.14457,39.892959],[19.11543,39.478145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.631413,38.327471],[24.302568,38.575815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.1925,-35.5825],[110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.748981,57.371318],[11.44844,57.330281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.021406,54.307031],[-0.232188,54.404375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.677383,57.45605],[-1.634492,57.1775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.92985,36.401459],[20.928555,36.400508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94,6.7],[91.1725,9.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.990234,52.043125],[-6.949141,51.602773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.35625,15.36625],[-133.1575,20.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.32,1.34],[-40.95,1.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.8575,0.7225],[-92.5125,2.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.117656,58.577188],[19.775469,59.146406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.3675,50.74],[-139.8075,50.5925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.289603,48.464297],[-5.104897,47.958721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.915,35.365156],[-0.555,36.28875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.863359,44.43959],[13.619668,44.030625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.21875,32.92875],[127.85,33.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.035,25.848125],[-77.62,25.20875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.0125,60.155],[29.349375,60.0325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.29125,57.9275],[-0.49,57.77125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.597188,45.826875],[-2.36625,45.32375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.324492,36.270234],[-7.827407,35.890791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.43,-17.6075],[146.58625,-16.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.340625,43.893125],[-3.6375,43.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.295312,25.939062],[-76.085,25.4825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.7975,27.605],[-95.44,27.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,10],[-130,4.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.12,47.78],[-8.975,48.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.0925,17.215],[65.0825,15.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.774492,52.210547],[-5.625,52.1425],[-5.534102,52.231543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.54,-34.385],[151.5,-34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.345,34.3],[-8.3925,34.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.3925,46.21],[36.7725,45.543437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[71.1475,-6.0675],[71.82375,-5.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,25.2775],[-128.6125,28.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.07375,18.6675],[-76.938672,18.803281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.0625,1.134375],[172.9025,0.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.343398,39.702012],[19.487891,39.278262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.530674,36.614142],[26.519492,36.193398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.725,-26.8775],[103.395,-28.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.812754,40.071875],[24.505422,39.828574]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0025,-24.9625],[163.34375,-23.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114,-29],[115.6,-32],[114.8125,-33.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.45,35.055],[35.346875,34.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-148.9975,59.27125],[-149,59.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.375,-45.72],[-64.7,-45.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.776404,37.322181],[16.024375,37.33875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.45375,58.35875],[23.613184,57.938828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.8825,-6.095],[106.455,-5.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.902031,50.647344],[154.645,50.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.4775,19.8875],[-66.369375,20.040469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.2875,44.8775],[-154.65,44.9575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.6,26.3],[50.7125,26.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155,25.2775],[160,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.1825,57.6275],[5.2525,57.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.04,57.3575],[4.02375,57.048125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,17.755],[161.1925,18.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.13625,58.46375],[-11.893438,58.392813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.4675,52.49],[-127.3625,50.8975],[-125.57,50.55],[-124.48375,49.89875],[-123.3775,49.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,1.1725],[-110,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.972529,37.031776],[26.032949,36.54707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43,69],[45.4975,69.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.86,38.99875],[-72.91625,39.27875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.683516,65.004453],[22.00625,65.015],[22.405938,65.110625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-2.02],[50,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.902031,50.647344],[156.28,49.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-40],[-173.465,-36.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-10],[-90,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.762246,48.171055],[-5.829219,47.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-112.9175,-30.055],[-120,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.51625,36.93125],[2.74375,37.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.805,35.971875],[-9.17125,35.970469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.7575,31.59],[-14.30875,31.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.332227,56.713535],[-2.179141,56.511172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.850234,54.665078],[20.475,54.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.86,-51.435],[-75.195,-52.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.07375,18.6675],[-75.565,18.588125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.4325,36.11625],[-73.82875,35.99375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.07625,38.80125],[-74.8375,38.6025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.85605,38.739146],[14.679375,38.454336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.9,58.7],[154.4875,54.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.497386,42.746442],[10.269326,43.036865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-38.6275],[-149.9975,-34.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.6125,45.49625],[-3.872813,45.473125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.402498,36.429963],[25.48186,36.060669]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.359688,32.521094],[131.8175,30.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.849297,39.40418],[13.842695,39.815234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.865,39.54],[-30,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.96,29.978125],[-30,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.792422,57.810625],[23.175,58.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.745469,32.9625],[31.179063,33.616875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.86,-16.17875],[145.4,-14.7],[142.1325,-10.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.005625,28.862813],[50.98,27.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.216087,56.758495],[11.887881,56.8654]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,29.5775],[-60,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.81,11.455],[-80,9.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.455,66.1],[36.416875,66.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.82375,39.937188],[-9.90625,39.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.768125,-5.03125],[127.6125,-3.67],[126.831719,-2.3925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.1225,40.9825],[-40,40.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.497813,56.225313],[4.252344,55.362188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.33,25.5875],[140,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.11,-45.405],[10.42,-40.4475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.505,-11.18],[159.79,-10.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.43585,54.216177],[7.72515,53.843041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155,25.2775],[158.4825,21.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.943125,62.992031],[7.3,63.349844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.938125,40.468125],[-10.00375,40.836758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.795,4.15],[-100,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.740625,45.37125],[12.964375,45.506953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.3425,33.0425],[135.1225,32.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.07,70.885],[-51.675,70.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.96,13.59],[-150,12.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-10],[-4.26,-10.0325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.744375,34.8025],[-73.808125,35.133125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.4725,28.105],[-87.635,27.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.55,70.165],[-165.7475,70.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.5975,52.705],[-33.175,53.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.958125,20.08],[-42.27,20.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.961719,60.365117],[3.332969,60.713437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50],[-19.53,50.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.73,39.3275],[-20,39.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-10],[-22.8075,-12.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.06375,38.045],[8.492695,38.715718]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.64,34.7975],[26.436563,35.03625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.002041,55.378682],[-7.274375,56.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.716875,29.488125],[-93.6675,29.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.791707,36.625627],[24.844917,36.257485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.560938,58.811875],[18.430703,58.305273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.314688,36.95625],[23.287891,36.571968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.924971,44.285557],[8.598486,44.278232]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.4925,26.93],[-94.5675,26.1625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.9225,39.4],[7.584219,38.998438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.4625,25.7075],[-87.23,22.931875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.421875,-46.995625],[-58.875,-45.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.655576,41.640464],[17.110371,41.430056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.11,39.02625],[-73.895938,39.374844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.895,69.775],[57.55,70.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.2975,12.4525],[-80.1125,10.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-40],[-39.9975,-35.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75.955,6.97],[73.815,4.8575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.94375,27.12375],[-76.4625,27.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,41.9275],[-130.0025,43.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.716875,29.488125],[-93.21625,29.19125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.520449,37.301445],[12.943418,37.058242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.35,26.835],[-130,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.38,35.04],[32.364395,34.57127]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.035312,37.537031],[0.7125,37.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.204447,38.802058],[14.85605,38.739146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.6975,-49.3725],[70.05375,-48.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.942187,47.478906],[-4.62,47.541875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.565879,57.725234],[-1.935547,57.981719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.4825,26.7225],[-90.927813,26.094062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.441797,61.112109],[4.146172,60.864141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.67,20.05],[-140,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.6725,-0.3325],[-95.0025,-5.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.619805,48.723728],[-5.872583,48.592964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.046392,53.582031],[1.014375,53.32875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.355,48.0175],[-13.93,47.8675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.079219,35.722812],[-75.1075,35.2325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.6,3],[106.4675,5.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.006055,55.484766],[6.710469,55.529062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.65125,58.699688],[-3.60125,58.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.849297,39.40418],[14.087344,39.546016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,12.755],[-150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-39.1225,40.9825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.049434,40.175664],[24.953335,39.817231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.574688,-7.068437],[126.5075,-6.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.285,46.569063],[-6.859687,47.153437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.1575,-32.8225],[134.5,-34],[136,-35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.525,-26.9575],[-170,-27.2575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.7275,39.145],[-71.795,38.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.061953,54.614063],[-5.380625,54.685947]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.4375,40.075],[-132.405,40.07375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.9575,71.2125],[-54.07,70.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.25,-15.9425],[9.09,-19.2025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.46875,39.0375],[8.492695,38.715718]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.9725,21.0075],[-79.2525,16.8475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.705547,40.825469],[12.346079,41.339282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.5675,-25.2975],[112.80375,-25.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.778315,54.922671],[-0.2175,55.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.92125,64.09875],[-13.9575,63.79625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.349375,60.0325],[29.7375,59.99],[29.9775,59.9275],[30.19875,59.9075],[30.565,59.825],[30.7075,59.7825],[33.1425,60.61],[33.1775,60.645],[35.6975,61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.2675,2.3575],[-30,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.9925,37.91],[-11.155,38.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.7575,50.33],[-4.714255,50.318742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.81875,31.25625],[29.36,31.79875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.1025,-13.19375],[174.845,-14.54875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.696914,50.83457],[0.345,50.785],[0.042178,50.586245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.4025,50.85],[-30.055938,50.082188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.03,-6.085],[65.055,-10.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.792734,43.166094],[4.265,43.365],[4.5475,43.29375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.8775,53.495],[-176.955,52.8575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.765,17.15],[-158.3775,20.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.86,27.655],[-89.87,26.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.928394,51.919619],[2.325,52.028437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.89875,46.202969],[-130,48.56]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.248164,42.088457],[8.488291,41.900225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.533433,49.108145],[-2.776172,49.213906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.5275,62.9775],[-167.36,63.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.809297,39.776055],[26.076138,39.862085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-30],[90.103125,-19.976875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.5525,38.8],[-68.415,37.8275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.5575,16.1475],[-72.150937,15.625312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.458203,48.838672],[-6.724219,48.938906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.340217,38.629578],[25.736152,38.705385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.545,24.818125],[-150.9225,29.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.649424,64.811309],[-13.942051,64.684297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.644219,43.927656],[-9.235039,44.361328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.396704,38.073561],[11.666055,38.239648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.716875,26.199375],[-77.6375,26.81625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.66,39.6525],[-71.1175,39.8125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.5525,25.851875],[123.505,25.56]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.305,2.175],[-102.69,2.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.278125,36.711875],[-11.07,37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.912393,41.787236],[17.135156,41.994062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.89625,35.715625],[-4.6625,35.9],[-4.988711,36.006094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84,26.14],[-84.07875,25.73375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-40],[95,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-30],[-112.9175,-30.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.89875,45.1325],[-7.125,44.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114,-29],[114.44,-28.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.37,-2.6225],[-103.445,-1.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.812148,43.212773],[9.141162,43.092314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.839488,49.887781],[-1.483875,49.806055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-106.425,18.7275],[-101.135625,16.14875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.768125,-5.03125],[125.7875,-5.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.58375,34.216875],[-70.215,32.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.036875,30.944375],[-72.63625,31.319375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.07125,32.385],[-71.495,32.0825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.07,35.195],[21.5725,35.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.3175,29.95],[-87.3475,29.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.853125,35.741719],[17.385,35.69],[15.936445,36.140889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.077656,41.655078],[10.748457,41.876426]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.970938,66.24],[-18.975,66.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.091133,58.451396],[17.73792,58.188291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.59231,39.925566],[25.809297,39.776055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.288516,36.661797],[-0.1375,37.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.790234,53.982109],[6.471309,53.733105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.5575,-17.795],[0,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-40],[73.59,-43.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.9725,56.6775],[-152,57.5],[-151.905,57.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.055,8.175],[67.3475,7.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.8925,34.785],[-6.8275,35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.385,-35.0175],[-16.63,-33.6625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.7725,-8.975],[132.9075,-8.97625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.2675,13.1125],[140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.024844,49.586641],[-4.343223,49.781855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.405,-11.475],[-132.4775,-12.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.261014,21.467326],[-159.255,21.8275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.0825,70.9325],[27.48625,71.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.1975,28.7275],[-72.945,28.8275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.41875,63.015625],[5.385,62.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.190925,56.319414],[16.476875,56.010977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,18.4325],[70,16.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.633438,58.403125],[5.473301,58.69998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.976875,53.05875],[4.638936,53.120352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.822188,49.379688],[-6.671084,49.779092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.08001,45.130343],[12.95,45.3275],[12.740625,45.37125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.106563,28.959063],[-15.86,28.701563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.12707,57.238789],[8.388594,57.067383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.09,57.773125],[23.905249,57.467534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[112.175,-6.28],[109.28,-6.13],[107.33,-5.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[84.195,-14.3525],[86.76,-13.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.871875,35.83375],[-10.33,36.0725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-16.1775,41.2075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.740625,1.6625],[109.935,7.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.0875,-36.2275],[-165,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.425,-25.5325],[7.895,-22.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.985,44.4275],[-8.2475,44.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.618125,43.990098],[-8.916875,44.328125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.906953,54.030547],[0.405,54.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.3,-4.2],[40.01375,-6.54625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.4975,61.1475],[-4.345,61.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.9425,42.0725],[-32.99,43.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,10],[141.3875,10.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.545,40.31],[-9.82375,39.937188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.3425,53.1025],[-30.0025,53.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.260625,62.479375],[-168.4725,62.0425],[-168.57875,61.7775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.465,28.225],[-74.42,27.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.788789,42.213477],[10.748457,41.876426]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.8175,38.8225],[-137.425,39.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.339854,58.181816],[20.117656,58.577188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.555937,58.307812],[2.945,58.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.5425,70.4575],[20.725,70.63125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.3475,30.0875],[-56.66,29.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.5175,57.9475],[-17.7025,57.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.04375,43.778125],[-3.340625,43.893125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.2175,50.9125],[-27.3425,53.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.634346,41.310195],[16.967832,41.163145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.076912,58.656553],[9.682773,58.456992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.630937,35.532813],[-15.5075,35.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.3125,34.9625],[141.3,35.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.1,12.2],[111.83125,16.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.375,16.79],[146.4375,19.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.0475,-7.88],[116.275,-7.25625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.215781,36.429844],[-4.53168,36.183516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.419062,43.011875],[14.791904,43.008428]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.8375,5.12],[172.915625,1.430625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.179121,39.955371],[4.654375,40.162188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.3425,42.4975],[-154.6975,42.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.554133,55.233171],[12.961738,55.108965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.16,58.649062],[-5.73125,58.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.5075,-3.465],[-30,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.595,-41.5725],[3.945,-44.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.098691,54.491074],[11.814375,54.605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,20],[173.4775,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.595547,-14.152734],[-170,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.356562,29.147813],[-88.93,28.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.244062,64.816875],[22.093125,64.510938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.7325,68.49],[-95.81375,68.37875],[-95.36875,68.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.990742,50.061914],[0.255674,49.907744]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.341704,49.829033],[-5.349453,49.402109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.620781,41.540937],[18.97,41.323906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.13875,16.43875],[-73,17.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.677383,57.45605],[-1.366055,57.377656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.05,46.00875],[-4.492188,46.009062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.095,25.7525],[-15.2325,27.335],[-15.470937,28.197734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.3325,31.65],[-14.7975,29.77875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[102.9675,1.58],[102.595,1.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.865,-20.0525],[-130,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.919844,40.300645],[14.238622,40.677594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.305776,58.233301],[6.121537,57.878751]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.548125,34.40125],[26.656562,34.800313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.63,38.10875],[7.5825,37.82375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.4,-14.5],[127,-13.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.878408,57.549116],[18.060703,57.296289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.483052,43.441766],[9.755635,43.946704]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.833379,50.535977],[-1.532946,50.24703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,51.3],[176.09,47.6825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.700071,61.24363],[18.800391,60.92625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-27.2575],[-170,-26.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.04,43.8],[29.535625,42.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.5075,-18.15],[159.74875,-19.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.8525,55.105703],[20.585,55.504375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-98.7525,-20.0175],[-100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.183784,44.192361],[9.038979,43.900977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.264751,59.307012],[21.945625,59.021563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.5,-21],[-175.21625,-21.03625],[-170,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.88,54.475],[10.145814,54.451068]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-31.5775],[-138.86,-31.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.8325,-51.6975],[-57.63125,-51.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.419287,55.636387],[16.732891,55.796875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.67,29.265],[-154.545,24.818125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.597207,40.216558],[18.465,39.8975],[18.279155,39.716597]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,0],[57.545,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.7375,58.75],[2.16,59.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.923047,57.673516],[-4.185,57.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.995,55.0675],[18.30475,55.035637]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.5125,64.97],[39.1025,65.0725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.935,4.9925],[-95.795,4.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.52375,68.06],[13.891875,67.750625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.3075,51.325625],[-8.117031,50.880625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.37,-2.6225],[-106.345,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.93,67.0125],[41.5975,67.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.809434,39.477559],[15.116953,39.34207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.55,42.75625],[14.419062,43.011875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.0025,46.615],[-140.041875,49.915625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.5,-21],[-172.485,-16.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.708457,69.904512],[16.5775,69.43375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30,-40],[32.8425,-37.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.545,63.2925],[-20.073125,63.019375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.5275,-10.0175],[-14.189063,-8.093438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.96,0],[-28.1425,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.0646,57.780654],[-2.66375,57.96625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.81125,65.15875],[-23.352881,65.077998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.2225,-31.54375],[153.48,-32.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.639141,56.784609],[10.418008,56.664336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.017197,44.858936],[12.68001,44.979209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-118.915,33.47],[-120.6675,33.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.2375,68.42],[16.87,68.434375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,30],[-140,31.3875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.305,-17.445],[-96.27,-20.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.97,46.43],[-154.2875,44.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.745,56.785],[2.495,56.935625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.10625,61.7375],[4.180312,61.413438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.52,-54.6175],[-62.54,-54.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.24,28.825],[-78.70375,28.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.0025,55.1925],[-20.0025,56.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-30],[-130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[84.7775,11.17],[85.695,10.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,37.67],[-140,39.5925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.638936,53.120352],[4.38042,52.485508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.08875,39.6475],[-69.30875,38.91625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.8,-5.2],[106.455,-5.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.418867,54.669844],[7.43585,54.216177]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.891875,67.750625],[14.272461,67.835117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.2375,41.3],[3.94875,41.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.5025,-41.6775],[45.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.934456,57.944988],[19.250391,57.807266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.995,-32.17],[-140,-31.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.098691,54.491074],[11.806523,54.399775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95,-35.385],[100,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.456875,38.337187],[-11.245,38.830313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.148335,42.885435],[5.197656,42.566328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.436602,38.653398],[-27.525,38.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.41708,54.623066],[-0.232188,54.404375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.46,42.935],[32.89625,42.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6525,-19.5675],[3.5425,-16.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.1,71.3],[27.48625,71.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.760625,37.49875],[-12.16875,37.699336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.61,-35.0125],[0.0025,-35.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[175.2,-35.3],[174,-34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,40],[-130.835,40.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.285,18.84375],[-64.891563,18.311563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.555937,58.307812],[1.195,57.9375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.995391,46.2175],[-2.557842,46.563525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.9,28.285],[-89.86,27.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.99,43.1925],[-30.0025,44.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,0],[-10,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.38,-2.7475],[110.6975,-3.5975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,60],[-34.5875,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.9175,-6.02],[53.8225,-4.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.053223,43.477959],[8.714106,43.588721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.435625,53.429375],[2.1325,53.50625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.0025,-34.6925],[5.8325,-34.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.8475,10.0225],[-48.345,11.7375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.21375,26.34875],[51.6,26.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,25.2775],[-120,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.620322,58.012783],[18.430703,58.305273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,16.3225],[-50.013125,19.969375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.1875,36.48],[-126.38,36.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.683516,65.004453],[21.7175,64.530723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.98625,54.46125],[-165.3625,54.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.530248,42.472596],[14.23,42.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.595,7.6425],[-36.0175,10.010625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.749147,57.717465],[10.96079,57.473796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.829219,47.7],[-6.068125,47.966406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.499775,38.82457],[10.0225,38.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.49457,55.8925],[5.200312,56.110312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.31832,40.896455],[13.870631,40.63457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.43875,40.0125],[-139.958438,40.086875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.139375,51.521875],[-10.2825,51.206875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.9925,35.875],[34.753047,35.780938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.024558,41.039642],[12.705547,40.825469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.6025,32.7175],[30.745469,32.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.308945,11.344648],[-61.527526,11.586982],[-61.804063,11.961875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.7575,44.095],[-65.465,43.24375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.6075,47.655],[-143.7425,46.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.415,71.4275],[-159.0675,71.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.0075,20.8025],[-68.4075,20.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.3175,48.93],[-20.3475,49.6875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.56875,-52.73],[-80,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.485,54.2575],[0.906953,54.030547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.817515,49.94198],[-5.610078,49.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.116108,37.745186],[25.769736,37.73077]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.437969,41.627891],[11.744297,41.561094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.339375,42.061875],[5.555,41.68125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.6825,-24.21],[153.9125,-24.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43,-26],[48.1,-26.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.5325,38.12],[9.17501,38.520723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.035,-25.9975],[-80,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.644219,69.6175],[15.4575,69.94],[15.7575,70.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.4675,18.04],[144.155,14.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-29.0775],[-89.55,-29.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.645,25.6125],[-40,27.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.1675,66.99375],[42.295,68.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.3075,16.03],[-161.0975,11.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.975874,49.366826],[-5.713926,49.025977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121,-5.5],[120.6725,-3.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-40],[75.435,-35.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.256875,59.113125],[-1.356133,58.670469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.912383,43.041563],[6.423125,43.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.478906,48.577344],[-6.300605,48.218477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.89,49.391719],[-1.936855,48.920098]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.086406,40.580312],[8.3175,40.565],[8.1925,40.5475],[8.086406,40.580312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.949375,43.999375],[-4.28,44.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.65875,36.380625],[-8.543125,36.07875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.1825,37.815],[122.59125,37.86625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.6075,47.655],[-140.0025,46.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.5075,35.4975],[-16.0825,35.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.88375,-9.961875],[70,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.545,37.4875],[-71.952969,38.052109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.805,52.785],[-4.485823,53.499235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.300833,63.439908],[20.442869,63.090898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.2075,36.27],[-7.827407,35.890791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.787695,49.333008],[-5.02,49.16375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.26,38.25],[-70.97,38.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.953125,68.253438],[15.784375,68.288242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.9575,34.52],[-68.415,34.2225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.028125,38.784062],[10.986875,38.405938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.96079,57.473796],[11.382346,57.877431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.240937,37.558594],[10.615547,37.631641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.3375,-8.3725],[-155,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.7475,67.1525],[-169.15,65.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.1825,27.4675],[-79.316875,26.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.034219,58.747344],[-6.57625,58.60875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.765,40.315],[4.519375,39.689141]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-70.29,-53.61],[-70.7125,-53.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.0275,57.445],[-23.465,56.9825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.158611,55.906924],[15.891122,55.877554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.8275,43.325],[37.365,43.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,35.385],[-36.4375,33.8725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,-50],[130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-50],[-130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.391406,59.783828],[26.675273,59.982813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.92985,36.401459],[20.928772,36.401431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.955938,42.725313],[133.7575,42.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.685,42.5925],[-40.0025,42.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.7575,-35.1625],[-39.9975,-35.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.07,33.19125],[135.125313,34.508437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.68125,41.27125],[-11.87625,41.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.3675,7.12],[171.3525,7.1375],[170.9575,6.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.59375,50.1575],[156.902031,50.647344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.76,24.7025],[-19.94,22.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.6,-5.2],[152.05,-3.8],[147,-4.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.631641,34.477109],[31,33.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.064385,43.102422],[28.4375,43.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.676641,54.962285],[12.28207,54.708984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.608438,35.794063],[-8.458906,35.434766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.451387,38.769238],[1.061406,38.540312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.67,29.265],[-150.9225,29.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.4775,50.4375],[-15.1675,50.4075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.09397,60.176763],[18.860273,60.326094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.974285,51.728042],[-8.338203,51.584414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.7025,-39.6125],[149.445,-40.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.3,63.349844],[6.41875,63.015625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141,-38.7],[130,-40]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[106.48125,77.855],[108.02125,77.73125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.668906,57.37418],[19.250391,57.807266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.105,-20.7075],[178.9,-20.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.957869,58.265466],[5.691743,57.919163]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.51625,54.099375],[1.88,54.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.0475,20.7875],[-67.19,19.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.42375,60.516875],[0.7275,60.8275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.7875,-12.915],[-90,-14.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0175,-30],[156.55,-31.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.43,69.715],[-54.73,70.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.410937,43.8925],[-6.84,44.29]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.92125,31.47125],[-64.3125,31.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.69375,40.45375],[-73.0275,40.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.301875,58.63625],[0.7375,58.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.8725,-36.4275],[-150,-38.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.2075,31.82],[-76.42,31.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.423047,60.707695],[18.21,60.4075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.173579,56.549888],[7.379629,56.242959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,20],[-170,20.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.44,1.46],[-145,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.26,30.3725],[-80.175,30.388125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.5375,45.88],[-13.9875,45.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.9025,-43.47],[160.0025,-44.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.17375,-45.68875],[-50,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.185,28.135],[-86.31,28.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.444408,37.090765],[26.675459,37.484121]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.238955,38.558301],[13.144531,38.889063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.7425,46.635],[-145.1125,45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,49.71],[-20.3475,49.6875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.106875,51.918594],[-5.865488,51.606768]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.47,27.425],[-30,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.79,32.745],[-12.3325,31.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.5925,43.65],[30.4325,44.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.480055,36.448539],[24.844917,36.257485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.45,-8.3175],[130,-10.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.24,-30.07],[-10.8175,-30.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.3775,25.62375],[38.6425,21.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,4.1925],[-40,2.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.04,-0.021875],[-46.4,2.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.418945,55.960781],[17.431328,55.567109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.0025,29.07375],[-69.935,28.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.93625,25.2175],[-73.95625,26.42125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.758359,55.537734],[18.239062,55.553359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-117.77,32.665],[-116.1725,28.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.912383,43.041563],[7.521152,43.106621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-50],[-110,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88.9725,13.265],[93.3,14.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.59,33.315],[28.975,33.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.494023,37.61957],[-0.404375,38.217422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.7425,35.245],[30.4325,35.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.965,-55.315],[-63.4725,-55.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.437969,41.627891],[11.316455,41.846387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.938125,40.468125],[-9.90625,39.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.06113,54.763171],[15.519507,54.514373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.5825,0],[-41.32,1.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.21,-49.3575],[70.47,-49.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.705,49.365],[-7.454375,49.680156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.339375,42.475],[-133.5225,43.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.364395,34.57127],[32.105,34.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-172.75,60.5],[-168.8525,60.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.131104,36.23646],[23.89373,35.965781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.417383,59.887586],[24.692422,59.539893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.927604,39.853875],[4.7475,39.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.0225,37.3675],[-6.02,37.3375],[-6.515518,36.735889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.005,-27.00875],[13.0875,-23.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.6375,58.14125],[4.04625,58.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[62.6075,16.5525],[59.445,15.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.1225,55.7075],[2.7375,55.8425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.430313,49.543438],[-2.941016,49.513984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.1425,35.5175],[-12.836875,35.58125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.6675,57.016875],[4.9975,57.20125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.4025,66.3825],[6.865,65.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.9975,-35.015],[-5.39,-35.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.7625,-12.4625],[148.4125,-13.8675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-50],[-97.635,-52.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.22,56.395],[-134.5725,55.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.0725,11.4375],[110.332813,11.999063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.77125,51.155],[3.609661,51.431418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.151791,39.333627],[8.099512,38.77126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40,-30],[48.1,-26.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.82,70.62375],[17.1225,70.135],[16.708457,69.904512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.76375,28.015],[-87.055,27.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.549297,3.524844],[-4,4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.1875,14.03],[51,13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.666875,38.215156],[5.96625,37.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.7,43.3525],[32.6025,43.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[155.7075,20.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.41,28.88125],[-92.32,29.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.995444,53.292515],[-5.527939,53.538066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.6425,39.4075],[-30.0225,38.948437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.86207,57.175],[-1.3175,56.8225],[-1.613594,56.419687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.013125,19.969375],[-52.0175,22.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.457852,53.575371],[1.046392,53.582031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.3825,58.61],[-85.155,59.9475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.91793,54.895625],[17.644219,54.943906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.075,4.4075],[160,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.3825,-23.82375],[153.4,-24.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.444746,62.397852],[17.719883,62.298301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.0025,-11.7875],[-130,-13.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.00125,35.73],[-9.17125,35.970469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.12,47.295],[-48.0275,48.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-40,40.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.938984,40.445156],[3.247812,40.450625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.5,-28.125],[10.425,-25.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.5575,-16.4925],[162.365,-17.76]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,6.3225],[70,8.59125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.289297,53.870781],[-4.555195,53.94082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.04375,65.665937],[-21.326719,66.054297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.16127,42.462773],[17.422959,41.843896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.28625,36.695],[11.3775,35.9225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.4,23.5],[-111.5,27.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.3,11.6],[50.9475,12.265],[44.943125,12.02375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.223164,37.666406],[7.5825,37.82375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,21.49],[-49.2075,20.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.6425,21.1375],[38.4975,21.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.060703,57.296289],[18.185,57.3875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.909455,34.52664],[33.738594,34.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,0],[80,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.1325,-34.5325],[114.1925,-35.5825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.11,-45.4025],[50,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.43,54.335],[1.635,54.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.57,-23.235],[-174.455,-24.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.181094,35.863906],[-8.458906,35.434766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-30],[-135.01625,-25.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.85625,52.76375],[3.254312,53.060234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.993203,38.830684],[23.050189,39.112351],[23.46458,39.10314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.26,25.7775],[120,25.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.831719,-2.3925],[128.235,-1.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.925582,36.401348],[20.213575,36.382847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.0275,20.67],[127.725,24.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.4875,46.875],[-7.01,47.501562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.126771,55.551044],[15.891122,55.877554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.919844,65.875391],[-23.485,65.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.480322,36.283815],[14.847993,36.641846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,60],[-50.0025,52.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.166875,41.685156],[16.912393,41.787236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.836875,35.58125],[-13.01375,35.09375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.9575,44.0875],[-7.410937,43.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.97625,-43.865625],[-55.99,-44.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-40],[90,-42.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.295,41.312383],[10.131699,41.730029]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.5925,52.8],[-47.6625,52.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.483418,60.107104],[5.109297,60.063438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.634492,57.1775],[-1.37625,57.105],[-0.86207,57.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.27,35.79],[-73.808125,35.133125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.656172,36.203125],[-12.229375,36.69125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.104375,49.138437],[-1.89,49.391719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.28,44.89],[-4.8475,44.794375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.827482,36.412427],[26.530674,36.614142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.861299,36.672075],[24.357578,36.687515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.390625,38.802813],[1.061406,38.540312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50],[-20,50.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.671084,49.779092],[-5.975874,49.366826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.71625,39.005],[-11.8575,38.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.719063,35.5475],[-7.8925,34.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.7325,17.7525],[-65.841875,17.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.854425,35.840965],[28.093125,36.121875],[28.283672,36.377031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.14,42.396406],[27.93,42.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.269326,43.036865],[10.01048,42.660972]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.3975,45.0675],[-10.67,43.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,35.385],[-33.73,34.055]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[106.855,76.5425],[107.6925,76.9025],[108.02125,77.73125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.129075,43.962122],[14.635117,43.933633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9246,50.200186],[-2.34125,50.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.716875,29.488125],[-93.32,29.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.114253,40.711815],[0.947939,40.484336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.4075,20.35],[-68.0475,20.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.2525,16.215],[39.335,19.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.641016,58.810508],[22.225,58.5525],[21.945625,59.021563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.375,34.005],[-71.495,32.0825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.516369,59.988532],[23.883651,59.737272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.53,33.2475],[-67.82625,33.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.045,44.7725],[-9.385,46.7575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.165,56.555],[-0.86207,57.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.100801,49.464824],[-5.02,49.16375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.2725,5.455],[70.82,8.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.4325,33.735],[23.3,34.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.024558,41.039642],[12.784766,41.263867],[12.346079,41.339282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.74,-9.72],[0,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.559668,57.22002],[7.277881,56.896787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.305,2.175],[-107.0175,1.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.4675,52.49],[-129,52],[-129.5075,50.9875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.245,56.3675],[0.49,56.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.533376,36.630793],[23.62125,36.955898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.04,-22.09625],[-120.7475,-23.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.907578,38.803672],[-9.852578,39.129922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.585,2.8875],[127.3925,2.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-40],[60,-37.5975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-10],[-14.189063,-8.093438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.2525,56.5075],[-165.1,55.6975],[-165.19875,55.24125],[-165.230312,54.725938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.46,8.0775],[121.8925,6.9475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,62.1],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.948125,7.06875],[-81.645,5.8575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.35875,21.6275],[-66.95875,22.11375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.11043,62.380625],[20.057578,62.840937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.025,-6.03],[-115,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.525,-25.6975],[100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-27.9925],[-30,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.722383,36.033086],[-3.27042,36.278008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.98625,69.51875],[16.74875,69.080313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.34,62.6175],[7.052187,62.733438],[6.943125,62.992031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.510937,38.706875],[-73.815,38.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.75,23.8775],[-24.36875,25.85875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.247812,40.450625],[3.02,40.200625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.595,-45.7275],[-63.9,-43.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.46,8.0775],[120.7525,8.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[63.155,20.0625],[65.095,18.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.25,-39.3025],[-52.930312,-39.90625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.11,-45.405],[3.945,-44.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.86,-33.4125],[7.1775,-33.0675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.305,39.3975],[6.5125,38.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.065625,55.589805],[19.76375,55.41875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.3975,26.70125],[-72.5875,25.85125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.907422,60.282812],[-3.7875,59.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.020781,44.73082],[14.216855,44.554338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,40],[-155.1125,40.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.8875,-45.4025],[-160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.2825,49.94],[-5.817515,49.94198]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.32,55.0575],[1.58,55.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.12875,-13.985],[169.265,-17.07625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.671152,56.150957],[7.446348,55.897129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.7175,64.530723],[21.446875,64.02625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.2175,-35.5],[118,-35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-119.2,-0.8125],[-115.44,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.505,-33.09],[160.0175,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.964893,42.586113],[16.168137,42.247499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.8425,51.4975],[-150.3075,51.2675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.924194,39.296875],[24.095647,38.93687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.56,66.755],[-15.285625,66.604375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.365,30.1475],[122.71375,30.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.7475,-13.1275],[153.8025,-11.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.90125,20.06875],[134.215,20.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.7175,-20.5025],[159.7325,-20.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68,-52.4],[-62.87,-50.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.96,36.2725],[-35,35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.7325,-20.2],[159.74875,-19.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-179.275,24.2525],[-178.61,27.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.4875,36.38],[-23.85875,36.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.6975,42.52],[-154.85,41.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.8125,-17.359727],[-154.105,-14.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.505422,39.828574],[24.0525,39.725586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.9675,28.08],[-50,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.935493,55.269111],[7.498594,54.987734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,5.0575],[-140,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.935967,41.305891],[8.752168,41.683691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.605,47.325],[-59.07,47.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.289297,53.870781],[-4.761875,53.75125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.10125,2.60125],[-27.2675,2.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.619668,44.030625],[13.534766,43.69332]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.2925,37.3075],[15.825781,37.147031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.674375,45.144375],[-8.320937,45.656562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.62,-39.3575],[-51.105,-39.9575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-40],[85,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.847197,47.9571],[-4.973813,48.334272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.82,28.885],[-140,28.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.222227,58.222451],[21.155,57.743437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.353125,14.503125],[160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,-40],[120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.3725,28.5825],[133.395,27.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.5,-10],[153.84,-10.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.4725,50.1825],[-8.395625,50.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20,-50],[10,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.2025,14.9675],[-160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.053223,43.477959],[8.812148,43.212773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.2325,19.6025],[38.1175,19.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.086406,40.580312],[8.103125,40.953125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.415,37.8275],[-68.3725,37.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.48,-34.885],[136.88,-35.545],[136.625,-35.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.72402,54.964635],[15.96499,55.151123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.865488,51.606768],[-5.24647,51.492124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.047688,50.190049],[-4.964746,49.878513]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.0375,47.1775],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.28625,37.22375],[-123.12625,36.93375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-30],[-140,-31.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.85,32.09625],[-72.975,31.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.41,-31.535],[0,-31.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.897454,58.567219],[-2.6425,58.3975],[-2.359727,58.123125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-22.7875],[0,-22.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-37.895,40.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[84.28,-15.88],[80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.38,34.9275],[-74.355,34.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.707686,57.088086],[20.021406,57.228848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.197656,40.590156],[10.704219,40.423906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.7775,-36.04],[-49.915,-38.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.864043,44.238911],[14.635117,43.933633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.73,39.3275],[-22.31375,37.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.235,42.5525],[-11.0875,43.1875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,62.1],[-180,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.2475,44.3],[-7.67,45.2175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.48,32.125],[-79.8,32.75],[-78.875,32.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.378438,65.001875],[22.648438,65.283398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.9025,-43.47],[159.5125,-40.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.208984,55.821055],[15.451475,55.546858]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.93125,-4.59],[116.4075,-5.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.060625,46.1975],[-124.9925,45.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.686284,58.244041],[8.635947,57.806558]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.435625,53.429375],[3.024492,53.529102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.2575,2.47],[-40,2.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.825,16.97],[155,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.86,27.655],[-90.4825,26.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.6825,59.8975],[2.73375,59.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.9575,29.52],[-10.1,30.2],[-10.1,31.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.9575,29.52],[-10.1,31.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.928555,36.400508],[21.2925,36.39125],[21.663691,36.420527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.2625,32.46],[-123.5425,32.11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.705938,45.724375],[-4.829688,46.004688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.989531,39.316641],[12.680488,40.028066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.525,37.715],[-69.876484,37.227344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.6125,64.4825],[36.2525,64.62625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.91375,57.78375],[-8.105,56.7475],[-7.636563,56.349375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6375,57.03375],[6.991055,57.008027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.485,2.0625],[-40.95,1.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.12,31.2325],[-70.7625,30.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.0225,65.255],[35.455,66.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.725,22.57],[67,22.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.9925,-10.060937],[159.4275,-10.103125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.024492,53.529102],[3.254312,53.060234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[151.265,-39.825],[152.8675,-42.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.465,32.5775],[25.16,33.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[79.59375,6.04625],[78.061875,7.21125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,30],[137.5025,31.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.1275,-46.5175],[-134.8875,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.64,2.9825],[119.435,3.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.6475,43.4625],[-132.339375,42.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.802656,51.447031],[7.38125,51.575],[7.67,52.245],[6.73,52.2425],[6.5475,52.2175],[6.4125,52.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.5475,-30.0825],[90,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.6675,30.81],[-77.8875,30.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.79,-26.9675],[-32.375,-27.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.33125,53.83875],[-162.56,54.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.345625,37.890625],[-9.38,37.57625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,20],[-171.0425,21.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.046445,40.513301],[18.896309,39.95124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.424434,55.806729],[10.362422,56.139043],[10.777886,56.109766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,-35.385],[-140,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.5275,-7.6225],[116.6725,-7.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.551875,41.174063],[13.271562,41.209375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.6675,19.4425],[119.705,19.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.56,32.17],[-76.91875,32.03125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.995,28.7725],[-57.915,27.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.3175,29.95],[-87.76375,28.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8,0],[4.265,0.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.13,31.17],[-72.63625,31.319375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.2975,28.55],[-79.8175,29.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.455625,29.054375],[-94.4175,28.0825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-40],[-19.9975,-35.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.374941,42.33957],[18.627187,41.923125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.5475,-8.655],[125.41875,-8.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22,33.3],[22.6275,34.2425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.12,47.78],[-8.24,47.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.943125,12.02375],[51,13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,-50],[120,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.055,14.5125],[-82.7,14.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.0025,45.4575],[-136.3275,44.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.520625,43.125312],[5.192749,43.23022]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.67,43.835],[-10.495,43.601875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.56875,41.778125],[3.94875,41.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.475156,68.487656],[16.87,68.434375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.165,57.6125],[-0.86207,57.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.945,-44.2125],[0.0025,-46.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.45,23.96],[-90.927813,26.094062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.44625,38.70125],[1.62125,38.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,10],[-38.2575,11.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.425,8.665],[-33.1475,10.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.278228,43.464146],[16.4475,43.3275],[16.425,43.3325],[16.278228,43.464146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.429688,40.173281],[0.913906,39.953828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.4675,5.7275],[108.3175,7.7875],[110.0725,11.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.049434,40.175664],[24.731172,40.436016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.8625,23.3275],[-180,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.2725,38.4425],[-13.755,38.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.360742,66.294883],[-18.4375,66.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.055,27.43],[-87.0025,27.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.3,27.8],[122.225,29.8375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.447139,36.088213],[21.959687,36.066563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12,66],[10.40875,64.93125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.02625,-9.998125],[94.97625,-15.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.485586,39.055078],[3.3925,38.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.62,29.590625],[-74.1325,28.9925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.0225,40.925],[-128.6875,41.2425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.623086,40.538965],[18.329941,40.571616]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.7475,39.545],[4.26125,38.86375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.605,29.6275],[-150.09375,30.035625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.59,36.469063],[-10.286719,37.064297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.5,37.4],[126.075,37.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.8,5.7],[124.6275,4.78625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.429043,48.05752],[-5.762246,48.171055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.5,71.63875],[26.3,71.2675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145,25.2775],[150,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17,32],[17.3,33.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.884609,38.905703],[1.061406,38.540312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.43375,39.995],[-69.5725,38.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.0646,57.780654],[-2.565879,57.725234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.115781,41.194063],[12.043033,41.62684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.6,1.1],[104.499219,1.555625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.9575,71.98375],[-156.705,72.2],[-160.415,71.4275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.748457,41.876426],[10.795781,41.606641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.643477,58.374727],[-1.27125,58.27125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.345554,40.599189],[1.835469,40.160469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.04418,57.309346],[18.682012,57.129824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178.61,27.8975],[-178.5,28.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.912393,41.787236],[16.524257,42.029749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.373125,19.325625],[-64.285,18.84375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.241406,39.104531],[0.61875,39.029219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-3.2825],[-14.189063,-8.093438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.00375,-9.99375],[170.0675,-9.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.426562,34.934062],[139.955,34.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105,-35.385],[-105.5275,-35.8725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.99875,62.33875],[19.014922,61.642578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.46,-20.405],[159.7325,-20.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,38.7625],[150.94,39.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.0325,27.1225],[-69.5725,26.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.8175,27.5325],[-73.195,27.37375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.505937,37.529688],[7.75875,37.58]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.25,-23.3],[-41.3,-23.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.29,30.2325],[-86.345,30.28],[-85.775,29.8375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.92125,21.76375],[-117.41,27.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.2125,21.125],[-157.896563,21.191875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.98,-32.1525],[-3.825,-34.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.609661,51.431418],[2.997742,51.438762]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.334453,52.254629],[-6.106875,51.918594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.635605,36.824463],[13.452798,37.190425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.14875,65.464375],[-22.27,65.4]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-69.205,-54.41],[-70.105,-54.1525],[-70.29,-53.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.8025,14.6775],[70,13.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.5375,38.475],[1.061406,38.540312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.09375,7.11125],[166.4,9.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149,-43],[150,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.915,35.365156],[-3.89625,35.715625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.8975,-33.15],[-95,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.219824,39.057051],[17.540937,39.187188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.77,63.275],[-49.0225,60.4475],[-44.2,58.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.557676,56.00498],[15.208984,55.821055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.0475,-7.88],[115.614688,-9.172187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,30],[164.415,24.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.669375,56.106875],[3.934063,55.691875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.8125,-17.359727],[-150,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,32.2775],[-63.1425,32.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.9025,0.385],[174.76375,-5.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.233125,37.010625],[20.994258,36.679492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.916992,43.469033],[-2.32125,43.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.86,25.30125],[-55.2375,25.0475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.9,19.75],[-69.0075,20.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.943125,12.02375],[44.995,10.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.16,58.649062],[-3.725,59.190313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.633594,65.179277],[-13.2775,65.28875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.7125,17.955],[-78.065625,18.979375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[86.76,-13.3775],[85,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.695625,38.028125],[13.500449,38.29293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50],[-19.66125,49.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.1225,63.51],[8.005,63.2425],[7.779141,63.061289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.539375,57.721367],[4.215,57.6425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.970938,66.24],[-18.690073,66.231504]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.22,-32.4025],[131.1575,-32.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.118437,37.243437],[12.943418,37.058242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.254312,53.060234],[3.636406,53.467812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.975625,53.8075],[4.433906,53.836562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-30],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.85,32.09625],[-73.9075,34.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.68,15.01625],[-69.105,14.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.28,44.89],[-4.509844,45.197031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.645,25.6125],[-40,30]]}},{"type":"Feature","properties":{"pass":"dover"},"geometry":{"type":"LineString","coordinates":[[1.066029,50.901753],[1.495222,51.13941]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.3,61.86],[-165.33125,60.46375],[-165.225,59.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68,-52.4],[-64.955,-54.6525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.386719,38.994219],[-72.510937,38.706875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.78,-16.3725],[162.8725,-17.2675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.555,36.28875],[0.51875,36.50375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.465,-36.8025],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.235039,44.361328],[-8.730781,44.616484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.847383,40.304961],[22.863125,40.562344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.973931,13.114248],[-60.405457,13.209844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.305,51.775],[-152.8425,51.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.323008,60.104219],[25.973203,60.058301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.366875,41.7975],[18.09,41.6975],[18.0525,41.68],[18.0075,41.6625],[17.9525,41.6375],[17.788125,41.56875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-30],[-42.4025,-32.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.32125,60.575859],[19.863638,60.867437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.955469,36.3125],[15.200234,36.573076]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.476396,57.328218],[20.651816,56.985137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.288393,42.803041],[15.921875,42.835938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.032969,66.305312],[-21.1075,66.74125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.22,51.505],[4.2275,51.565],[4.1925,51.61],[4.43,51.631875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-1.92],[-160,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.826719,45.021875],[-4.079219,45.319395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.945,28.8275],[-71.81,29.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.8775,-34.915],[119.8575,-35.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.701191,12.123084],[44.1525,12.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[61.1075,-28.9525],[66.3125,-27.1975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.105,-14.2625],[-156.305,-16.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.58875,58.64625],[-0.301875,58.63625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.6875,41.2425],[-127.71125,42.24875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.499219,1.555625],[104.6,3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.8375,57.162813],[6.499375,57.448125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-1.5775],[-140,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.770625,34.485],[32.00375,34.775625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.02606,39.080732],[14.85605,38.739146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.795,15.93],[-159.3075,16.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.1625,16.9075],[119.4,17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.18,33.0425],[123.0075,33.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.12,31.2325],[-70,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.306719,60.864062],[19.27709,61.27605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.005,12.795],[44.9625,12.8025],[44.943125,12.02375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.2575,71.54875],[26.5,71.63875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.4525,12.2325],[-55.5475,10.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.165,22.295],[114.1075,22.2875],[114.194531,21.738906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.705,39.225],[-68.5525,38.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.378965,43.050645],[5.852773,42.782852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.285625,66.604375],[-14.98,66.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-14.845],[-16.8225,-16.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.139375,51.521875],[-10.65375,51.7375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.909844,40.288438],[13.173555,40.243291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,50],[-150.3075,51.2675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.591875,68.22125],[14.272461,67.835117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.210625,36.46625],[-48.5525,35.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94,6.7],[94.68,8.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.076912,58.656553],[10.084219,58.238926]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.636179,37.777488],[23.882515,37.562214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.06113,54.763171],[15.8825,54.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.07875,25.73375],[-85.14,26.99875]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-99.995,74.455],[-104.945,74.32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.185,-24.4775],[111.5075,-25.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.257485,57.945977],[7.419902,57.585527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.578652,60.157383],[20.257012,60.082168]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.34,16.0175],[153.965,16.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.087813,49.715625],[-6.822188,49.379688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.5825,10.0275],[-150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.295,41.805],[-64.2,42.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.942187,47.478906],[-4.362832,47.675449]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.94,29.2925],[-77.314687,27.958437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.94125,50.02375],[-54.05125,52.47875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-40],[85,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.390625,38.802813],[1.902285,39.084922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.94375,24.045],[61.555,23.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.08,14.5875],[65.037969,10.012969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.31625,-10.54875],[177.59,-10.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.01375,28.27375],[-79.2975,28.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-30],[-92.8975,-33.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.285,29.135],[-79.2975,28.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.6575,-12.7975],[-171.748125,-13.803125],[-171.14,-14.15],[-170.9025,-14.32625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.855,31.17],[-73.85,32.09625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.760049,58.975605],[18.080039,58.893164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.183804,58.639092],[5.299349,58.879789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.2575,35.155],[13.73,35.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.929062,57.948437],[-0.775,58.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.445,70],[57.55,70.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.147969,53.50375],[-4.976504,53.224507]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.8775,-50],[-80.715,-50.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.83,-33.4475],[-145,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,13.2675],[-39.958125,20.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.7725,34.595],[-26.235,34.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.91125,25.885625],[-80.325,25.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.017197,44.858936],[13.08001,45.130343]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.74875,69.080313],[16.700625,68.794258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.055,27.43],[-85.762656,26.469375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.6925,10.2],[-26.3325,10.32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.8375,5.12],[168.09375,7.11125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.061875,-11.35375],[122.3,-11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.007187,41.191328],[3.54375,40.899375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.03,77.605],[9.175,74.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.655,62.52875],[5.385,62.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.37375,-22.344375],[163.5,-20.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.095,56.954062],[-7.4775,56.9475],[-7.156641,56.687109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.574688,-7.068437],[125.22125,-5.05625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.3,-8.9],[177.59,-10.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.935,28.735],[-70.685,28.4225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.369375,36.840937],[10.62,36.9625],[11.191396,37.289531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.53,50.5475],[-16.7225,50.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,0],[-170,2.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.78625,52.37875],[-140.3675,50.74]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.8,-54.3775],[-89.9975,-54.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.1775,49.955],[-16.01,49.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.26875,58.15],[24.09,57.773125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.483247,42.322456],[16.288393,42.803041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.12875,-13.985],[172.7875,-13.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.039025,36.476917],[25.00241,36.943411]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.6775,-10.02],[-140,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.9575,29.815],[-93.716875,29.488125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.9025,32],[-70,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.5475,28.245],[-77.314687,27.958437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-50],[-14.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.469062,65.465625],[-24.9,65.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.95875,22.11375],[-66.5725,22.5825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.867539,43.705039],[-6.435,43.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.079219,45.319395],[-4.509844,45.197031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.180156,46.235938],[-4.799375,47.2225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.9725,34.42],[17.68,34.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-40],[87.7275,-42.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.8,-32.2],[-49.5,-30.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.057684,51.571407],[1.576936,51.453381]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.222227,58.222451],[21.403125,57.536953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.4975,27.39],[-76.94375,27.12375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.289603,48.464297],[-5.429043,48.05752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.32506,52.820001],[5.352656,53.157656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.0075,-20.69375],[56.065,-20.0725],[55.6425,-19.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.625,26.23875],[-75.2,24.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.631603,57.456724],[10.749147,57.717465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.2125,64.025],[-14.83125,64.0325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.0402,54.91689],[15.343838,55.146855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.995,18.295],[107.1,20.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.76375,-5.405],[176.6075,-9.12625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.916875,44.328125],[-9.0625,44.1675],[-9.1025,44.11],[-9.155,44.04],[-9.3475,43.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.4875,51.578281],[-6.693281,51.971836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.79,-26.9675],[-34.8675,-25.1525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.223164,37.666406],[6.865938,37.32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.519375,39.689141],[3.72875,39.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.718486,57.654951],[11.748981,57.371318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.019688,19.97375],[-64.285,18.84375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.69375,40.45375],[-71.69,40.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.61125,35.966563],[-0.555,36.28875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.255,27.97],[50.005625,28.862813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.46,-36.56],[166.075,-35.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.0725,71.185],[-142.635,72.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.5825,-24.855],[-140,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.402498,36.429963],[25.150059,36.720225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.98,-24.2175],[163.34375,-23.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.93125,-4.59],[113.2925,-5.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.19125,20.0075],[-46.0375,18.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.359727,58.123125],[-1.964453,58.246875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.55,-36.51],[155.5675,-36.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.05,50.7025],[-140.041875,49.915625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,-35.385],[-110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.969731,56.628496],[18.155,56.2925],[18.140859,56.027031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.186611,42.07395],[9.728066,42.124824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.553125,41.41875],[11.077656,41.655078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-10],[-160,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.61,33.615],[-7.8575,34.03],[-7.825,34.05875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.535918,41.327461],[2.128066,41.129287]]}},{"type":"Feature","properties":{"pass":"suez"},"geometry":{"type":"LineString","coordinates":[[32.63125,29.70375],[32.5525,29.94375],[32.315,31.125],[32.385625,31.396875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.67,45.2175],[-7.58125,44.64875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.4275,64.4025],[-162.6125,63.6925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.89625,42.9525],[36.439609,44.759141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.105,31.2],[143.055,33.32125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-20],[80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.8475,29.3325],[-79.005,28.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.665,7.935],[-138.435,8.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,10],[-150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.985625,37.286875],[-9.6,37.35625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115.44,0],[-111.985,-2.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.9325,52.6775],[-166.7325,54.19625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.836846,53.857148],[9.104063,53.88125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.4825,68.625],[-17.4575,69.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.925,12.4025],[59.9125,10.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.319844,55.808359],[17.986406,55.811875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.7675,-32.3775],[-49.5875,-32.2975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.85605,38.739146],[14.997987,38.455532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.935,7.545],[111.9125,9.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.5,-47],[165.6,-46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.216087,56.758495],[12.495,56.775],[12.83125,56.64875],[12.564844,56.526719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.785,50.155],[160.925,48.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.9,-1.4],[-43.04,-0.021875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.62,37.895],[10.615547,37.631641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.119062,31.647031],[30.6375,32.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.825,34.05875],[-7.1,34.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.8775,-14.8225],[3.5425,-16.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.149003,54.711791],[18.693398,54.486797],[18.779966,54.881255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.395,27.9525],[129.2925,26.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-10],[-175.0975,-4.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.998682,39.514512],[25.553795,39.514287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.135,-0.8775],[-160,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.419902,57.585527],[7.300078,57.165078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.0025,57.2875],[-40.0025,56.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.478672,48.733437],[-4.152488,48.913396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.455,-5.5475],[105.1025,-6.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[175.5375,-42.975],[179.5925,-40.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.935039,49.176758],[-3.83916,49.41332]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.2875,44.8775],[-154.335,44.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.224844,49.425376],[0.031226,49.609712]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.1975,-9.8075],[-102.5325,-7.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.9525,-37.275],[45,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.695,53.385],[-150.8425,53.4725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,20],[132.2075,23.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.78875,67.39125],[13.34125,66.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.68,51.901875],[-7.43875,51.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.675,8.68125],[69.17,6.6375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,39.205],[-17.1025,38.7175],[-14.484375,38.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.375,10.0125],[159.1125,9.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.260498,38.426631],[14.105,38.210625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.19335,54.792202],[7.935493,55.269111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.77875,46.7575],[-54,46.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.156807,39.539702],[1.745,39.37625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.775469,59.146406],[19.735938,59.440313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.125,29.4],[-164.245,25.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.1025,33.15],[-50,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.89,-45.405],[-30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.949141,51.602773],[-7.608437,51.464687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.1,12.7],[-87.6,12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-30],[-144.5825,-24.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.7025,3.805],[119.435,3.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.8725,27.0475],[-157.512266,21.273633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.3475,29.0225],[-87.185,28.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.376821,41.597085],[9.5275,41.92875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.105,61.33],[-4.4975,61.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.509514,37.176184],[25.972529,37.031776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.73,-44.1775],[-90,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,60],[-44.2,58.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.6775,50.785],[156.2475,51.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.365,41.3],[4.94125,41.256875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.5025,31.63],[139.4175,34.1625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.2475,51.8],[154.4875,54.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.52,-54.6175],[-63.965,-55.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.617188,65.831875],[-14,65.975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.712278,57.941782],[7.675723,57.520352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.0725,28.1875],[-95.1,28.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.254312,53.060234],[3.575,52.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.4,-3],[134.4225,-4.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.40625,54.746875],[-10.5,54.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.724219,48.938906],[-5.975874,49.366826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.4125,47.2775],[-129.89875,46.202969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.755,47.783437],[-7.29625,48.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.526992,43.320381],[15.148008,43.202773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.129458,43.589639],[14.346814,43.727184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.4725,28.4775],[-91.815,27.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.1125,-45.4025],[100,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-20],[-160,-22.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.300605,48.218477],[-6.820273,48.182891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,5.0575],[-127.045,2.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.825,61.09],[-5.105,61.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[112.0475,16.9525],[113.2625,17.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.41,-9.4875],[159.4275,-10.103125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,0],[160,8.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.089062,58.249453],[-2.897454,58.567219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.909455,34.52664],[32.855,34.50625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.210225,62.398984],[5.914062,62.431875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.39,21.3125],[-82.755,18.3375],[-80.5,14.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.54,28.4125],[49.05125,28.21375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.16375,28.8275],[-15.069297,28.329922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.595,-11.105],[178.99,-13.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.825,-35.5475],[164.125,-36.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.4075,52.5075],[-27.3425,53.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.8925,20.2125],[35.3775,25.62375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.48,10.215],[-97.6725,10.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.617344,40.505938],[12.406016,40.887422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.09,45.655],[145.9725,47.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.316113,57.824902],[8.096152,57.993447]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.253931,35.308711],[26.018335,35.684702]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.3325,10.32],[-23.7425,10.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.4825,58.275],[1.2125,58.2375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.03,-6.085],[64.966875,-5.071875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.559347,36.195459],[23.89373,35.965781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.076912,58.656553],[10.368342,58.619362]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.01375,-6.54625],[44.4825,-8.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.8775,-2.675],[3.8675,0.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.964746,49.878513],[-4.58043,49.953359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.7325,54.19625],[-171.8775,53.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.6125,46.6725],[140.40125,45.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.565,69.395],[35.555,69.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.885273,49.620723],[-0.50989,50.131948]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.267207,55.329902],[7.935493,55.269111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.275,-7.25625],[113.2575,-6.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.3825,20.9975],[123.775,20.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,40],[-29.5625,40.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,67],[8.0475,67.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.3175,54.9975],[-7.235,55.0625],[-7.002041,55.378682]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.395,-28.425],[107.3575,-30.6625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.0025,27.5875],[-83.3825,27.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.961738,55.108965],[13.361342,55.229045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.3,-8.9],[176.9375,-9.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.7075,-23.945],[165.155,-25.4225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.98,40.08],[-124.255625,38.57625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.47,-21.055],[114.1525,-20.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.02,43.925],[-9.3475,43.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.93998,56.931621],[-2.179141,56.511172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.94,22.4925],[-20.5725,22.98]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.8175,-26.51],[-36.79,-26.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.255625,38.57625],[-123.6025,38.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[62.8325,-37.3875],[65,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.1325,-5.9225],[-105,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.979961,53.339355],[7.073384,53.77512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.08001,45.130343],[12.68001,44.979209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.89,-45.405],[-110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.840806,41.531836],[9.923516,41.146836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.948643,51.215752],[-6.4875,51.578281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[71.1475,-6.0675],[72.458096,-7.128027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.8675,-42.085],[156.9025,-43.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.296934,58.780742],[-3.60125,58.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.693906,-23.070781],[168.5325,-23.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-10],[-114.025,-6.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.12707,57.238789],[7.90436,57.051143]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.8,29],[-18.855,29.59625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.04332,37.265273],[22.9325,37.4275],[22.7975,37.501562],[23.04332,37.265273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-40],[-44.9925,-35.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.1025,33.15],[-50,32.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.43623,58.543359],[21.55375,57.949766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.082495,36.676348],[14.480322,36.283815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.440625,58.222188],[9.764834,58.145391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.691743,57.919163],[5.633438,58.403125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.761875,53.75125],[-5.147969,53.50375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.3325,-24.9475],[-170,-26.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.301797,42.146035],[-9.74875,41.9725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-117.49,28.6925],[-117.77,32.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.4725,7.575],[-160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,39.61],[-130,37.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.92875,34.5075],[23.448125,34.724375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.33,-35.0775],[-35,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.3925,64.98],[36.4675,65.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.953125,68.253438],[14.639375,67.904766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,23.41],[-124.4275,24.6925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.910476,36.686746],[27.115122,36.985522]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.64,78.2325],[13.38,78.0975],[13.03,77.605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.9,5.4],[-61.068125,11.07125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.801758,39.217891],[20.223005,39.419204]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.21,57.7225],[-137.1,57.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.855781,58.365742],[19.712422,58.267852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.915,27.9675],[-58.73,28.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.425,26.5575],[-96.9675,26.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.205938,45.177344],[139.4,41.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.47,37.3125],[-1.761133,36.697363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.080039,58.893164],[17.874526,58.542886]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.836875,52.74875],[4.149961,52.716133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.89373,35.965781],[23.788047,36.38876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.229375,36.69125],[-11.87875,36.89625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.0025,43.84],[-130.0025,44.6925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.14875,27.68125],[-76.4625,27.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.8,-0.9],[-80.2975,1.2025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.375,10.0125],[150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.005,28.71],[-79.01375,28.27375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.1125,0],[76.6,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.260234,36.758281],[27.206715,36.450522]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.499375,57.448125],[6.6375,57.03375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.50375,61.21],[20.867422,61.060391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.014922,61.642578],[18.8,61.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.405938,65.110625],[22.762187,64.915625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.315,15.1325],[-69.3925,15.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.73126,35.998975],[14.559629,35.929512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.376821,41.597085],[9.277383,41.321865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.44957,36.637656],[-2.715,36.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.4825,2.015],[72.954531,4.022656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.389844,56.289297],[19.29375,55.98125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.0475,39.775],[11.187841,40.53687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.912383,43.041563],[7.088438,42.554688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.0475,67.67],[9.610625,67.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-30],[70,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.349453,49.402109],[-5.713926,49.025977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.725,59.190313],[-3.2625,59.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.1275,-46.5175],[-130,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-119.222328,33.3387],[-120.61,32.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.3275,-21.305],[-39.6975,-23.75625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.31,-16.09],[141.2,-13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.335,24.945],[-125,25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.271562,41.209375],[13.31832,40.896455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.8175,-27.3375],[-20.6275,-29.4075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.5675,36.20875],[21.169438,36.370593]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.465,56.9825],[-20.95,59.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.0975,20.3525],[-89.8,22.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.9025,58.7425],[12.925,59.1275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.5675,55.55],[3.1225,55.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178.5,28.5],[-178.6825,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.396704,38.073561],[10.986875,38.405938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.461445,40.891055],[10.295,41.312383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.214436,37.616389],[24.168114,37.267]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.61875,35.21625],[-8.9225,34.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.159688,37.335313],[-10.844531,37.245937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.4025,22.1425],[-76.45,23.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.37625,37.86875],[19.886254,37.865082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.405457,13.209844],[-60.835,13.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.185,56.57],[4.6675,57.016875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.18625,46.7325],[-58.539228,47.308888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-50],[40,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.670596,42.432334],[15.614771,42.803228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.1475,-6.0325],[131.4875,-6.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.505,47.8],[-5.829219,47.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.895,45.215],[-3.23,45.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.174844,64.334297],[23.899375,64.3075],[23.772578,64.575469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.641094,37.697031],[20.820312,37.349688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.942187,47.478906],[-3.3825,47.2575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.30375,59.695503],[23.592334,59.543623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.5775,-3.0575],[8,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.087227,47.464883],[-3.942187,47.478906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.4525,-37.735],[57.5225,-37.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.180312,61.413438],[4.146172,60.864141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.07125,36.53875],[-72.2875,34.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.94125,39.160625],[16.8625,38.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.06,27.35],[-95.44,27.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.91625,39.27875],[-72.510937,38.706875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.08,51.08],[-172.54,47.5825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.18,30.155],[-74.62,29.590625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.255937,51.314375],[-8.117031,50.880625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-10],[-121.2775,-8.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.195742,52.796914],[-5.686904,52.46791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.95375,27.03],[-75.79,26.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-121.2775,-8.7475],[-125,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.3925,46.21],[35.1375,45.925],[35.5575,45.4325],[36.7725,45.543437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.94,39.505],[121.885,40.4225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.7225,9.2925],[140.42,9.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.9475,50.94],[147.905,54.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.151875,0.00625],[-32.9175,-3.21375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.6075,35.405],[-7.335,34.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6575,54.469375],[6.623047,54.214453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.82375,24.3325],[-82.065,24.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.58,55.5025],[1.1475,55.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15,-15.17],[-10,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.183804,58.639092],[5.49625,58.31625],[5.691743,57.919163]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.17125,35.45375],[-8.142504,34.804087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-50],[-14.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.604922,42.797344],[4.330625,42.590312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.58,42.44],[-160.415,41.74]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.119531,-6.191172],[-80.708356,-6.68635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.265,-17.07625],[170.00375,-9.99375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.30875,38.91625],[-69.605,38.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,-35.385],[-120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.041094,59.009687],[4.714746,59.065039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.811123,41.008486],[11.744297,41.561094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.859038,53.012542],[-5.921318,52.701387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.753047,35.780938],[34.93625,35.5225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.82,-14.3375],[-102.005,-11.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175,15.17],[-180,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.191484,61.644063],[17.625806,61.556221]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-17.3175,41.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.0325,33.71],[-77.8,34.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.0625,1.134375],[174.9,3.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.0875,36.2],[-15.5825,36.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.1125,45.4025],[-154.65,44.9575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.037559,60.133594],[-1.1,59.8075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.1375,-39.7525],[166.67,-38.795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.519687,43.526875],[-1.800312,43.855781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.41375,37.29375],[-12.400781,37.014375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135,5.0575],[137.3875,7.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.360742,66.294883],[-17.600625,66.39625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.8625,41.2725],[-139.958438,40.086875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.257012,60.082168],[19.987588,59.961416]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.25,37.23],[27.115122,36.985522]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.7025,16.3575],[-156.375,15.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.245625,39.653125],[13.849297,39.40418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.30475,55.035637],[18.538984,55.294648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.5,-46.5],[-75.565,-51.945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.08625,52.7725],[-10.054316,52.463086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.23375,44.276875],[-6.22375,44.644375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,20],[-139.3825,20.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.370171,38.089795],[19.79125,38.62375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.808125,35.133125],[-74.165,34.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.14,50.6875],[172.355,50.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.4375,-37.635],[110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.0075,-20.69375],[59.85,-29.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.16375,34.34375],[130.64,34.135],[131.898125,33.67375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.39375,61.965],[18.01418,61.979727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.9,31.3],[124.615,32.373125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.08125,61.92875],[4.93918,61.439756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.5625,45.4625],[151.14,41.9725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.9575,29.225],[122.83,29.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.8775,2.9175],[-44.44,4.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.051699,38.925605],[20.481853,38.631372]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.5675,33.915],[26.548125,34.40125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.9025,-42.55],[-61.25,-39.3025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.01418,61.979727],[18.317813,62.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.358799,36.8823],[25.509514,37.176184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.325,21.04],[-92.74875,22.244375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.724219,48.938906],[-6.882812,48.511875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.6125,34.7425],[-64.804219,32.365684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.470625,61.478125],[4.180312,61.413438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.085,25.4825],[-76.36,25.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.37375,-22.344375],[165.1625,-23.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.807234,38.195508],[25.769736,37.73077]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.4,-24.8],[153.6825,-24.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.054713,6.498376],[81.9,5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.5275,-9.0925],[125.454375,-7.94875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.336846,54.795952],[15.0402,54.91689]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,37.2875],[-37.315,37.5225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,50],[-151.59,48.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.536094,53.157656],[1.804619,52.865981]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.45,41.425],[38.81125,42.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.895,68.985],[16.4425,68.88],[16.700625,68.794258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.48125,37.713437],[16.67875,37.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.3,46.1],[-55,45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.595,26.7625],[-79.3325,26.7375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.4575,69.575],[-13,66.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.5775,69.43375],[16.229648,69.216367]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.986992,62.816523],[18.010176,62.546152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.8,-5.2],[107.33,-5.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.38,37.57625],[-9.581953,37.762852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.295938,17.16375],[-65.841875,17.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.065625,55.181445],[17.500703,55.30668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.47418,35.538633],[26.018335,35.684702]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.581563,66.439922],[-16.152813,66.565313],[-15.778125,66.475469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.948125,37.379688],[18.273047,37.273672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,30],[-128.525,31.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.919844,40.300645],[13.529766,40.492578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.353047,55.711758],[5.99,55.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.728066,42.124824],[9.5275,41.92875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.38375,39.9275],[2.345554,40.599189]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-40],[70,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.1125,40.105],[-155.72,36.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.492402,40.297148],[-70.92,39.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.0025,-43.455],[82.98,-43.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.677749,56.38271],[6.08125,56.24375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.255938,63.260625],[19.84269,63.271816]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.8175,2.4675],[79.545,2.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.5675,-18.515],[-110,-17.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.845,14.46],[-68.5375,14.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.173579,56.549888],[6.677749,56.38271]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.4525,-10.0325],[64.966875,-5.071875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.163125,58.008125],[0.4425,57.9025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.8725,28.83],[123.095625,28.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.105,-16.05375],[-140,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.7425,46.635],[-140.0025,45.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1,62],[4.1775,62.96],[6.865,65.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85.155,14.4225],[85.77,15.873437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.31,28.405],[-40,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.0675,13.6825],[-77.81,11.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.543125,36.07875],[-8.805,35.971875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.6275,59.7825],[17.6125,59.735],[18.251562,59.371094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.8875,-45.4025],[-110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.142504,34.804087],[-8.14,34.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.458096,-7.128027],[72.5775,-7.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.135,50.5575],[-7.739375,50.261875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.536953,43.473828],[-9.156367,43.561094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.46125,15.6275],[-59.036562,12.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.189727,57.350195],[10.96079,57.473796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.345664,53.816563],[3.2275,53.725],[3.1475,53.665],[3.024492,53.529102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,14.9975],[-150,12.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.023125,45.86625],[-8.430625,45.03875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.78625,61.0775],[-2.8625,61.22]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.15375,39.811406],[2.38375,39.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.753125,58.092656],[-5.91,57.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.02,28.9425],[-83.0025,27.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.9575,44.075],[36.45,45.0675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.6225,50.7525],[-165.175,51.5925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.905,58.345],[11.875,58.335],[11.81,58.3125],[11.8325,58.2525],[11.753984,58.027109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.751797,65.235781],[24.18375,65.429375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.225,29.755],[-60,29.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.32125,29.4425],[-15.16375,28.8275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.1625,-23.83],[164.83,-24.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.898516,61.085391],[17.354573,61.169585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.3075,51.2675],[-150.6175,52.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.5225,-37.715],[55,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.7225,64.1775],[-52.77,63.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.4175,45.1275],[-157.72,42.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,31.3875],[-137.7775,32.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.675,61.6875],[-4.345,61.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.345117,36.432734],[-6.04248,35.979863]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.34375,-23.6075],[160.5575,-20.5925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.6,37.35625],[-9.46627,36.936104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.652305,41.883594],[11.316455,41.846387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.89,-14.505],[-180,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.821425,38.428919],[12.775117,38.854687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.61875,46.8175],[36.7625,46.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.655,4.1425],[121.8925,6.9475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.319315,55.488536],[7.418867,54.669844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.506875,55.907187],[-6.296563,55.430781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.890625,65.97125],[12.2575,65.63625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.775117,38.854687],[11.40375,38.85625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.83125,16.38],[112.0475,16.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.091133,58.451396],[16.835,58.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.509514,37.176184],[25.090411,37.203141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.118125,-18.09],[167.38,-18.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.1925,48.08],[-7.755,47.783437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,25.91],[-170,29.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.2825,51.206875],[-9.687598,51.32625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.794634,56.712373],[7.173579,56.549888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.93498,47.150312],[-3.344766,47.284002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.35,20.4],[111.1525,19.35],[110.3825,18.3625],[109.2175,18.0175],[108.46,18.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.515,42.7825],[-147.98,42.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.38,36.66],[-129.45,39.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.005625,28.862813],[50.365,29.2475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.23625,65.063438],[24.3375,65.145],[24.53,65.1825],[24.8025,65.125],[25.22625,65.060625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.726816,36.743547],[25.402498,36.429963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.899375,21.717266],[-81.23,18.845],[-78.7125,17.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.856875,40.78875],[6.6775,40.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.89,26.7925],[-79.595,26.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.001005,44.710743],[139.0175,44.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.343398,39.702012],[19.14457,39.892959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.9225,29.2875],[-156.57,29.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.7375,30.83],[-71.8025,30.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.8425,9.019375],[-93.52,6.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.3975,24.271563],[120,25.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.8125,-17.359727],[-147.96,-20.795],[-144.5825,-24.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.530977,49.444297],[-4.177578,49.34814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.24,50.82],[-12.37,51.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.060625,46.1975],[-129.455,44.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.104453,56.332187],[4.497813,56.225313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.5,54.4],[-14.0375,56.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.285,46.569063],[-7.710312,46.014219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-50],[70,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.4175,57.89],[16.5475,57.8225],[17.036152,57.56498]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,50],[-160.0025,46.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.33125,53.83875],[-155.0575,53.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-20],[-176.57,-23.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.98,-32.1525],[0,-32.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55,35.385],[-55.86875,34.49875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.547754,39.230442],[24.415684,38.837246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75.955,6.97],[70.82,8.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.435,38.5725],[-75.88375,36.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.458906,35.434766],[-8.61875,35.21625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.0725,69.045],[33.545,69.1825],[33.565,69.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.232188,54.404375],[0.609102,53.816172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.8025,14.6775],[70,16.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.186611,42.07395],[10.748457,41.876426]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.2825,51.206875],[-10.765,51.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.615,32.373125],[126.54,33.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.246257,54.019458],[-5.543809,53.938398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.86,25.30125],[-51.3025,22.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.5275,11.745],[-30,13.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.755,-10.48],[142.1325,-10.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-40],[95.1125,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.345,60.915],[-1.725,61.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,50],[-136.9025,51.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25,-35.385],[-24.6325,-35.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.175,74.4675],[-19.24,70.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.779966,54.881255],[19.149003,54.711791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.83,33.92],[-15.86,33.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.01375,-15.15625],[-2.24625,-12.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.23,45.6575],[-3.6125,45.49625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.739375,50.261875],[-7.3625,49.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.6625,59.246797],[18.560938,58.811875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.005605,43.022617],[5.852773,42.782852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.716875,26.199375],[-76.94375,27.12375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.229648,69.216367],[15.895,68.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.36,0.94],[77.6925,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.335,40.4325],[-71.69375,40.45375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.27,16.405],[-162.8375,16.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.79875,10.6875],[-61.068125,11.07125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.487891,39.278262],[19.801758,39.217891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.195,27.85],[121.52,27.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.78625,52.37875],[-144.05,50.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85.695,10.725],[88,13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.645,50.0625],[146.5175,47.5125],[145.9725,47.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.604336,56.875566],[7.173579,56.549888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.02,39.2275],[136.2575,42.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.86,27.655],[-88.6375,27.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.9025,-20.9575],[80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.1225,55.7075],[3.669375,56.106875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,15.17],[-143.6975,13.9475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.7175,-20.5025],[153.9125,-24.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.88041,48.924609],[-4.583213,49.079404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.26,-10.0325],[-1.99,-10.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-20],[-170,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.305,27.4825],[-61.34,28.5375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.8825,34.9075],[35.45,35.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.1325,34.4925],[-149.195,30.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.715781,19.805156],[-67.19,19.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,-6],[8,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.0025,29.07375],[-70,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.825,-34.1575],[-4.61,-35.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.4375,40.075],[-137.425,39.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.659565,55.258401],[16.419287,55.636387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.7775,13.5075],[-77.81,11.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.2975,34.25],[28.2925,34.13875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.6025,38.13],[-123.96875,38.284375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.416875,54.525937],[19.149003,54.711791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.916562,55.968047],[20.649277,55.753359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.146875,63.775625],[22.594375,63.986855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.870938,42.779531],[7.54875,42.741875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.712422,58.267852],[20.117656,58.577188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.338203,51.584414],[-8.255937,51.314375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12,-9],[7.505,-9.41375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.600625,37.03375],[-8.844746,36.731543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.7375,0],[-31.3,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,-25.2775],[-164.255,-24.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.0525,19.385],[-158.7025,16.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.318728,35.996227],[27.665,36.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.5975,32.06],[-72.305,31.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.608438,35.794063],[-8.805,35.971875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.29,30.2325],[-87.36375,29.29375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.64375,34.46125],[139.955,34.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.0025,56.535],[-20.0275,57.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.87625,-41.89625],[-60.9025,-42.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.235,42.5525],[-10.69625,42.6925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.57,46.24],[-7.9775,47.44875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.721875,32.858125],[35.035,33.97625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.91375,57.78375],[-7.6325,57.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.911819,58.086389],[10.588633,58.0579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.0025,33.52125],[-18.195,33.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.61875,44.40875],[-3.6925,44.5425],[-3.8125,44.755],[-3.885,44.8825],[-3.826719,45.021875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.37,33.03],[-64.804219,32.365684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.897813,40.441094],[9.961719,40.053281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.07004,37.507314],[24.695264,37.793544]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.9025,41.1375],[-134.6475,43.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.887881,56.8654],[11.950625,56.411104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.1075,-40.0225],[10.42,-40.4475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.987588,59.961416],[19.908887,59.714678]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.083315,56.214521],[17.573125,56.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.37,33.03],[-63.465,32.32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.4,23.5],[-107.2525,20.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.9925,-10.060937],[160,-10.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.84,-37.5075],[112.97,-34.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.104897,47.958721],[-5.429043,48.05752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.538125,27.859375],[-91.815,27.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.712422,58.267852],[19.680195,57.877598]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,-25.2775],[-165.3325,-24.9475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.5575,-20.5925],[160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.975,48.3375],[-10.5575,48.1875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.728066,42.124824],[9.84946,41.877839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.8375,-37.08],[65,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.081094,57.984375],[5.691743,57.919163]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.69,10.7875],[-110.0825,12.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.4625,21.815],[120.4275,19.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.865,-20.0525],[-122.04,-22.09625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.215,39.643125],[6.305,39.3975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.8,-19.3425],[178.255,-19.0425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.1925,55.155],[-131.1625,54.6725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.9275,61.2875],[2.8925,61.1975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.916562,37.175625],[-6.773281,36.945781],[-6.515518,36.735889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.739763,58.169515],[7.257485,57.945977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.21811,58.473256],[8.987852,58.151973]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.046445,40.513301],[19.305,40.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.10375,55.97625],[6.489199,56.099004]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.5625,14.555],[-61.063125,14.12125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.180273,41.264727],[32.89625,42.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.439922,51.202578],[-5.948643,51.215752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.615,48.445],[154.65,47.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.5075,-25.395],[114.8125,-33.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.943418,37.058242],[12.814531,37.374473]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.783164,44.592305],[-5.89875,45.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.432461,37.567847],[12.520449,37.301445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.8125,71.4125],[-142.635,72.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.024844,49.586641],[-4.029033,49.911714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.1,12.2],[109,16.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.557842,46.563525],[-2.934687,46.844551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.365,43.295],[36.28125,43.234375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.693389,49.700889],[-4.787695,49.333008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.210225,62.398984],[5.655,62.52875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,10],[-27.6925,10.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.8375,57.162813],[5.691743,57.919163]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.63,-30.365],[-47.6575,-30.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.966875,-5.071875],[60,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[146.1125,20.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.10375,41.37125],[-71.446875,41.2025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.0025,53.6075],[-25.71,55.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.3975,58.3625],[-160.77875,58.61125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10,-40.7075],[8.595,-41.5725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.42,-40.4475],[10,-40.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.1125,0],[73.1525,-0.6],[72.7925,-4.2375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.695,21.9425],[-85.932109,22.026016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.64,62.7925],[-166.3,61.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.238047,35.8925],[26.519492,36.193398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.740781,58.415156],[4.317969,58.094687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.5825,0],[-40,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.610078,49.5425],[-5.349453,49.402109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.286719,37.064297],[-10.844531,37.245937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.3925,58.4875],[-5.753125,58.092656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.23625,65.063438],[25.1175,65.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.97625,35.36375],[-150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.581953,37.762852],[-9.314297,38.348574]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.65375,20.055625],[-60.019688,19.97375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.925,36.7475],[-70.100625,36.533125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-50],[-87.48,-47.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.977471,65.441455],[23.378438,65.001875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.339375,42.061875],[5.489531,42.343281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.2925,37.3075],[16.024375,37.33875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.9325,15.3475],[145.2325,13.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-50],[-144.8875,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.5375,14.13],[-61.5625,14.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-50],[-89.9975,-46.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.775,14.9525],[-170,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.85,14.305],[-150,14.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.4675,7.516875],[158.362812,8.395312],[159.1125,9.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.490195,56.351406],[20.55042,56.64918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.2525,64.62625],[35.16,64.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,50],[-161.84,51.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.989531,39.316641],[12.775117,38.854687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.543125,36.07875],[-9.051172,36.245078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85.695,10.725],[89.3275,8.965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-16.8],[-100,-10.3425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.385,38.1625],[1.62125,38.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.497813,56.225313],[4.93,56.1525],[5.200312,56.110312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,41.75],[-160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.9625,5.7925],[70,4.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.135,51.9325],[-56.9575,51.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.8325,50.8675],[-31.4025,50.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.756484,35.875937],[12.097554,36.952969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.974375,52.020938],[-4.40375,52.80875],[-4.805,52.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.13,58.7675],[3.1975,58.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50],[-16.1775,49.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[96.715,-4.2],[95.3475,-5.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.936855,48.920098],[-1.625391,48.837305],[-1.89,49.391719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.8975,22.73125],[-91.835,24.2325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.534844,19.455625],[163.353125,14.503125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,31.34],[-131,31.0875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.83,38.55625],[120.94,39.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.1925,18.05],[160,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.0025,43.6175],[-45.32,45.2175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.68,15.01625],[-68.845,14.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,40.62],[-50.0025,42.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.1925,38.71],[-71.952969,38.052109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.4375,22.52],[127.725,24.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.1025,-53.0075],[-64.7,-54.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.735,14.905],[65.08,14.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.6375,24.725],[-85.885,25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.61,-35.005],[-80,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.49,33.125],[124.615,32.373125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.04625,58.39],[4.478125,58.512187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.110454,44.132203],[14.357129,44.037832]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.1825,71.015],[-144.8575,70.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.6075,-4.66],[-105,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.744492,38.927461],[20.481853,38.631372]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.487891,39.278262],[19.11543,39.478145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.9,-27.8],[-47.005,-27.2375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.519492,36.193398],[26.020625,36.225234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.64,40.625],[-64.2,42.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.47,-25.7775],[58.0075,-20.69375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.86,25.30125],[-50,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.829375,28.595625],[-73.2525,28.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.58625,21.51375],[-71.705,20.8175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.5825,36.2125],[-16.0825,35.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.0025,35.755],[-50.0025,34.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.434701,41.129234],[17.69375,40.905],[17.964287,40.843486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.351741,65.977458],[-18.690073,66.231504]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.744297,41.561094],[11.652305,41.883594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.79,-33.0325],[-37.395,-32.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.605,49.32],[-12.021875,49.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.346875,34.8],[35.4075,34.509375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.143315,38.162983],[26.420952,37.83022]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.681084,39.03606],[14.809434,39.477559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.41375,44.9225],[-1.501875,44.645625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.7625,-0.245],[-89.1025,-0.0975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.063125,14.12125],[-58.675,14.8375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.266152,59.013701],[10.076912,58.656553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.77,4.0775],[-42.8775,2.9175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.223005,39.419204],[20.051699,38.925605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.9725,21.0075],[-79.665,16.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.59125,37.86625],[121.95375,38.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.52,6.37],[-97.48,10.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.769551,38.558916],[9.17501,38.520723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.024375,37.33875],[15.76832,37.284453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.6125,45.49625],[-3.71875,45.77625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.4525,64.2925],[0,67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.583213,49.079404],[-4.865234,48.664141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141,-38.7],[135.5225,-35.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.1675,-10.0275],[78.415,-11.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.3925,15.63],[-71.13875,16.43875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.1125,45.4025],[-147.515,42.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.018335,35.684702],[25.614199,35.457861]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.291563,68.2],[14.06,68.78625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.999688,10.354375],[-81.1525,9.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.4875,-6.19],[132.3125,-6.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.4675,18.04],[140.010625,17.688125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165,35.385],[166.315,36.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.50168,36.626758],[-8.254687,36.852031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,9.7525],[-81.1525,9.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.2625,17.2925],[113.1125,16.5075]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-99.1875,70.7475],[-103.6375,72.6],[-103.4475,73.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.155781,40.845312],[24.954062,40.591328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.5,64.565],[40.43,64.635],[40.23,64.8375],[40.05375,64.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.825,19.3575],[-24.81875,16.98125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.865,17.5725],[-160.765,17.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.505,-11.18],[159.4275,-10.103125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.06,25.22],[-176.8625,23.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-12.1625],[90.0025,-16.0975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.273125,34.4325],[11,34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.56,54.2725],[-164.98625,54.46125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.0625,1.134375],[173.8675,2.1525],[173.2775,4.0275],[172.3425,5.1525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.779141,63.061289],[7.24375,63.0325],[6.943125,62.992031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.10375,70.0775],[22.8325,70.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.903657,55.582739],[-5.107577,55.306505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,10],[-46.8475,10.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.13625,2.15875],[150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.791904,43.008428],[14.859104,43.38701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.97533,54.54129],[10.960415,54.927198]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.135,-2.7025],[152.58,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.6425,-51.9175],[-90,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.195312,65.672344],[-24.005,65.5975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.867422,61.060391],[20.242031,60.869062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.439922,51.202578],[-5.662578,50.626484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.9825,45.18],[30.7325,46.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.778281,37.650781],[6.508125,37.379063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.22,32.245],[-78.325,31.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.02875,48.79375],[-122.7775,48.7525],[-122.73875,48.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,16.3225],[-47.43,17.565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.648408,55.654375],[14.665709,55.334608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.165,34.625],[-74.355,34.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.795,33.3825],[-124.685,35.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,60],[-56.5925,60.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2268,36.042238],[14.480322,36.283815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.73,-44.1775],[-89.9975,-46.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.9975,-36.6825],[-166.1175,-36.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.73,-8.7575],[66.03,-6.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.3,-8.9],[177.85,-10.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.446348,55.897129],[7.319315,55.488536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.6,-12],[137.1625,-9.81375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.4175,-9.53],[-163.705,-6.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.33,34.9875],[-13.01375,35.09375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.96,23.1375],[135.645,21.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.415713,38.840752],[26.6775,38.6025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8,0],[8,0.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.784238,43.718418],[14.129458,43.589639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.63625,31.319375],[-72.7375,30.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.325,36.0075],[160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.9525,33.6],[-75.4475,32.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.44844,57.330281],[11.382346,57.877431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.974375,52.020938],[-5.493437,51.875522]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.775,39.24],[6.1475,38.84125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.78,69.30625],[15.5225,69.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[86.455,13.7725],[84.7775,11.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.8225,34.0775],[-8.9225,34.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.923516,41.146836],[9.961719,40.053281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75.435,-35.7875],[80.0025,-34.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-10],[-125,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.0875,39.06375],[-9.907578,38.803672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.135,51.9325],[-54.05125,52.47875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.896309,39.95124],[18.329941,40.571616]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.671724,55.080054],[11.948477,54.950742],[12.28207,54.708984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.795781,41.606641],[10.553125,41.41875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.6925,49.91375],[-10.6725,49.6525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0025,-33.4825],[160.0025,-34.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.87,36.3625],[-9.051172,36.245078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.72375,22.13875],[117.76,21.98625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.055508,60.824492],[19.32125,60.575859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.094375,39.663594],[10.079297,39.135859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.11,45.405],[-31.7825,48.3975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.745,35.06],[-13.66625,34.610312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.346079,41.339282],[12.115781,41.194063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.145814,54.451068],[10.482807,54.540205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.00375,40.836758],[-10.011563,41.696562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.2325,31.6425],[-79.26,30.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.1475,40.7425],[-71.446875,41.2025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.643477,58.374727],[-1.704209,57.733945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.591875,68.22125],[14.639375,67.904766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.256563,35.358438],[28.58125,35.43125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.02625,-9.998125],[96.792812,-12.065625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.32125,43.865],[-2.7975,43.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.2875,8.1575],[-79.72,7.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.9975,-52.4325],[-47.3525,-52.7575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.667563,36.93707],[12.097554,36.952969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.4375,-37.635],[107.84,-37.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.89625,42.9525],[33.4275,42.895625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.766053,41.266393],[8.657148,41.25707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.105,48.1075],[-161.5675,46.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.89,39.6775],[23.036484,39.93668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.682969,61.55],[21.340127,61.468494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.262402,50.295737],[-0.547988,50.43625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.46125,15.6275],[-53.29125,17.36875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.534766,43.69332],[13.335,43.855],[13.024492,43.93957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.652344,65.973594],[-20.382344,66.157656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.92,37.865],[20.370171,38.089795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.7475,67.1525],[-162.835,66.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.0875,11.8675],[110.0725,11.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.200312,56.110312],[5.56875,56.308125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.797266,39.375654],[0.61875,39.029219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.277881,56.896787],[7.300078,57.165078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.37,1.1075],[-1.7425,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17,32],[19.3725,32.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.44844,57.330281],[11.189727,57.350195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.593711,36.361289],[-3.44957,36.637656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.077656,53.644063],[-5.995444,53.292515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-30],[61.1075,-28.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.6125,-7.44],[-155,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.6775,-10.02],[-131.405,-11.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.495,55.43625],[-7.77,55.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-112.9175,-30.055],[-111.2675,-31.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.075752,42.085078],[11.103291,42.465767]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.01,-30.0925],[-161.7775,-31.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.188125,53.085],[-10.404687,52.319531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.78625,61.0775],[-2.345,60.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104,-7],[105.1025,-6.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.77875,58.61125],[-160.3175,59.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.2075,13.49],[-161.27,16.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.1875,9.0925],[-90.035,9.7125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.859104,43.38701],[15.133311,43.544722]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.001875,11.0075],[-24.595,4.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.5925,15.5725],[-145,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.12375,32.668125],[-16.739453,32.532793]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.41375,44.9225],[-1.3975,45.21625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.93625,35.5225],[35.7,35.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-103.665,13.9175],[-100.69,10.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.31,40.2825],[-25.335,40.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.12,16.105],[-62.05625,16.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.2925,31.2275],[19.535,30.54],[17,32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.11543,39.478145],[18.656709,39.660527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.0275,58.55],[-133.8175,57.825],[-133.7925,57.2025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.995,60],[-20,61.2325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.91625,7.02],[-55.08875,6.04125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.64,-27.27],[12.5,-28.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.520625,43.125312],[4.817695,43.257109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.6125,4.46],[0.34,4.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.965,56.2675],[18.140859,56.027031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.339854,58.181816],[20.019414,57.933047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.00625,58.97],[18.560938,58.811875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.3775,60],[-20.95,59.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,35.385],[-170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.6825,7.3175],[102.6075,7.8125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.28,40.2975],[-145.4475,42.0725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.94,54.6675],[10.145814,54.451068]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.942051,64.684297],[-13.875,64.8325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,-35.385],[-170,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.6775,-3.9375],[-106.8325,-3.2075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.003477,59.784258],[22.342695,59.654473]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.085,66.43],[-16.581563,66.439922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.508301,42.19166],[7.852187,41.931875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.36625,70.36875],[32.0375,70.63125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.04875,41.220156],[8.111875,41.577813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.396704,38.073561],[11.634863,37.840791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.93125,37.3425],[-14.41375,37.29375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.4675,-37.7225],[160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.454375,49.680156],[-8.555625,49.891875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.234932,36.621201],[-8.50168,36.626758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.7325,16.42125],[-156.4425,18.9575],[-157.1075,20.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.1075,20.5],[-153.7325,16.42125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.386094,54.875313],[12.988867,54.780352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.225,-24.7625],[-34.6125,-24.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.9,36.55],[-10.589688,36.696562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.01,63.77625],[-22.861953,64.063906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.1125,35.91125],[-2.915,35.365156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[102.09,9.03],[103.12,10.21875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.89,46.415],[-3.208203,46.725078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.050937,38.749375],[-25.273438,37.940313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.7225,50.4625],[-16.4475,50.47625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.23875,48.07625],[157.9325,47.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.267969,57.714297],[-0.49,57.77125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.452166,46.863257],[-2.375,47.145352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.863125,38.5275],[7.56625,38.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.3,-2.9075],[5.5775,-3.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.133125,61.823125],[21.340127,61.468494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.455,-54.03],[-83.865,-54.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.856875,40.78875],[5.29,40.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.895313,42.259297],[5.008437,42.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,-30.0925],[-140,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.5275,9.4375],[-80,9.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.195,27.03],[-88.6375,27.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.5975,35.7825],[18.9025,35.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.863125,38.5275],[7.63,38.10875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.25,63.89],[-167.3125,63.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.922773,64.697422],[22.9325,64.130938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.2,34.7325],[26.656562,34.800313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.5275,9.4375],[-81.835625,9.54125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,10],[-130,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88.336875,-17.029219],[88.0775,-17.175],[87.990488,-17.224023],[87.766953,-17.348828],[87.41,-17.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-30],[-110,-32.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.095,34.5025],[26.548125,34.40125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-8.62],[-160,-1.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.9425,50.9825],[-22.4075,52.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.6575,48.5075],[-40,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.435,62.24375],[5.4225,62.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.5675,26.1625],[-92.006563,26.254375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.2875,5.76875],[133.635,6.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.739375,34.824375],[25.1125,34.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.851875,44.96625],[-8.674375,45.144375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.974531,37.313125],[3.280156,37.515937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[56.17,6.225],[56.3525,5.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.795,-20.845],[-15,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.104375,13.241875],[42.7625,13.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.7375,34.4625],[29.3225,34.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.3875,7.4375],[134.2875,5.76875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.89625,28.360312],[-15.7975,28.315],[-15.470937,28.197734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-30],[-89.1475,-30.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-18.2025,42.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.995,60],[-10,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.459062,42.345313],[3.27624,41.837959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.439744,43.867473],[8.733301,44.051143]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.2875,34.14],[135.3425,33.0425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.779844,53.08125],[2.85625,52.76375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.309222,41.237849],[17.434701,41.129234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.00375,34.775625],[32.02,35.11375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.126172,68.852187],[16.700625,68.794258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.74875,69.080313],[16.229648,69.216367]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.11,-1.125],[0,-3.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.5325,-23.505],[168.54625,-22.73375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.53875,35.65125],[27.195937,35.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.884375,21.621875],[-73.58625,21.51375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.27,53.24875],[1.014375,53.32875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.325,63.7225],[20.300833,63.439908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.096719,34.26375],[34.955,34.51375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.3725,37.5275],[-69.876484,37.227344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.631641,34.477109],[31.770625,34.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.353125,14.503125],[161.1925,18.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.578711,39.841289],[19.343398,39.702012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-41.9275],[52.1425,-42.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,15.17],[-39.958125,20.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,25.2775],[-137.4775,27.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.179141,34.739766],[-8.458906,35.434766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.172656,54.618281],[6.371504,54.071631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,24.08],[140,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[96.2075,-24.02],[100,-26.3975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.6375,32.64],[29.59,33.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.547988,50.43625],[-0.582109,50.710166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.1,41.8],[38.81125,42.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-174.455,-24.7225],[-170.525,-26.9575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.11,-45.405],[30,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-7.345],[71.1475,-6.0675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.2,-13],[137.6,-12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.488762,37.003491],[-1.566758,36.880391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.915625,-10.021875],[54.285,-10.0325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.80375,35.74625],[-74.805,35.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.555,41.68125],[5.564375,41.342695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.717148,55.296562],[13.76918,54.977891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,34],[10.1375,33.935],[11.273125,34.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[89.3275,8.965],[94,6.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.8,5.7],[127,8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,0],[62.2925,2.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.0325,6.6025],[-82.675,6.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.095,68.515],[14.953125,68.253438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.0025,-46.135],[0,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.8225,19.545],[124.6875,19.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.675723,57.520352],[7.934531,57.566284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.5775,13.735],[42.4925,14.1275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.6375,27.2275],[-88.15,26.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.1375,37.6325],[0.345,37.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.1,12.2],[110.4475,12.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.74957,36.893555],[26.921806,37.203799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.26125,38.86375],[4.57,38.6825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.14,26.99875],[-85.762656,26.469375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.31,0],[-166.6,-3.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.35,20.4],[114.194531,21.738906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.4175,-30.0825],[-96.1275,-26.3425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.545,41.6475],[-145.1125,45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.54105,36.899026],[15.825781,37.147031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.488762,37.003491],[-0.833696,37.470029]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.6375,43.5525],[170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.21625,29.19125],[-92.4725,28.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.865488,51.606768],[-5.948643,51.215752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.365,-14.375],[5.8775,-14.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.712422,58.267852],[20.339854,58.181816]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.3,11.6],[54.665,8.8975],[56.17,6.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.76375,-5.405],[176.7225,-8.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.4925,26.93],[-92.006563,26.254375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.68,51.901875],[-7.26625,51.9825],[-6.990234,52.043125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.204438,53.83895],[5.910372,53.77391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.776211,49.78832],[-3.033704,49.937569]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135,15.17],[130,9.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.6675,29.1325],[-93.21625,29.19125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.46249,50.480791],[-2.416001,50.48667]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.535,65.2525],[37.6675,65.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.47,-21.055],[113.3825,-21.52625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,30],[145.0725,32.4875],[143.055,33.32125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.091484,37.840859],[25.413242,37.735093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.74875,22.244375],[-91.835,24.2325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.9975,36],[30.99,36.340625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.995,38.2825],[14.105,38.210625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.725,70.63125],[20.962656,70.722344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.326719,66.054297],[-21.032969,66.305312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.105,59.78375],[2.73375,59.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.854609,60.086406],[4.195,59.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.565,41.125],[-28.585,41.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.61875,37.72875],[-70.86,36.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.705625,53.99875],[5.020605,54.168008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.026172,36.29752],[12.756484,35.875937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.173579,56.549888],[7.690146,56.531816]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.568906,58.975469],[19.284688,58.859375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.543809,53.938398],[-5.376445,54.178945],[-5.276172,54.441563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.48186,36.060669],[25.239062,35.773125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.996875,69.668125],[18.2875,69.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.4475,39.45875],[-60,39.25875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.740021,61.920164],[4.93918,61.439756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.585,-18.62],[153.6425,-16.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.73,10.8925],[-75.274375,11.658125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.2,19.62],[112.0475,16.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.1375,27.8],[-92.2625,27.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.5,-46.5],[-73.9,-36.9],[-72,-33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.091133,58.451396],[17.036152,57.56498]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.09,47.6825],[177.9575,44.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.24,47.715],[-9.225,47.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.4825,68.625],[-19.24,70.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43,69],[43.1675,66.99375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.4,-35.68],[165.29625,-34.67125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.217041,59.531699],[5.440156,59.17311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.678291,54.589424],[-3.69875,54.31875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.42,27.7025],[-74.3525,26.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,30],[-140.8975,30.975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.200312,56.110312],[5.07,55.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.3075,51.325625],[-8.255937,51.314375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.6425,28.9375],[-76.325,28.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.01,49.6325],[-18.16,49.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.48334,50.045639],[-3.033704,49.937569]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.683125,39.82625],[-139.43875,40.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.25041,52.986816],[1.536094,53.157656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.5275,-7.6225],[119.645,-9.0875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.395664,37.676875],[16.113934,37.874624]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.789219,39.659375],[0.48625,39.831094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.495,57.79],[-7.91375,57.78375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.67,69.5325],[54.495,69.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.93498,47.150312],[-2.934687,46.844551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.116108,37.745186],[26.400735,37.541272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147,-4.8],[144.73,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.388125,23.20375],[-86.6825,23.11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.851445,37.672402],[16.48125,37.713437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.492188,46.009062],[-4.829688,46.004688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.6325,54.635],[-130.33,54.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.0025,47.5775],[-48.0275,48.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.9975,36],[30.905,35.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57,54.6],[-60,53.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.56418,54.674063],[12.988867,54.780352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,20],[-150,15.5225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.2325,26.0025],[143.7425,25.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.51,42.2125],[41.155,42.17625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.604097,37.545281],[24.699705,37.26321]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.795,50.3725],[-165.6225,50.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.376821,41.597085],[9.565913,41.265188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.09375,30.035625],[-155,35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95,-15.17],[-92.7875,-12.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.927813,26.094062],[-90.5575,25.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.9975,-54.0925],[-90,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.286719,37.064297],[-10.4175,37.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.239062,55.553359],[17.7425,55.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.245566,54.889023],[5.080781,54.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.882515,37.562214],[24.168114,37.267]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.8025,54.62],[-171.665,56.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.313437,59.704609],[20.42625,59.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.514229,59.012822],[-2.476719,58.596914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.037969,10.012969],[68.825,8.84875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.39668,58.633281],[20.867754,58.728691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.6775,-25.775],[-43.3925,-26.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.66125,49.7325],[-17.925,47.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96,19.5],[-97,22.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.792813,40.715937],[11.197656,40.590156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.436602,38.653398],[-28.21,38.6775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-112.56,16.2225],[-113.6625,16.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.7725,48.7325],[-125.5,48.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.637832,49.762754],[-3.274683,49.67916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9975,-29.9975],[4.33,-25.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-15.945],[82.8525,-14.8625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.2175,38.6525],[-27.24,38.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.26418,36.671563],[13.615547,36.486328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,-35.385],[-130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.43125,36.0775],[-74.4575,35.792812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.4,13],[102.09,9.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43,-12],[41,-10],[40.01375,-6.54625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.78875,67.39125],[14.143437,67.526875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.2025,21.6975],[-71.9175,22.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,20],[138.6375,21.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.385625,31.396875],[32.119062,31.647031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.7825,-0.2125],[-43.04,-0.021875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.8525,-26.0525],[-41.3,-23.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.945,28.8275],[-73.0525,27.7925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[86.99,-17.785],[89.5125,-19.5375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.225,29.8375],[122.365,30.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.881328,58.08832],[20.781685,58.439336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.9125,-24.5075],[154.250625,-27.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.495222,51.13941],[1.81278,51.167213]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.695,53.385],[-148.9975,59.27125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.45,0.3875],[8,0.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95,-35.385],[-90,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.76375,-5.405],[176.1725,-3.87375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.753125,58.092656],[-6.219375,57.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.786808,42.55563],[10.788789,42.213477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.894749,36.008716],[22.548184,36.386191]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.72,-13.6225],[150.195,-14.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,-12],[152.6975,-13.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.854425,35.840965],[27.53875,35.65125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[93.829609,-41.476016],[94.315625,-41.379375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.1125,10.775],[-79.999688,10.354375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.827188,60.22875],[28.185,60.4275],[28.444844,60.483906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.255,42.64],[39.4525,43.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,10],[-43.28,5.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.5725,38.78],[-69.605,38.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.907578,38.803672],[-9.629463,38.542939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,48.82],[-40,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.185,47.355],[-38.9525,49.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.38875,34.265],[-14.08,34.49375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-10],[-85.2675,-4.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-20],[-30,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.4275,-33.9],[18.425,-33.875],[17.59625,-34.270625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,3.2875],[-100,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.185,32.905],[13.1,33.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.95,39.335],[-10.0875,39.06375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147,-10],[150,-12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.9,37.7],[-122.6425,37.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.539375,57.721367],[4.6675,57.016875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,30],[-60.5425,30.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.032813,36.67875],[35.619375,36.385625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.519507,54.514373],[15.72402,54.964635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,40],[-60,39.25875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.22375,43.8675],[-8.57,46.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.69,53.155],[-10.188125,53.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.1075,45.7175],[-2.36625,45.32375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.665,15.515],[-50,16.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.56,52.805469],[-5.686904,52.46791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.27625,25.4875],[-82.7,24.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,17.845],[-120,13.895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.430703,58.305273],[18.326152,57.925352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.104063,53.88125],[9.428633,53.868867]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.483875,49.806055],[-1.184526,49.875571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,11.665],[-131.7075,11.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.4825,21.61],[155.7075,20.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.4775,27.6175],[-138.82,28.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.785,28.0275],[123.195,27.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.192749,43.23022],[5.378965,43.050645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.708457,69.904512],[16.260625,69.6675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.0225,-25.3],[0,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.6325,57.47],[-7.495,57.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[61.555,23.4575],[60.4,22.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-40],[-180,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.660469,39.537188],[7.584219,38.998438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.106746,57.850391],[10.749147,57.717465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.028125,38.784062],[11.632383,38.555742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.143315,38.162983],[25.736152,38.705385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.734727,40.860938],[28.2525,40.814375],[27.535,40.871875],[27.2675,40.595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.2575,-27.9625],[-43.78,-30.2675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.643446,35.63584],[23.559347,36.195459]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.7925,57.2025],[-134.565,56.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.635,69.1675],[169.5925,70.86125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.732188,35.990938],[-4.53168,36.183516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,40],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.3925,64.98],[36.535,65.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.452188,41.625078],[8.248164,42.088457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.885273,53.643613],[-4.149774,53.588088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.131875,61.072812],[4.707583,60.778877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.0675,14.6],[-61.063125,14.12125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.8425,9.019375],[-97.48,10.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.3875,10.01],[140.7225,9.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.923516,41.146836],[9.896992,40.836719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.136875,51.501875],[-6.4875,51.578281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.29,-24.3675],[-126.42125,-23.68375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.1075,48.9625],[157.615,48.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.087227,47.464883],[-3.554062,47.658906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.1,5.8],[79.59375,6.04625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.1375,37.6325],[1.4475,37.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.34125,66.955],[12.964219,66.197344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.5725,55.695],[-134.2525,55.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.0025,61.2825],[1.9275,61.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.4825,-33.785],[-10.8175,-30.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.25,55.43],[-38.1975,58.2675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.948125,7.06875],[-80.4125,5.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.8,3.7],[109.935,7.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12,68],[12.771719,67.683125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.594201,54.944301],[14.43535,54.595088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.085498,38.851016],[8.769551,38.558916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.57,29.59],[-159.6225,29.6425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.2,41.58],[-125.0225,40.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,10],[-28.4075,8.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.614844,55.403125],[5.662539,54.805371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.89,-45.405],[-100.040937,-39.951563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.155781,40.845312],[25.625,40.64875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-98.1025,10.325],[-97.6725,10.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.469844,56.578125],[-6.7975,56.5125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.75,-39],[174,-37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.91,57.545],[-6.219375,57.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.85,12.26],[-25.07,16.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.8825,38.91],[4.26125,38.86375]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-93.01,75.16],[-93.105,74.55],[-92.685,74.3425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-117.41,27.555],[-117.49,28.6925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.8175,30.915],[130.9,31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.959375,56.04375],[-7.274375,56.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.32875,58.6325],[16.77875,58.615],[17.091133,58.451396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.56875,56.308125],[5.49457,55.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.790234,62.103242],[20.9675,61.815],[20.9775,61.785],[21.340127,61.468494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.0025,43.6175],[-52.5725,42.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.6125,11.2175],[121.42875,11.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.41708,54.623066],[1.17,54.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.468555,57.56082],[22.792422,57.810625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.180156,40.165781],[23.445,40.27],[23.71,40.025],[23.814453,39.851016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.929062,57.948437],[-1.267969,57.714297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.424434,55.806729],[10.777886,56.109766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.01,47.501562],[-7.035312,46.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.967344,42.223594],[3.525,41.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.50375,34.8975],[-53.6,33.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.103281,36.156094],[-69.76,34.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.275,-7.25625],[116.695,-7.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.319844,55.808359],[18.470957,56.224805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.9325,52.6775],[-171.8775,53.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.38,34.9275],[-74.165,34.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.627187,41.923125],[18.366875,41.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.963281,42.830156],[28.975938,42.526211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.745469,32.9625],[32.119062,31.647031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.768828,20.000156],[-74.2125,20.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.25,-33],[153.5,-31],[153.8,-27.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.899038,52.034609],[3.488633,52.013296]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.970996,45.519277],[-1.41375,44.9225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.63,11.4375],[-130,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.425,37.9275],[-25.9275,37.90625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.907422,60.282812],[-3.725,59.190313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50],[-16.7225,50.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.514229,59.012822],[-1.98125,59.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.707935,60.35106],[22.004839,60.325132],[22.239844,60.198125],[22.39042,59.948574]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.550898,37.330234],[11.191396,37.289531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.505,13.7675],[-35,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,20],[-133.1575,20.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.5725,40.0975],[-50.5875,40.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.7525,-55.4325],[-80,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.94125,41.256875],[5.564375,41.342695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.585,55.504375],[21.049375,55.733125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.795781,41.606641],[10.463164,41.705469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.3925,41.835],[36.3925,42.2075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.1625,-9.81375],[142.1325,-10.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.635605,36.824463],[14.082495,36.676348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.91875,30.246875],[-73.855,31.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.54875,28.55],[-91.57875,27.81125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.450625,36.23875],[14.955469,36.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.21,35.39625],[23.035,34.800625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.923516,41.146836],[10.461445,40.891055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.73,25.3775],[-89.4625,25.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.48,-47.735],[-82.8775,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.38,36.66],[-123.429375,37.475625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.98375,22.9925],[118.3975,24.271563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.595547,-14.152734],[-170.9025,-14.32625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.128066,41.129287],[2.559844,40.921289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.04,-39.6275],[147.3025,-39.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.180156,46.235938],[-4.492188,46.009062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.5875,57.605],[-165.59,56.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.105,-39.9575],[-50,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.39625,-24.735],[-160,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67,-2.1575],[67.45,-2.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-40],[48.5025,-41.6775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.055508,60.824492],[19.27709,61.27605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,20],[132.96,23.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.895,40.96],[-39.1225,40.9825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.8125,-17.359727],[-158.2475,-21.79625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.8,-10.5],[130,-10.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.009687,37.76],[-23.85875,36.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.6675,39.105],[18.656709,39.660527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.99,43.1925],[-35.11,45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.55,-36.51],[157.6325,-36.2225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.667188,60.285273],[29.0125,60.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.164375,5.336875],[-7.84,3.6725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.275918,61.147715],[18.423047,60.707695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.2225,50.905],[-20,50.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.2575,26.54375],[-73.41875,24.78375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.8225,34.0775],[-10.79,32.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-30],[-89.55,-29.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,0],[-163.85,3.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.173674,34.625574],[32.364395,34.57127]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.68,51.901875],[-7.974285,51.728042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.48625,71.175],[28.695,71.0825],[29.106875,70.955625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.43375,39.995],[-68.964502,40.340308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.6625,-33.6775],[112.97,-34.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.6625,26.45],[-82.0975,25.6225],[-82.095,24.40125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.100937,35.027187],[130.0675,36.44875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.271973,50.628486],[-0.262402,50.295737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.46625,39.45625],[-71.66,39.6525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.2,30.09125],[-15.32125,29.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.47,42.2825],[-10.8225,41.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.11,28.185],[-88.73125,28.20875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.666055,38.239648],[10.986875,38.405938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.2625,-34.0625],[-9.9975,-33.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.340217,38.629578],[25.100732,38.490039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.89,-45.4025],[-160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.594375,63.986855],[22.9325,64.130938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.238955,38.558301],[12.821425,38.428919]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.543535,55.029609],[16.860312,54.820225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.847197,47.9571],[-4.6125,47.755],[-4.362832,47.675449]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.193125,30.3525],[-77.94,29.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.185,23.5625],[-85.932109,22.026016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.671084,49.779092],[-5.915391,49.654951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.045,13.36],[119.90125,14.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.193047,43.552847],[6.798809,43.312246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.17625,-7.075],[176.7225,-8.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.975,0.1425],[172.75,0.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.180312,61.413438],[3.355,61.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.0425,47.7625],[-14.6725,47.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.0075,-20.69375],[60,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.125891,35.763713],[24.131104,36.23646]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.805,34.035],[-70.58375,34.216875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.700625,13.5],[150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.0775,3.12],[52.3,11.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.508125,37.379063],[6.05,37.3975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.585742,40.782461],[1.936484,40.904687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.2,-36.7],[155.5675,-36.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.481853,38.631372],[20.223005,39.419204]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.19125,20.0075],[-43.745,20.0525],[-42.27,20.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,20],[-130,19.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.68,34.72],[34.100625,35.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.118437,37.243437],[13.452798,37.190425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.019263,43.120522],[9.823545,42.913235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.805,39.6025],[2.15375,39.811406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.788789,42.213477],[10.407744,42.386943]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.2925,-20.16],[-77,-13.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.00375,-6.29125],[111.9,-5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-10],[80,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.143315,38.162983],[25.769736,37.73077]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.4675,-37.7225],[160.0025,-36.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.16,22.3775],[-86.475259,22.085903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.55042,56.64918],[20.126279,56.452363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.7125,36.11],[-12.656172,36.203125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.133125,61.823125],[21.464063,61.85125],[21.340127,61.468494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.939199,44.269688],[13.062852,44.548828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.6975,-3.5975],[113.93125,-4.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.93,28.7825],[-88.0275,28.115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-172.54,47.5825],[-172.8775,47.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.177266,42.62418],[3.459062,42.345313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.470859,35.316563],[23.643446,35.63584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.83875,36.345],[-73.625,36.50125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.8625,42.34],[-32.99,43.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-30],[-96.1275,-26.3425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.815,64.3925],[9.739375,64.00625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.7275,60.8925],[-30,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.35625,15.36625],[-135.020625,15.224375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.179063,33.616875],[31.6025,32.7175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.3875,10.01],[140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.755,-10.48],[145.645,-12.015],[145.7625,-12.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.225,63.02],[-18.545,63.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.1325,51.8025],[-16.61,50.7925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.04418,57.309346],[19.309062,57.458438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.81,11.455],[-79.525,10.60125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.52334,36.170601],[24.66959,35.871655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.479688,55.17],[-9.40625,54.746875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,27.705],[-40,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.4525,34.69],[27.9775,34.6775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.706875,43.434375],[40.255,42.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.415,58.7575],[2.16,59.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1,62],[4.10625,61.7375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.353047,55.711758],[6.10375,55.97625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.98,34.7875],[34.955,34.51375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.015,-28.17],[5.8925,-30.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.0275,40.535],[-74.038125,40.661875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.285,31.3975],[-40,31.6025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.34375,-23.6075],[166.37375,-22.344375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.615273,61.027617],[19.734531,61.2575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.4625,57.633437],[20.781685,58.439336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.863027,43.62499],[10.077085,43.85087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.84875,24.55625],[-81.82375,24.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.0375,70.63125],[32.3825,70.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.7425,0],[-1.11,-1.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-177.3025,62.835],[-172.3,64.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.4575,39.45],[-20,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.73,-20.6225],[116.66625,-20.19875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.650625,33.94],[31.179063,33.616875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.662539,54.805371],[5.245566,54.889023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.891875,67.750625],[14.143437,67.526875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.3575,62.6875],[-16.225,63.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.5675,-18.515],[-115,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.53,16.6775],[68.8025,14.6775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.9975,19.9975],[62.6075,16.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[81,13],[81.2325,11.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.4675,66.46],[7.7,66.98]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.22072,54.951475],[9.79167,55.028234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-177.5775,27.62],[-178.5,28.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.574063,54.429688],[5.322227,54.133262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.470459,43.627012],[-8.755679,43.520796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.305776,58.233301],[5.957869,58.265466]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.8,26.3],[-78.2,25.58125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.52,-34.87],[165.29625,-34.67125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.54,57.725],[17.036152,57.56498]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.370171,38.089795],[20.0475,38.4725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.88957,41.917344],[3.967344,42.223594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.61,32.9125],[-120.6675,33.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.922773,64.697422],[22.549687,64.623906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.43,38.05],[-71.637969,38.376406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.5725,22.5825],[-64.6475,24.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.2,24.8],[-74.305,21.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.819993,42.138586],[15.40959,42.1446]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.760049,58.975605],[17.543809,58.56166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.49,-29.435],[60,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.3025,60.9325],[-5.825,61.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.3925,18.4775],[-55.65375,20.055625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.7475,60.0475],[28.203906,60.118125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.345,40.035],[-52.5725,42.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.054713,6.498376],[81.955,6.1175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.895,21.9675],[-74.63875,21.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.33,0],[-142.06,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,60],[-21.3775,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.498594,54.987734],[7.418867,54.669844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.3775,49.075],[-123.02875,48.79375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.500703,55.30668],[17.7425,55.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.1875,70.7475],[-95.175,69.5925],[-94.875,69.3375],[-95.36875,68.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.288393,42.803041],[15.964893,42.586113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.0025,25.4325],[-170,25.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.4075,0],[-160,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.42,-9.4325],[165.480625,-5.53625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.7225,36.96],[-10.286719,37.064297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.95875,22.11375],[-66.369375,20.040469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.96375,42.2375],[36.3925,42.2075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.8425,38.3325],[-28.436602,38.653398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-109.7,22.5],[-107.2525,20.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88.336875,-17.029219],[90.0025,-16.0975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.72,7.9],[-79.2025,7.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,40],[-59.4475,39.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.986406,55.811875],[17.431328,55.567109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.779966,54.881255],[18.30475,55.035637]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.3,11.6],[52.925,12.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.465,-36.8025],[-169.9975,-36.6825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.2575,64.5875],[-165.4275,64.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.53,-5.5875],[-6.45,-6.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.7025,37.38],[-122.9,37.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.033704,49.937569],[-2.941016,49.513984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.5075,-25.395],[113,-23.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.8825,-45.7375],[-60.205,-48.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.70375,28.1025],[-79.325,27.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.81125,42.1725],[38.605,42.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.1175,19.73],[39.335,19.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.448125,40.444375],[19.046445,40.513301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.031226,49.609712],[-0.089531,49.997148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.001875,11.0075],[-21.75,14.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,13.365],[-30,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.1475,33.2975],[26.3025,33.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-40],[100,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.390234,53.119766],[-9.4375,53.0475],[-9.7675,52.7825],[-10.054316,52.463086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.1425,44.09125],[30.04,43.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-1.5775],[-140.7175,-0.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.765,37.9725],[6.778281,37.650781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.800391,60.92625],[19.055508,60.824492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.1,25.5],[57.5125,25.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.9425,33.89],[23.3,34.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.0025,43.635],[-154.2875,44.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105,-15.17],[-101.8375,-11.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.58,42.51375],[4.330625,42.590312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.8775,-34.915],[118,-35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.717148,55.296562],[13.386094,54.875313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,41.79],[-28.585,41.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10,-31.9275],[9.9975,-29.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6575,54.469375],[6.371504,54.071631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.29252,56.583906],[19.76375,56.775625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.356562,29.147813],[-89.040625,29.46625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.66625,34.610312],[-13.12,34.66375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.3225,0.535],[167.02875,-0.49625],[168.43125,-2.879375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.7975,28.3025],[-140,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.870631,40.63457],[13.919844,40.300645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.9075,-32.275],[50,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.105,-14.2625],[-160,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[84.195,-14.3525],[85,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.04375,43.778125],[-3.826719,45.021875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.374941,42.33957],[19.038438,42.02125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-8.92],[-100,-0.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.960415,54.927198],[10.738478,55.100254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-32.085],[87.385,-32.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[86.11,0],[88.905,-1.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.0025,44.6925],[-129.89875,46.202969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.755,29.0825],[32.63125,29.70375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.236143,42.952451],[15.384766,42.597266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.68125,41.27125],[-11.181016,40.173789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.88,-56.355],[-80,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.46,-11.935],[130,-10.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.67,37.8075],[-33.835,37.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.181016,40.173789],[-10.884375,39.855625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9975,-29.9975],[3.5225,-26.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.0825,70.9325],[26.46,70.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.7375,14.5125],[-73.7775,13.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.6,34.4],[124.1775,34.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,22.42],[160,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.615547,36.486328],[14.082495,36.676348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,-5.0575],[-143.615,-3.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,25.9325],[-26.47,27.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.1425,-13.2825],[-175.47,-14.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.70625,41.54375],[-70.065,41.4825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.33,-26.5375],[7.2225,-23.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.446719,59.755508],[5.735508,59.94582]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.3425,31.04],[121.205,30.5075],[121.8975,30.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.9725,-24.4025],[50,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.975938,42.526211],[29.535625,42.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-10],[-146.3625,-10.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.24125,31.978437],[32.8875,32.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.004844,36.635937],[-1.761133,36.697363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-26.3975],[101.7525,-27.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.13,-56.015],[-67.02,-56.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.751055,56.422891],[5.220313,56.46125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.087344,39.546016],[14.362632,39.363623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.75,53.9325],[3.784169,53.91357]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.02,35.11375],[32.364395,34.57127]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-5.1275],[-140,-1.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.559844,40.921289],[2.84377,40.685156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.2,-3.535],[4.8775,-2.675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.666055,38.239648],[11.932227,38.128867]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.7725,-8.975],[135.4575,-8.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.32,55.0575],[3.1225,55.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.0025,44.6925],[-129.455,44.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.1975,51.005],[-5.439922,51.202578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.3,71.2675],[26.040469,70.966875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.775,29.8375],[-83.4325,28.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.5925,60.69],[-53.2,63.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.564844,56.526719],[12.416682,56.219017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.21375,28.50125],[-89.11,28.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.6975,-10.05625],[162.2775,-10.0175],[161.45,-10.01],[159.9925,-10.060937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.215,-32.1125],[107.3575,-30.6625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.8275,30.0525],[-30.65,30.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.835,43.6175],[-79.3425,43.61875],[-77.1825,43.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.0675,44.0875],[38.855,43.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.1125,-45.4025],[110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.160495,60.369147],[20.977891,59.996338]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[101.915,76.405],[100.9375,76.5425],[100.54125,77.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.216855,44.554338],[14.110454,44.132203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,-15.17],[-128.7075,-11.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.614199,35.457861],[25.639219,35.727187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1,4],[0.34,4.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.805,34.035],[-69.8425,33.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.43,51.631875],[4.654687,51.925156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.061165,63.013625],[17.986992,62.816523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.046392,53.582031],[1.531406,53.828281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.3975,30.045],[-47.9675,28.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.915801,56.669648],[8.122251,56.883525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30,-40],[30,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-50],[-30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.463164,41.705469],[10.295,41.312383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.0025,-34.6925],[10.0025,-33.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.8075,46.1975],[36.7625,46.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.584219,38.998438],[7.4575,38.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.735957,51.249131],[2.398516,51.237422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.54625,51.26125],[-167.4725,51.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.1975,33.395],[16.0375,33.675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-50],[90,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.090957,51.310059],[-2.92293,51.50875],[-2.599482,51.59415],[-2.3025,51.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.146562,51.80043],[3.899038,52.034609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.784169,53.91357],[4.223594,54.010781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.66625,-20.19875],[114.5,-20.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.3475,35.77125],[28.920625,35.503125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.143437,67.526875],[14.390703,67.332656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.610156,47.673828],[-6.859687,47.153437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.512065,43.115015],[16.735933,42.906719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.5925,60.69],[-63.39875,60.99625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.69,51.73],[0.7375,51.725],[0.84,51.7325],[0.945312,51.829453],[1.057684,51.571407]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.3825,27.6],[-84,26.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.7125,15.5275],[-24.5275,13.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.17207,39.607148],[0.789219,39.659375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.71125,42.24875],[-124.255625,38.57625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.753047,35.780938],[34.100625,35.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.8825,-16.935],[149.43,-17.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.084434,42.953066],[7.870938,42.779531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.469375,39.95125],[6.215,39.643125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.925,56.49],[6.794634,56.712373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.453954,39.883619],[23.295,39.65625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.365,-30.05],[50,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.271719,41.101719],[17.956836,41.152734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.83916,49.41332],[-4.024844,49.586641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.66875,64.559375],[-23.20875,64.4825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.173674,34.625574],[33.738594,34.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.4,10.5],[130,9.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.3025,-39.285],[146.4325,-39.1675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.94,36.9575],[-0.288516,36.661797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.0025,46.0375],[-161.5675,46.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.7975,27.605],[-96.0725,28.1875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.0175,10.010625],[-33.505,13.7675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.356133,58.670469],[-1.27125,58.27125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.30875,31.3475],[-13.9025,32.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.48125,36.735],[14.847993,36.641846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.43686,54.020796],[11.079497,54.052212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-21.3425],[-10,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.525,8.235],[-78.2325,8.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.62,25.20875],[-76.45,23.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.00375,-9.99375],[171.53,-8.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.927529,37.445293],[10.615547,37.631641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.165,53.38],[-36.735,53.8075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6075,39.489375],[6.9225,39.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.92,45.67],[-15.4825,45.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.1475,34.3375],[19.59,34.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.285,47.795],[-3.2875,47.78],[-3.554062,47.658906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.489414,43.210635],[8.75431,42.72792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.83625,38.815],[-71.26,38.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.32875,-12.59625],[137.1625,-9.81375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.5725,43.8875],[38.19,43.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.31625,38.27],[7.63,38.10875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.645,-40.035],[48.5025,-41.6775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.015,34.5175],[25.695,34.48375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.92875,34.5075],[23.739375,34.824375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.76375,55.41875],[19.334512,55.200977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.99,-13.905],[179.055,-12.8575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.42875,11.495],[120.05,8.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.967832,41.163145],[17.309222,41.237849]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-12.5025],[-1.09375,-11.13375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.911777,59.718779],[4.493164,59.836953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.18752,55.196726],[13.76918,54.977891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.415713,38.840752],[26.11771,39.019907]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.4125,5.195],[-81.175,1.8475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.638906,39.812305],[7.660469,39.537188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.89625,35.715625],[-3.722383,36.033086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.22375,44.644375],[-5.783164,44.592305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.2075,23.7025],[134.2475,26.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.760049,58.975605],[17.874526,58.542886]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.36,31.79875],[29.0875,32.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.2975,13.8875],[-68.4025,13.72125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.514229,59.012822],[-1.8675,58.9925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.24,43.515],[36.28125,43.234375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.615,48.445],[157.9325,47.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.6975,-26.58875],[34,-26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.753984,58.027109],[11.382346,57.877431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.0375,30.635],[-76.935,30.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.07125,32.385],[-70.215,32.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.137793,52.579573],[2.628906,52.187148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.6675,57.016875],[4.104453,56.332187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.52,36.3575],[-126.9375,36.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.9975,-35.12],[-40,-32.7175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,2.175],[-40,1.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88,21],[91.08,21.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.2,-13],[140.6,-16.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.1325,22.01],[-68.0475,20.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.274375,56.2925],[-7.495,55.43625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.419287,55.636387],[16.875781,55.545547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.481853,38.631372],[20.794766,38.623437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.769551,38.558916],[9.231826,39.077734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.93998,56.931621],[-1.613594,56.419687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-60],[-30,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.083315,56.214521],[17.122656,56.799727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.0025,34.0075],[-51.7,32.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,41.79],[-30.0025,44.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.216087,56.758495],[12.564844,56.526719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.775469,59.146406],[19.568906,58.975469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.6,3],[104.740625,1.6625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.2325,26.0025],[143.755,26.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.845,-14.54875],[177.595,-11.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.440156,59.17311],[5.712761,59.027883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.530977,49.444297],[-4.583213,49.079404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.081563,38.905625],[20.744492,38.927461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.266152,59.013701],[10.793129,59.024679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.041875,49.915625],[-142.6075,47.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.98,27.25],[49.52,27.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.296934,58.780742],[-2.744531,58.765469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.480055,36.448539],[23.788047,36.38876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.98125,59.395],[-2.100625,59.70375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.829375,28.595625],[-74.1075,28.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.238622,40.677594],[14.716306,40.474192]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.0225,40.365],[-124.255625,38.57625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.02,49.16375],[-4.88041,48.924609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.378965,43.050645],[5.601875,42.577109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,20],[-135.35625,15.36625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,16.67],[147.9325,15.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.45,-53.7],[-85.8,-54.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.77625,61.11375],[1.0025,61.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.8525,25.8675],[-85.762656,26.469375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.6375,36.4125],[31.9775,36.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.51,-12.6125],[-145.715,-14.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85,-35.385],[-80,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.42375,60.516875],[2.105,59.78375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.39042,59.948574],[22.790469,60.022109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.33,-25.9775],[0,-22.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.902031,50.647344],[156.6775,50.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.360547,36.944023],[13.26418,36.671563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.75,-39],[173.9,-40.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.295,39.65625],[23.547187,39.359844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.4725,-55.0925],[-62.54,-54.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.265,41.19],[-139.958438,40.086875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,20],[-25.4825,24.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.573867,36.835508],[21.345664,36.706875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.5425,32.11],[-127.35,30.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[175.2,-35.3],[176.9,-36.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.773281,57.108672],[10.631603,57.456724]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.075391,57.080576],[11.887881,56.8654]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.530459,43.106787],[9.757053,43.33144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-50],[-124.8875,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.2075,36.27],[-8.181094,35.863906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.105,14.1325],[-68.4025,13.72125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.1975,37.1025],[123.9775,35.4225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.715781,19.805156],[-67.031875,19.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.5,54.4],[-7.636563,56.349375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.090957,39.447441],[17.691875,39.080313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,37.49],[-132.09,38.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.65375,20.055625],[-52.0175,22.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.374531,39.867656],[12.680488,40.028066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.943438,35.452188],[27.195937,35.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.533376,36.630793],[23.788047,36.38876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-30],[100,-28.2425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.825781,37.147031],[18.250312,36.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.9975,-36.3225],[-92.8975,-33.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[74.8225,4.4675],[79.1025,2.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.193047,43.552847],[7.827422,43.645742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.555,65.45375],[38.38,65.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.958125,38.406875],[-29.995,37.92875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.25375,50.665625],[-5.662578,50.626484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.776836,39.764063],[9.84875,39.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,0],[68.025,2.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.318728,35.996227],[26.971714,36.178628]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.89,65.7975],[0,67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.458096,-7.128027],[70,-9.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.185,36.3725],[19.19,36.35625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.346814,43.727184],[14.110454,44.132203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.740312,36.618125],[12.097554,36.952969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.668396,54.57032],[8.3875,54.6425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.87,-50.86],[-63.1025,-53.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.1225,69.7025],[-99.6225,69.29],[-99.7325,68.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.485,54.2575],[0.021406,54.307031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.223594,54.010781],[4.705625,53.99875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.365,26.6175],[-88.195,27.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.740625,45.37125],[12.364736,45.269893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.879692,43.568643],[-3.949375,43.999375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.3925,18.4775],[-60.019688,19.97375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.4375,43.0225],[28.963281,42.830156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.30875,38.91625],[-69.5725,38.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,-50],[-57.63125,-51.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.593711,36.361289],[-3.931406,36.316367]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.6875,-0.8125],[126.8875,-1.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.73,-22.1125],[13.64,-27.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.452166,46.863257],[-2.557842,46.563525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88.905,-1.1125],[85,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.9225,-9.5275],[131.8,-10.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.379629,56.242959],[7.115,55.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.7625,-4.29],[-133.8525,-3.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,0],[-104.3,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.5625,44.8375],[-0.72,45.17],[-0.7975,45.3525],[-0.970996,45.519277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.5975,46.16875],[152.2,43.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.555,-42.8625],[-139.9975,-44.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.151875,0.00625],[-31.7375,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.3775,20.5675],[-161.865,17.5725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.732188,35.990938],[-3.722383,36.033086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.876484,37.227344],[-68.1475,35.9375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.48625,40.09375],[19.046445,40.513301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.363828,63.562969],[21.659375,63.78625],[22.035,64.095625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.58625,21.51375],[-73.766562,20.939375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.38,28],[-91.57875,27.81125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.386719,38.994219],[-72.91625,39.27875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,50],[-155.1125,45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.495,-20.1125],[57.55,-19.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.415684,38.837246],[24.631413,38.327471]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.179121,39.955371],[5.29,40.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.14,-14.985],[128.4,-14.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.3525,-52.7575],[-42.8375,-53.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.05125,28.21375],[48.7175,28.605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.2875,15.5775],[-63.12,16.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.196689,54.343059],[8.488677,54.022837]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.480625,42.289375],[8.488291,41.900225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.739453,32.532793],[-14.7575,31.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.325,53.585],[-150.8425,53.4725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.999766,57.248438],[-7.2575,57.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.125,-36.1925],[162.4675,-37.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.6375,26.81625],[-77.035,25.848125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.06024,-7.879388],[116.275,-7.25625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.0025,-33.5725],[10,-31.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.105,-34.4625],[2.5775,-32.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.68957,59.970225],[24.692422,59.539893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[99.9825,-8.4825],[100.02625,-9.998125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.9425,36.128438],[33.710625,35.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.0025,52.69],[-40,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.576936,51.453381],[1.868823,51.477681]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.837963,35.114116],[23.470859,35.316563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.705938,45.724375],[-5.6675,45.24125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.110454,44.132203],[13.925,43.928242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.318728,35.996227],[27.044585,35.922881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.4975,33.0425],[33.905,33.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.285,29.135],[-79.005,28.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.44,27.1825],[-94.4925,26.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.0625,25.33625],[-47.9675,28.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.8675,-25.1525],[-32.375,-27.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.411563,71.279375],[20.787813,71.224922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.585,11.86],[-15.5925,11.84],[-17.1275,11.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.680488,40.028066],[12.379766,39.994687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.3425,54.525],[-35.25,55.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.897454,58.567219],[-2.476719,58.596914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.2075,13.49],[-161.0975,11.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.875,32.51],[-78.1025,32.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.14,42.396406],[28.4375,43.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.193047,43.552847],[7.515754,43.396252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.215,20.0575],[130,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.7875,28.1375],[124.785,28.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.177266,42.62418],[3.364922,43.006016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.9975,-35.05],[-25.3675,-35.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.9975,-34.05],[-146.83,-33.4475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.0375,53.1075],[5.699375,53.148125],[5.352656,53.157656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.99,56.655],[-40.0025,56.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.6675,40.2675],[-68.705,39.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.923516,41.146836],[10.295,41.312383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.633594,65.179277],[-13.649424,64.811309]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.195,59.64],[3.805,59.4475],[3.620312,59.264062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.391406,59.783828],[25.806875,59.87625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.179121,39.955371],[4.939375,39.874063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.561875,39.82],[3.72875,39.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.14,42.396406],[29.180273,41.264727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.3,-34.4],[166.075,-35.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.58125,44.64875],[-7.985,44.4275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.56625,38.445],[7.31625,38.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.6125,-24.89],[-30,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.952969,38.052109],[-71.865312,37.523438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.778315,54.922671],[-0.41708,54.623066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.25,37.23],[26.921806,37.203799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.175,53.3075],[-35.5175,53.3425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.16127,42.462773],[17.135156,41.994062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.6625,39.605625],[23.547187,39.359844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-174.28,34.6525],[-170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.495,34.6225],[30.631641,34.477109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.63,52.7625],[-17.1325,51.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.575,59.0425],[-167.6425,58.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.672344,44.39875],[12.939199,44.269688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-12.815],[82.8525,-14.8625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.6,-12],[136.84625,-11.78375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.447407,54.972646],[-5.380625,54.685947]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.652305,41.883594],[11.458333,42.138639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.3775,59.3275],[18.6625,59.246797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10,-50],[5.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.432139,39.310298],[1.745,39.37625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.18875,39.246875],[1.432139,39.310298]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.06,0],[-150,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94.68,8.81],[97,7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.0375,30.635],[-77.193125,30.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.029375,-14.03875],[64.4525,-10.0325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.81875,31.25625],[30.01125,31.74625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.5,37.4],[125.6,34.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.17,73.975],[70.4625,74.285],[60.7425,71.745],[58.3275,70.8775],[57.965,70.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.285313,50.158047],[1.5425,50.7],[1.494547,50.852914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.164375,5.336875],[-11.3975,5.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.1475,40.194375],[19.48625,40.09375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.965891,58.906169],[9.555738,58.746776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,0],[-158.4075,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.105825,51.965063],[3.2625,52.295938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.995,10.935],[45.3125,10.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.171924,37.298304],[25.884702,37.41475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.53168,36.183516],[-4.906855,36.160156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.105,14.1325],[-69.2975,13.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.53,-8.5],[172.2175,-9.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95,-25.2775],[-97.855,-22.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.54105,36.899026],[15.200234,36.573076]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-14.4925],[-180,-17.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,11.665],[-130,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.035053,19.990462],[-60.101801,19.972452]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.095,19.7],[-75.136719,18.521875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.535,37.7525],[-73.80375,36.799375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.666875,38.215156],[6.765,37.9725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.3025,6.1425],[1.7075,4.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.955107,50.582607],[-5.948643,51.215752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.50989,50.131948],[-0.423467,49.701191]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.909844,40.288438],[12.680488,40.028066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.914062,62.431875],[5.435,62.24375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.669512,57.304258],[17.449375,57.009375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.9125,9.7975],[110.8075,11.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.9,52.6],[163.1,54.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.821425,38.428919],[12.357454,37.90199]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.15,64.27125],[-168.25,63.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.77,21.8775],[-63.1125,23.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.37625,37.86875],[18.585,38.76]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.9254,39.568506],[24.547754,39.230442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.965,16.1925],[156.825,16.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.395,-35.0075],[10.0025,-35.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.27875,41.4425],[5.998125,41.849375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,2.6975],[-167.19,7.2425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51,13],[52.925,12.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.246099,44.256753],[13.024492,43.93957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.644219,69.6175],[16.708457,69.904512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-30],[80,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85.77,15.873437],[87.08,14.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.12,34.66375],[-13.3275,34.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.7025,22.245],[-75.2025,21.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.271719,41.101719],[17.964287,40.843486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.998125,41.849375],[5.555,41.68125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.75875,37.58],[8.13,37.830625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.0175,44.665],[139.141519,44.765156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.117129,56.855566],[20.126279,56.452363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.443125,71.11375],[23.2575,71.54875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.9325,15.3475],[147.375,16.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,5.0575],[-38.995,1.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.515,32.77],[-72.5975,32.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.11771,39.019907],[25.775674,39.137302]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.1525,52.260234],[2.325,52.028437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.555625,49.891875],[-10.818125,50.191875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.749521,57.29083],[8.388594,57.067383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.844917,36.257485],[24.52334,36.170601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.891563,18.311563],[-66.111719,18.575273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.485823,53.499235],[-4.761875,53.75125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.749336,38.614609],[15.204447,38.802058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.475,-15.3975],[137,-15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.75,14.1725],[-23.7425,10.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.681084,39.03606],[14.85605,38.739146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.4125,-31.535],[50,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.415,37.5],[4.6975,37.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.641016,58.810508],[21.43623,58.543359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.41,-31.535],[-1.98,-32.1525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.751797,65.235781],[23.668203,64.983066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.437812,44.098438],[-5.509331,43.617627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.021406,54.307031],[0.405,54.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.5925,17.3],[-67.87625,18.49625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.488379,36.032012],[28.95125,36.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.82,55.0525],[-131.5625,54.6375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.7125,26.4625],[49.52,27.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.765,6.7925],[163.865,5.5225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-40],[-153.8725,-36.4275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.85,33.665],[128.0575,33.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.9125,10.8875],[60.7175,10.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.797266,39.375654],[1.134531,39.588672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.8225,19.545],[126.915,20.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.3325,10.32],[-24.5275,13.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.8625,27.08375],[-77.4975,27.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.995,-54.41],[-79.995,-54.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.271992,35.712578],[23.643446,35.63584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.605781,38.426162],[25.736152,38.705385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.98,10.0075],[-100,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.8975,32.5775],[-72.5975,32.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.21375,28.50125],[-89.4125,28.2225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.5575,30.0275],[-68.3975,29.3025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.314297,38.348574],[-9.345625,37.890625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.652344,65.973594],[-20.7475,66.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.777886,56.109766],[10.6075,56.1625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.18,33.0425],[121.4675,34.7675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.385488,39.396094],[-0.077788,39.484043]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.718486,57.654951],[11.44844,57.330281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.248594,55.751172],[-5.4225,55.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.1025,20.075],[63.155,20.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.66,11.0875],[-99.579688,15.480937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.8325,70.385],[22.505,70.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.4475,50.47625],[-14.92,50.7175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.379629,56.242959],[6.917637,56.007363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.1,33.2],[13.8,34.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.314687,27.958437],[-77.8475,27.6775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.555,17.3575],[119.565,18.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.96,13.59],[-153.0025,15.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.343867,58.234727],[10.368342,58.619362]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.725,24.49],[127.8225,25.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.5025,30.7125],[-78.335,30.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.2125,64.025],[-13.9575,63.79625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.4275,64.4025],[-165.64,62.7925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94.87,15.085],[96.38,16.3925],[96.2475,16.6525],[96.1775,16.76]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.7625,44.2825],[-67.7575,44.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.28,-20.1275],[-74.6575,-24.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.6425,58.3675],[-166.5875,57.605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.0025,-46.135],[-2.805,-47.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.235,37.88],[-71.43,38.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.9975,-33.92],[-10,-31.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.483247,42.322456],[16.773467,42.591909]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.12875,-17.94875],[117.704375,-16.459375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.049375,55.733125],[20.649277,55.753359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.9,19.75],[-67.031875,19.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.3625,40.96],[-10.00375,40.836758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.210625,36.46625],[-43.435,36.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.65875,36.380625],[-8.2075,36.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.4775,23.835],[-82.2,23.25],[-79,23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.430225,42.960469],[8.75431,42.72792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[83.6575,17.415],[85.77,15.873437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.497386,42.746442],[10.786808,42.55563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.975625,53.8075],[4.223594,54.010781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18,-35],[17.59625,-34.270625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,18.08],[-170,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.3075,12.9575],[-103.665,13.9175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.26,38.25],[-71.43,38.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.1575,5.8225],[-55.0925,5.8575],[-55.08875,6.04125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.217041,59.531699],[4.969375,59.31625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.905,54.005],[156.6775,50.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.037559,60.133594],[-0.792188,60.057187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.79875,73.23625],[69.59,73.68],[72.2725,73.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.07375,30.1025],[-87.29,30.2325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.248594,55.751172],[-5.447498,55.371414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.051172,36.245078],[-9.234932,36.621201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.6675,38.215],[-70.525,37.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.868203,45.435391],[-6.9725,44.9375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,30.2725],[-150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.135,-0.8775],[-158.4075,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.455,53.06],[-150.6175,52.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155,35.385],[160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.8475,44.794375],[-5.437812,44.098438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,0],[47.04375,-1.28625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.519687,43.526875],[-1.916992,43.469033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.667188,60.285273],[28.7475,60.0475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.795,38.64],[-71.637969,38.376406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.27042,36.278008],[-3.593711,36.361289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.442869,63.090898],[20.710234,63.392363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-30],[-5,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-40],[80,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.776836,39.764063],[10.094375,39.663594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.80625,0.7475],[49.322187,4.794844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.2425,26],[-96.99,26.02625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155,15.17],[154.4875,14.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.045,25.38625],[118.3975,24.271563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.8,55.1],[-165.3625,54.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.585,41.585],[-25.11,45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.574688,-7.068437],[124.2625,-7.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.0425,-19.1775],[156.5075,-18.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-50],[-89.9975,-53.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-32.7175],[-40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.515,26.475],[-76.716875,26.199375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18,-35],[20,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.615,58.4125],[142.9375,55.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.8275,48.9],[-50,48.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.3675,33.15],[-20.0025,33.52125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.5525,35.0075],[-50.0025,34.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.782939,54.533564],[7.857422,54.187529]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.506875,55.907187],[-6.574375,56.152187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.5171,59.5446],[10.620313,59.833516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,0],[0,-3.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-179,28],[-180,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.3575,30.25625],[-69.28,30.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.735938,59.440313],[18.984531,59.386875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.90125,20.06875],[138.67,18.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.865,42.035],[-64.2,42.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.744297,41.561094],[11.509063,41.307187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.974531,37.313125],[2.605,37.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.39,41.7275],[-170.6675,41.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.3625,36.1],[-10.9,36.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.345,60.915],[-1.262812,60.569375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.893438,58.392813],[-10,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.662539,54.805371],[5.574063,54.429688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.67,74.54875],[-126.42,75.115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.897364,56.449147],[20.490195,56.351406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.382109,36.584688],[14.480322,36.283815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.685,-14.365],[60,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.5575,-20.5925],[161.92875,-20.61625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.4775,-12.6],[-130.8775,-12.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.85,41.6325],[-155.1125,40.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.585,37.2525],[27.25,37.23]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-92.685,74.3425],[-92.3,74.1525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.1675,21.055],[67,22.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.48186,36.060669],[25.639219,35.727187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.985,-2.0125],[-110,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.02,-0.2725],[67,-2.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.11,-45.405],[70,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.872813,45.473125],[-3.71875,45.77625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.02,-0.2725],[64.966875,-5.071875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.59625,-34.270625],[16.62,-33.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.530248,42.472596],[14.55,42.75625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.07,55.575],[4.965,55.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.42,9.1125],[140,8.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,40],[-58.345,40.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.355,61.0175],[2.92375,60.86625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.291406,55.273594],[16.126771,55.551044]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.9775,36.33],[-35,35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.961719,60.365117],[3.854609,60.086406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.0175,22.14],[-54.86,25.30125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.1,-35.2],[-49.7775,-36.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-18],[53.84875,-23.14125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.985,64.58],[4.1,62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.925,56.49],[5.764375,56.762187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.3425,34.775],[-25.7725,34.595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.18375,36.947969],[0.51875,36.50375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.555,62.6875],[8.2325,62.805],[8.1725,62.8275],[8.0675,62.9625],[7.779141,63.061289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.53,50.5475],[-20,50.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95,-25.2775],[-94.17,-24.42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.508301,42.19166],[7.088438,42.554688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,48.2625],[-50,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.2275,34.885],[21.07,35.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.792188,60.057187],[-0.597422,60.380859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.2575,65.63625],[11.20625,64.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.255938,63.260625],[19.585313,63.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.9975,27.485],[-66.95875,22.11375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.8525,55.105703],[19.334512,55.200977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.87875,21.59],[-82.7,22.3],[-80.75,21.6],[-78.065625,18.979375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.229688,36.745088],[25.972529,37.031776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.865,-54.51],[-84.7525,-55.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.623906,47.280781],[-2.452166,46.863257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.7575,70.0375],[16.708457,69.904512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171,-46],[173.8,-43.7],[175,-42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.234932,36.621201],[-8.844746,36.731543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.7575,-35.1625],[-44.9925,-35.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.9675,37.26375],[5.33,37.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.485586,39.055078],[3.72875,39.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,37.71125],[-15.0875,37.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.916992,43.469033],[-2.4325,43.56125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.700625,13.5],[144.2675,13.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.065625,55.589805],[20.185,55.8875],[20.176953,56.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15,-15.17],[-16.8225,-16.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.965,-55.315],[-64.22125,-55.82625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.94,29.2925],[-78.16875,29.77375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[112.6875,-21.91],[113,-23.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.874526,58.542886],[18.289414,58.611396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.316455,41.846387],[11.075752,42.085078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.805,22.31],[-87.8975,22.73125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.0175,10.010625],[-40,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.09,27.78],[49.05125,28.21375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.780332,42.32082],[5.998125,41.849375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.15,63.2],[-23.5,64.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.269766,39.131094],[13.849297,39.40418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.5275,26.95],[34.2225,27.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-50],[90,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.805,35.4525],[-74.38,34.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.649375,57.014063],[-6.469844,56.578125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.89,58.7],[-3.65125,58.699688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.675459,37.484121],[26.400735,37.541272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.1225,40.9825],[-37.685,42.5925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.8625,38.1475],[17.4625,38.922813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.6675,65.5425],[38.38,65.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.69625,42.6925],[-10.204062,42.854922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.72375,22.13875],[119.705,19.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.66375,57.96625],[-2.359727,58.123125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.9325,38.8975],[18.6675,39.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.1325,12.6525],[-112.56,16.2225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.3625,54.4975],[-164.54,54.1675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.02,-31.9525],[171.8175,-31.815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.424434,55.806729],[10.7,55.7875],[10.95052,55.873606]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.5575,48.1875],[-10.535,47.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.6075,18.9025],[119.6375,19.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.8625,39.1275],[-138.555,38.6675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.536953,43.473828],[-9.764063,43.115938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.77,1.4175],[8,3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.9125,10.8875],[60,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.775117,38.854687],[12.379766,39.994687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.959375,56.04375],[-7.002041,55.378682]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-22.12],[0,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.0825,12.465],[-111.1325,12.6525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.8,61.9075],[18.39375,61.965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.493437,51.875522],[-5.24647,51.492124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.505,25.56],[121.4625,21.815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.682969,61.55],[20.920566,61.413633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.240156,52.755781],[3.254312,53.060234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.83,55.2075],[-132.31,54.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.445,41.88],[-66.865,42.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.0475,9.980625],[-110.1975,10.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.5025,22.8425],[-86.805,22.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.295,68.0525],[43,69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.020625,36.225234],[26.238047,35.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.7875,-5.05],[125.3225,-4.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,28.2375],[-154.235,24.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.953335,39.817231],[24.505422,39.828574]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.8525,-3.9],[-130,-3.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.5975,52.705],[-30.965,53.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.566484,29.254062],[-15.593125,28.889375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.893906,40.936875],[3.226172,40.772656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.34,37.3525],[18.273047,37.273672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.285,3.3275],[139.9975,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.638936,53.120352],[4.309688,53.065938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.634346,41.310195],[16.655576,41.640464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.695,54.6175],[-131.99,52.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.490195,56.351406],[20.176953,56.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.845,58.3625],[-158.99,58.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.2425,1.2625],[-31.7375,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.3825,20.655],[-140,20.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.136162,62.23126],[20.755,62.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.230312,54.725938],[-165.3625,54.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.255,21.8275],[-166.115,24.1175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.628242,55.61668],[10.424434,55.806729]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,35.385],[-137.2,37.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-106.425,18.7275],[-105.5,18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.6575,-3.1725],[54.5775,-3.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.5025,30.7125],[-78.58625,30.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.173674,34.625574],[32.909455,34.52664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.65125,58.699688],[-5.16,58.649062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.7475,22.3875],[-55.65375,20.055625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.0025,5.06],[-102.69,2.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.9075,-8.97625],[133.7325,-8.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.3175,30.3025],[-76.935,30.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.748125,31.585625],[31.45375,31.71875],[30.01125,31.74625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.1375,37.105],[-135.7675,38.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.62,47.541875],[-4.847197,47.9571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.9975,19.9975],[60.4,22.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.004155,40.577924],[12.909844,40.288438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.685,15.48],[-156.375,15.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.636406,53.467812],[3.975625,53.8075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-172.8775,47.61],[-177.755,47.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.85625,54.5475],[12.56418,54.674063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.5,61.1],[-63.185,61.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.6,1.1],[103.945,0.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.7125,36.11],[-11.278125,36.711875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.575,52.85],[4.006875,52.968125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.865234,48.664141],[-5.289603,48.464297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.8625,23.3275],[-171.0425,21.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,30],[157.015,33.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.7575,31.59],[-15.2,30.09125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.110371,41.430056],[17.309222,41.237849]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.126753,51.171348],[2.208242,51.472422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,0],[85,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.519492,36.193398],[26.971714,36.178628]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.250625,-27.075],[160.0025,-25.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.645,5.8575],[-80.4125,5.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.785,31.735],[-10.79,32.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.525957,56.332773],[11.235203,56.705232]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.152488,48.913396],[-4.583213,49.079404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.54625,8.546875],[-17.001875,11.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.6325,-35.035],[-23.1375,-33.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.0875,4.7875],[8,3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,41.79],[-31.9425,42.0725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.9,31.3],[124.49,33.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.5,-46.5],[-75.86,-51.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.680625,44.978125],[-2.895,45.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-117.1075,17.25],[-115,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90.103125,-19.976875],[100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.943125,62.992031],[6.41875,63.015625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.967832,41.163145],[17.110371,41.430056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.323008,60.104219],[26.675273,59.982813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,0],[-160,10]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-99.995,74.455],[-98.8525,74.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.780332,42.32082],[6.738301,42.52252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.613828,41.268682],[17.956836,41.152734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.18752,55.196726],[14.019648,54.751348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.405457,13.209844],[-59.945,13.0875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.784169,53.91357],[3.975625,53.8075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.600938,12.615312],[44.701191,12.123084]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.385695,61.204697],[21.225645,60.79873]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.675,6.41],[-81.645,5.8575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[151.855,17.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105,-25.2775],[-100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,15.17],[-145.85,14.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.955,-0.83],[51.62,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.19,38.4375],[122.1725,38.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.196689,54.343059],[7.72515,53.843041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.501875,44.645625],[-1.800312,43.855781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.551523,60.138984],[25.973203,60.058301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.054688,40.210625],[7.638906,39.812305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.045,10.6425],[-83.59,11.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.995,37.92875],[-27.1125,37.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.480953,43.776353],[15.133311,43.544722]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.3,37.9],[129.5325,38.02125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.4975,69.6475],[53.67,69.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,0],[72.458096,-7.128027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.76,34.9275],[-69.805,34.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.131587,48.801069],[-3.582187,48.967187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.707813,57.801992],[-6.22707,58.164531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.952969,38.052109],[-71.61875,37.72875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.28,5.94],[-44.44,4.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-60],[-34.915,-55.0675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.804063,11.961875],[-61.5675,13.245],[-61.4975,13.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.775117,38.854687],[13.144531,38.889063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.9775,55.9275],[-8.479688,55.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-50],[-174.5625,-45.11],[-170,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.528906,50.685781],[-7.608437,51.464687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.655,13.9775],[-75.0675,13.6825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.5725,26.155],[-67.35875,21.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.23,45.6575],[-3.598438,46.093438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.151875,-5.8925],[119.5275,-7.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.9775,8.505],[164.765,6.7925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.6425,39.4075],[-30.835,39.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.2325,59.735],[10.345,59.6975],[10.4075,59.6275],[10.4075,59.5525],[10.5171,59.5446]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,41.3125],[-151.3125,41.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.3675,37.765],[-32.67,37.8075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83,57],[-79.7,53.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.584219,38.998438],[6.6075,39.489375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.605,49.32],[-16.01,49.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.196689,54.343059],[8.157101,53.959185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.884702,37.41475],[25.509514,37.176184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.51,67.036875],[13.508125,67.472813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.835,58.0625],[17.036152,57.56498]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.9425,61.875],[-81.3675,62.22]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.116953,39.34207],[15.02606,39.080732]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.3,0],[-30,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.11375,33.39],[32.7375,32.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.8225,-4.9775],[54.5775,-3.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.58,-25.73],[4.33,-25.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.651816,56.985137],[20.867578,56.756875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,8.59125],[70,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.006875,36.433125],[15.200234,36.573076]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.0025,57.2875],[-38.1975,58.2675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.725,61.0275],[-0.82375,60.87875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.260469,37.51],[16.48125,37.713437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.525,41.3475],[-170.535,41.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-179.2,64.9],[-177.3025,62.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.086406,40.580312],[8.054688,40.210625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-50],[-180,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164,53.8],[-164.255,54.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.845,37.68],[-66.515,35.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.951172,56.088125],[19.29375,55.98125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.5925,28.24],[-19.96,29.978125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.34,37.3525],[17.63,37.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.279155,39.716597],[18.656709,39.660527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.7125,15.5275],[-25.07,16.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.3275,35.7575],[-5.32584,36.043621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.55,9.765],[-71.60875,10.6425],[-71.59,10.77],[-71.58,10.8775],[-71.315,11.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.286133,38.606543],[-9.907578,38.803672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-101.8375,-11.93],[-102.005,-11.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.265,-31.175],[115.1325,-34.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.69,41.66125],[5.998125,41.849375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.115,24.1175],[-170.0025,25.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.075,-35.355],[165.52,-34.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.5275,32.501875],[34.721875,32.858125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.491523,56.585137],[11.768555,56.627061]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174,-34],[172.3,-34.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.3425,5.1525],[174.9,3.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.9425,61.875],[-86,61.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.698438,54.094687],[5.522705,53.559409]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.656562,34.800313],[27.066875,34.80875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.84377,40.685156],[2.345554,40.599189]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.001875,11.0075],[-18,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.445,15.645],[54.1875,14.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.31625,38.27],[7.223164,37.666406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.155,59.9475],[-83,57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.59,-43.83],[75.11,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.6825,13.049688],[-59.973931,13.114248]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.8225,54.585],[-0.41708,54.623066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.91875,5.86],[-55.08875,6.04125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.48125,37.713437],[16.77,37.65],[16.795,37.6425],[16.875,37.625],[16.9025,37.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[148.9725,40.8225],[150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.605,31.905],[-15.566484,29.254062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.03,77.605],[17.095,75.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,0],[166.3225,0.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.9,5.4],[-50.9075,7.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-50],[-104.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132,-8.9],[130,-10.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.86125,64.29375],[22.035,64.095625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,15.48],[-140,13.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.530674,36.614142],[26.316016,36.362266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.595,-41.5725],[10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.1375,-5.9175],[-144.4475,-5.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,30],[-123.5425,32.11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.6675,65.5425],[39.1025,65.0725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.1125,16.5075],[111.4775,12.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-10.3425],[-97.305,-17.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.465,43.24375],[-62.185,44.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.925,43.928242],[13.619668,44.030625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.184375,19.263438],[-104.7,18.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.43,38.05],[-71.61875,37.72875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-24.3225],[-116.77,-26.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.5725,22.5825],[-66.369375,20.040469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.35875,21.6275],[-66.715781,19.805156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.3725,37.5275],[-68.1475,35.9375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.46,68.4925],[8.0475,67.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.22,30.4775],[128.135,31.3875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.6675,37.8475],[150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.910372,53.77391],[5.698438,54.094687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.83,29.9525],[123.09,29.8425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.6075,20.3025],[111.35,20.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.935,12.3575],[-80.1125,10.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.855,29.59625],[-19.96,29.978125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.1275,14.35],[-125.6425,14.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.0725,71.185],[-147.1825,71.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.5,-10],[149,-7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.079297,39.135859],[10.313047,38.851172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.163398,57.671094],[17.878408,57.549116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.9525,0.9675],[-110,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.3825,-23.82375],[153.6825,-24.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,20],[126.915,20.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.36,0.94],[77.755,1.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.6975,37.2725],[3.812266,37.140313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6675,38],[4.3975,38.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.47125,60.665],[20.242031,60.869062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.8025,6.3275],[-10.825,6.2825],[-11.164375,5.336875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.725938,-22.962031],[111.185,-24.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.707583,60.778877],[3.961719,60.365117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.22707,58.164531],[-5.753125,58.092656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.40375,38.85625],[11.110156,39.516562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.902031,50.647344],[157.115,50.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.687562,58.415442],[10.588633,58.0579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.9,-18.3],[174.24625,-15.27875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.692092,40.695101],[18.695,40.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.357188,21.172812],[-74.10625,21.07375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.95,41.015],[-42.6175,42.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.525625,57.746875],[-3.0646,57.780654]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-40],[52.4525,-37.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.545,24.818125],[-157.512266,21.273633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.95052,55.873606],[11.33822,56.091329]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.2925,34.13875],[27.78625,34.46375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.2675,-31.3775],[-115,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-30],[-5,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-31.5775],[-140,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.37082,38.597422],[15.204447,38.802058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.496826,55.929531],[14.862277,55.907352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.9,-27.8],[-46.3,-24.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.92,39.1075],[-70.83625,38.815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.29625,-34.67125],[163.505,-33.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.112578,37.612578],[-9.32584,37.236904]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.346079,41.339282],[12.406016,40.887422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.2,42.3],[-55,45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.359688,32.521094],[132.165,33.035],[131.898125,33.67375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.64,-27.27],[17.59625,-34.270625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.1525,-20.6175],[116.555,-19.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.88957,41.917344],[3.563867,41.622969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.546875,37.243125],[18.6875,37.2125],[18.84,37.1775],[18.8925,37.1675],[18.96,37.1525],[19.07,37.1275],[19.3025,37.0725],[19.85,36.95],[19.9475,36.9275],[20.06,36.9],[20.285,36.85],[20.31,36.845],[20.55,36.79],[20.6875,36.7575],[20.6925,36.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.663691,36.420527],[21.959687,36.066563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.345,37.6275],[-0.035312,37.537031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.93,42.68],[28.064385,43.102422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.081875,66.418125],[-24.4825,68.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.7425,-20.0375],[80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.7825,26.2825],[128,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.5225,10.65],[-61.785,10.65],[-61.79875,10.6875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.460625,60.16875],[27.048828,60.374121]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.0646,57.780654],[-2.93,58.205],[-2.897454,58.567219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.995,55.0675],[17.644219,54.943906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.155781,40.845312],[25.87125,40.810625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.865,-15.03],[123,-16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.50989,50.131948],[-0.988203,50.156406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.8875,-45.4025],[-142.555,-42.8625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86,61.1],[-90.655,59.815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.0325,33.71],[-76.3125,33.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,30.9025],[-28.8525,31.2475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.11,39.02625],[-73.86,38.99875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.9525,-13.6575],[49.915625,-10.021875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.465,-45.08],[160,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.8025,30.5475],[-71.53875,30.46625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.1125,-45.4025],[110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-47.27,37.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.432139,39.310298],[1.66,39.195],[1.82,39.175],[1.902285,39.084922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.75875,47.51875],[-135.1125,45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.57375,55.78625],[18.956563,55.702969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.872583,48.592964],[-5.762246,48.171055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.13625,58.46375],[-10.5,54.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.958125,20.08],[-30.255,20.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.301875,58.63625],[-0.11625,58.309375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.38875,32.23625],[30.6375,32.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.9175,-6.02],[55.37875,-4.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.9225,-9.5275],[132.9075,-8.97625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-14.4925],[180.7525,-15.795],[-180,-17.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.43,51.715],[4.146562,51.80043]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.115,24.1175],[-165.82,24.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.623906,47.280781],[-2.375,47.145352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.455625,29.054375],[-93.1375,27.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.624375,40.47625],[1.835469,40.160469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.6175,41.455],[161.6,41.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-20],[178.8,-19.3425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.742734,56.151094],[20.897364,56.449147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67,-2.1575],[66.7075,-3.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.109375,-37.7925],[149.7025,-39.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.226719,37.613281],[20.938406,37.792102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9825,60.489453],[5.109297,60.063438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,20.51],[-30,25.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-119.222328,33.3387],[-118.915,33.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.806328,36.032734],[26.018335,35.684702]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.3225,-4.135],[125.23,-4.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.844746,36.731543],[-8.50168,36.626758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,31.6025],[-40,30.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.87875,36.89625],[-12.400781,37.014375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75,-25.2775],[73.945,-24.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.245981,36.202173],[23.271992,35.712578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.955,34.775],[141.3,35.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.09375,30.035625],[-150,30.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6075,39.489375],[6.215,39.643125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.613125,37.707813],[-10.83375,38.58875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.357188,21.172812],[-74.91,21.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.94125,50.02375],[-64.475,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.1175,39.8125],[-69.492402,40.297148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.555625,49.891875],[-10.6925,49.91375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.08125,42.4625],[8.248164,42.088457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.543125,36.07875],[-8.608438,35.794063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.8525,-3.9],[-130,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.38042,52.485508],[4.127988,52.351133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.309688,53.065938],[4.006875,52.968125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.395,1.2775],[2.032905,4.866694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[79.1025,2.7875],[81.9,5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-172.8775,47.61],[-173.0375,47.1775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.255,42.64],[41.155,42.17625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.648818,35.316318],[26.47418,35.538633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.9175,22.25],[-73.14,23.20375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.127988,52.351133],[3.899038,52.034609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.935493,55.269111],[7.319315,55.488536]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.033704,49.937569],[-3.274683,49.67916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.984121,57.868047],[7.257485,57.945977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.277881,56.896787],[7.604336,56.875566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.9025,41.1375],[-138.265,41.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.4775,15],[-180,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.217946,63.72204],[-22.2725,63.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.147813,56.902109],[19.398281,57.002461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.465,-45.08],[156.9025,-43.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.76832,37.284453],[15.776404,37.322181]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.00375,-9.99375],[169.42,-9.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.7325,27.07],[-91.8125,26.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.695,2.155],[86.11,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.8675,58.9925],[-1.98125,59.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.6975,-23.75625],[-41.25,-26.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.867754,58.728691],[21.107188,58.580234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.29125,57.9275],[0.163125,58.008125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.769736,37.73077],[25.481746,38.133721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23,15],[-23.7125,15.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.539735,26.185],[-91.22,26.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.73,34.055],[-32.55375,32.79625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.9125,-24.5075],[159.46,-20.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.936855,48.920098],[-2.104375,49.138437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.265,0.0175],[5.3,-2.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,25.2775],[-30,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.5575,32.7825],[-52.2475,32.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.21,10.755],[-93.66,11.0875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.151791,39.333627],[7.584219,38.998438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.203203,37.980781],[0.322344,38.101406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.9125,9.7975],[115.045,13.36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-20],[-99.1,-19.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.200234,36.573076],[14.847993,36.641846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.090957,51.310059],[-3.33,51.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.935122,37.151133],[12.097554,36.952969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.0725,11.4375],[110.0275,10.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.26125,38.86375],[4.779531,38.952188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-10],[-10,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.625,36.775],[-12.400781,37.014375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.195,-52.635],[-75,-53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.7675,38.2725],[-137.8625,39.1275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.8425,34.94375],[27.52625,35.04875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.965,28.0375],[122.8725,28.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.249531,55.384531],[17.065625,55.181445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.4225,-3.255],[5.5775,-3.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.295,40.44125],[-69.7725,40.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.87125,40.810625],[25.303721,40.320674]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.049141,40.385742],[-9.295,39.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.36375,29.29375],[-87.3475,29.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.0975,11.2525],[-161.5625,10.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.25,41.8],[-69.49375,41.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.166875,41.685156],[17.110371,41.430056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.07,33.19125],[137.2875,34.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.665,56.6975],[-177.293437,54.639375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.7975,40.0475],[-30,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.204062,42.854922],[-9.809609,42.782812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.202847,40.045364],[8.21,40.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,19.5575],[-130,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.095,18.14],[65.8125,17.4075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.9525,49.015],[-31.5825,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.0375,16.375],[-82.055,14.5125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-50],[-82.8775,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.478125,58.512187],[4.317969,58.094687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.539228,47.308888],[-58.605,47.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.873125,54.61125],[2.3575,54.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.95375,53.8075],[5.154155,53.500967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.945625,59.021563],[21.641016,58.810508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.2,47.75],[-59.94125,50.02375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.51,0.345],[-90,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.005,-27.2375],[-46.545625,-26.94875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.8325,14.43],[-64.2875,15.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.93625,35.5225],[35.346875,34.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.73125,28.20875],[-88.4725,28.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.9275,37.90625],[-25.273438,37.940313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22,33.3],[23.4325,33.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.010781,55.513438],[-6.1125,55.885],[-5.720547,56.398438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.595,2.055],[-89.8575,0.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.3975,44.0375],[36.439609,44.759141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.755,26.4525],[143.445,26.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.1175,40.045],[-132.405,40.07375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.85,33.135],[-72.8975,32.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.92375,60.86625],[1.9,60.7375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.06,57.215],[-15.21,55.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.32625,68.454063],[14.049531,68.127187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.0025,-34.305],[-3.825,-34.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.18752,55.196726],[14.594201,54.944301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,8.5025],[-140,4.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.779141,63.061289],[7.3,63.349844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.283926,41.33125],[3.27624,41.837959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.6625,52.7275],[-50.0025,52.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.049219,54.647813],[6.6575,54.469375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.518125,59.256875],[2.3475,58.94125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.695264,37.793544],[24.604097,37.545281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.24,63.135],[-36.85,65.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.6975,13.9475],[-140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.325,31.4175],[-77.6675,30.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.4,35.395],[-74.805,35.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.88957,41.917344],[3.237656,41.527344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.30375,25.26875],[-15.470937,28.197734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.702676,57.681094],[22.16,57.73],[22.450625,57.80125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.8,-29.6],[-72,-33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.8,-12.2],[130,-10.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.038772,52.23241],[-5.827344,51.908281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.155,37.55375],[1.1375,37.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.2525,64.62625],[35.0225,65.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.634492,57.1775],[-1.613594,56.419687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.375,15.465],[-155.2025,14.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.0275,10.1725],[104.740625,1.6625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.948125,7.06875],[-81.87375,7.2075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.6,35],[11.273125,34.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.590625,15.750625],[-77.655,13.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.934531,57.566284],[7.90436,57.051143]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.85,14.305],[-148.1325,11.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.9,31],[132.359688,32.521094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.2825,37.3],[5,37.18375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.745,-43.645],[75.11,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.418867,54.669844],[7.049219,54.647813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.086406,40.580312],[8.202847,40.045364]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.687598,51.32625],[-8.705,50.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.14875,27.68125],[-76.94375,27.12375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.84,14.3175],[-135.35625,15.36625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.3625,54.4975],[-166.7325,54.19625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.241221,55.024209],[16.291406,55.273594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.28,-20.1275],[-80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.481853,38.631372],[20.370171,38.089795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.2825,35.64375],[22.701875,35.807187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.9375,36.4925],[-126.38,36.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.5325,38.3075],[-75.2775,37.3025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.1525,52.260234],[2.628906,52.187148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.078438,42.0925],[-10.011563,41.696562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.86,-31.24],[-135,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.374941,42.33957],[17.851562,42.47875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.9575,44.075],[32.89625,42.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.57,-25.975],[32.67,-26.035],[33.6975,-26.58875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.181094,35.863906],[-8.17125,35.45375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.385,-55.36],[-72.8575,-54.8475],[-75,-53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.154512,43.383896],[-9.971109,43.525058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.908887,59.714678],[20.093699,59.458062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-148.9275,41.2],[-150,41.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.928772,36.401431],[20.925582,36.401348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.314297,38.348574],[-8.99293,38.442773],[-9.102083,38.035994]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.285,3.3275],[135,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-10],[-76.28,-20.1275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.2525,55.4025],[-133.98,54.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.0575,53.79],[-152.455,53.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.62,37.895],[11.005,37.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.600625,37.03375],[-8.254687,36.852031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.223125,43.2575],[4.5475,43.29375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.1325,34.4925],[-144.97625,35.36375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.08,34.49375],[-13.66625,34.610312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.09,27.78],[49.255,27.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,9.7525],[-79.999688,10.354375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.9225,2.9275],[97,7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.876875,-5.670625],[117.155,-5.56875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.180156,40.165781],[22.847383,40.304961]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.8875,-45.4025],[-130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.53,-5.5875],[-10,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.795,36.12],[-126.52,36.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.835,43.6175],[-77.1825,43.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.6875,19.24],[124.5375,20.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.074687,56.466875],[7.93375,56.016875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.78,-1.8075],[-20,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.036809,36.497406],[21.345664,36.706875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.4825,-8.1],[47.04375,-1.28625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.366363,37.294783],[15.645,37.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.4775,-12.6],[-135,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.379375,39.819375],[14.391758,40.245664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.0025,36.535],[-50.0025,35.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.8475,15.4125],[-70.68,15.01625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.0375,27.1325],[140,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.97,38.0375],[-70.525,37.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,60],[-53.2,63.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.535,47.885],[-9.12,47.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.0025,36.325],[-22.4875,36.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.2575,7.87],[169.4225,5.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.5325,38.02125],[133.02,39.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.0025,34.3075],[-33.73,34.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.5475,-30.0825],[91.44,-31.565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.65,30.7075],[-30,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5925,-40.2725],[-180,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.29,-6.825],[40.01375,-6.54625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164,53.8],[-164.54,54.1675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.941094,36.737188],[12.667563,36.93707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.3,63.349844],[8.8525,64.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.175,51.5925],[-163.255,51.6825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.15,60.9375],[17.1625,60.94],[17.354573,61.169585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.560938,58.811875],[18.289414,58.611396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.5275,28.3875],[129.5625,30.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.061797,54.235117],[6.6575,54.469375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.244062,64.816875],[21.683516,65.004453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-12.895],[-11.325,-11.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.894749,36.008716],[22.447139,36.088213]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.69,24.6575],[-15.470937,28.197734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.225,45.1375],[-3.826719,45.021875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.318728,35.996227],[27.206715,36.450522]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,30],[-160,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.06113,54.763171],[16.241221,55.024209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.125,29.4],[-170,29.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.48,10.215],[-98.1025,10.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.4575,35.792812],[-74.4,35.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.999297,47.852695],[-4.362832,47.675449]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.364375,66.279375],[12.2575,65.63625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.5575,32.7825],[-57.793125,32.43375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.69,67.7575],[-87.1525,68.545],[-87.405,69.46],[-89.995,70.4975],[-91.6375,71.775],[-89.06,74.31875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.345,61.4675],[-2.8625,61.22]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.795,30.09],[-138.82,28.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.995,50.5575],[-177.755,47.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.081875,66.418125],[-36.85,65.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.3025,60.0825],[-54.1,56.7225],[-52.2625,53.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.1,38.05],[125.5,37.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.036875,30.944375],[-72.7375,30.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,9.715],[-110.0475,9.980625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.699687,43.750625],[28.963281,42.830156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,20],[136.90125,20.06875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.42,56.435],[17.573125,56.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,37.2875],[-40.0025,36.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.8125,75.1625],[-65.7725,74.6525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-28.2425],[100,-26.3975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.089213,53.258459],[-3.906172,53.379531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.9275,-2.9675],[-100.6475,-8.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.3775,46.48],[-13.5375,45.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.3675,-35.0375],[-24.6325,-35.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.964502,40.340308],[-69.4575,40.55125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.140859,56.027031],[17.768457,55.970605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.89,-45.405],[-40,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.645,21.08],[136.90125,20.06875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.3375,-16.49],[-80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.9975,-33.5325],[-23.1375,-33.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.63875,21.88],[-76.36,25.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.7125,59.055],[12.9025,58.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.260234,36.758281],[26.910476,36.686746]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.487891,39.278262],[19.83875,38.7775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-119.2,-0.8125],[-120,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.7675,-32.3775],[-48.74,-31.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.1,54.7],[158.6275,50.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.9425,50.9825],[-29.2175,50.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.55,29.185],[-91.54875,28.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.05625,16.585],[-58.3925,18.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.075,22.2],[-130.008125,26.146875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.057684,51.571407],[1.150381,51.951289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.935,30.3375],[-76.835,30.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.870938,42.779531],[7.6,42.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.22072,54.951475],[10.738478,55.100254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.25,55.43],[-36.50875,53.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.147813,56.902109],[18.706289,56.817539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.4875,-6.19],[129.768125,-5.03125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.01875,56.948125],[2.495,56.935625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.99,-10.015],[-5.53,-5.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.8875,36.2875],[-73.27,35.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.5725,38.78],[-70.6675,38.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.62,-33.275],[14.3325,-30.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.040312,49.085313],[-8.705,49.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9975,-29.9975],[4.58,-25.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.5825,63.6675],[-14.2625,63.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.323008,60.104219],[25.806875,59.87625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.316016,36.362266],[26.020625,36.225234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.131699,41.730029],[9.840806,41.531836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.71,72.88],[155.5025,71.82],[169.5925,70.86125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.585,60.409688],[19.419526,59.931455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.7675,38.2725],[-137.2,37.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.649375,59.885],[21.237109,59.49334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.6025,38.13],[-122.9,37.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.7975,43.825],[-3.174857,43.541549]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.9325,44.245],[37.24,43.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.4075,8.4375],[-29.915,4.93125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.627187,41.923125],[18.620781,41.540937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.0575,50],[-130,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[112.625,-21.5975],[112.6875,-21.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.365,0],[53.185,1.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.591562,44.739688],[29.5275,44.6525],[29.4425,44.5525],[29.425,44.5325],[29.185,44.25],[28.893213,44.010146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.209141,64.978984],[-24.9,65.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5,-35.385],[4.605,-35.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,22.42],[158.4825,21.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.931406,36.316367],[-4.215781,36.429844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.139375,51.521875],[-9.687598,51.32625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.35,30.88],[-130,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.6,24.3],[66.96,24.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[97,11.125],[95.2425,10.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.85625,52.76375],[2.930508,52.306133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.191484,61.644063],[17.354573,61.169585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.615,-35.24875],[-51.625,-38.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.195,33.7525],[-17.285,33.18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.6025,32.7175],[32.119062,31.647031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.890625,65.97125],[12.622598,66.124668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1175,51.4925],[3.213745,51.676665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.678291,54.589424],[-3.439687,54.880313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.971714,36.178628],[26.827482,36.412427]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.745234,39.090742],[26.875625,38.836562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.0225,-25.3],[4.58,-25.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.151791,39.333627],[7.870625,38.90709]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.35,20.4],[113.2,19.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.5025,31.63],[135.3425,33.0425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.17,-24.42],[-90,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.441687,37.458124],[23.882515,37.562214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.315,-54.1125],[-35.805,-54.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.41708,54.623066],[0.021406,54.307031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.281719,49.017773],[-5.02,49.16375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,-5.0575],[-127.4625,-2.5725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.0025,44.2625],[-30,48.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.69,5.83],[114,6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.16875,37.699336],[-11.8575,38.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.404687,52.319531],[-9.81125,52.26375],[-10.054316,52.463086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.27,37.48],[-46.210625,36.46625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.525,-26.9575],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.83,29.9525],[122.71375,30.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.0025,24.915],[-58.675,23.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.776172,49.213906],[-3.125723,49.297363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.705,55.24],[6.6575,54.469375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.740312,36.618125],[12.667563,36.93707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.104453,56.332187],[4.02375,56.03375],[3.934063,55.691875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.9725,47.2625],[145.9475,50.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.7325,-18.1925],[178.525,-18.294375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.27,-20.0525],[-98.7525,-20.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.3275,44.1125],[-134.6475,43.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.532946,50.24703],[-1.483875,49.806055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.3,11.6],[60,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.77,4.0775],[-46.4,2.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.018335,35.684702],[25.639219,35.727187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.10375,70.0775],[23.24,69.9725],[23.205,69.975],[23.10375,70.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.95,-5.4],[113.93125,-4.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.7,38.985],[118.99,38.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.531406,53.828281],[1.765,53.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.8275,18.27],[133.2125,16.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.120417,54.936321],[-5.061953,54.614063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.515,38.2525],[8.363906,37.928438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.45375,58.35875],[23.464531,58.669543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.104453,56.332187],[3.669375,56.106875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.76,37.95875],[-129.45,39.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.034219,58.747344],[-5.738125,58.746562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.423711,53.838926],[7.43585,54.216177]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.4925,42.8075],[-50.0025,42.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.29,43.92],[-13.36,44.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.8075,50.5925],[-139.325,52.0675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.0025,35.6975],[-143.235,33.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50.94],[-20.0025,52.1875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.75,64.3275],[-10.96,64.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,14.785],[130,13.965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.08125,34.969688],[-20.0025,33.52125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.024558,41.039642],[13.31832,40.896455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.4575,38.685],[7.56625,38.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-10],[-80,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,4.43],[-30,2.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.0025,35.755],[-46.210625,36.46625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,30],[-41.285,31.3975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.943906,60.051406],[25.090547,59.806436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.78,-30.2675],[-45.305,-32.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5,-25.2775],[-7.025,-23.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.020781,44.73082],[13.863359,44.43959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.005,28.71],[-78.8175,28.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.955,-54.6525],[-66.13,-56.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.1325,28.9925],[-74.1075,28.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.89,43.11],[132.1725,42.24625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.035,64.5325],[9.815,64.3925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.3475,49.6875],[-20,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.27,65.4],[-22.81125,65.15875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.98,54.65],[-131.99,52.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.3625,-11.44],[122.865,-15.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.934531,57.566284],[8.272207,57.5154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.295,41.312383],[10.553125,41.41875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.954062,40.591328],[25.049434,40.175664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,-60],[-60,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.954062,40.591328],[24.731172,40.436016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.11,14.3325],[-55.46125,15.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.382188,65.660313],[-21.04375,65.665937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.225,63.02],[-19.995,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-116.77,-26.95],[-115,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.865,-15.03],[128.46,-11.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.8675,35.0675],[137.2875,34.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.4825,2.015],[78.8175,2.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.335,40.1],[-27.7975,40.0475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.1525,12.0525],[43.600938,12.615312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.88625,28.0375],[-75.95375,27.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.385625,31.396875],[32.39,31.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.3525,-9.2675],[172.2175,-9.7525]]}},{"type":"Feature","properties":{"pass":"panama"},"geometry":{"type":"LineString","coordinates":[[-79.57125,8.948125],[-79.5,8.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.2175,-9.7525],[173.7,-12.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.605,-35.0075],[4.105,-34.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.019263,43.120522],[9.757053,43.33144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,20],[-30.255,20.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.882812,48.511875],[-7.29625,48.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.844917,36.257485],[25.09355,36.067437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,40],[-30.6425,39.4075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.31,40.2825],[-29.5625,40.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.029033,49.911714],[-4.343223,49.781855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.1975,3.24],[145,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.39668,58.633281],[20.781685,58.439336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.626562,71.052656],[18.73125,70.863125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.9075,-32.275],[50,-31.8375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.2475,55.4325],[-23.465,56.9825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.46,39.1825],[-69.43375,39.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.881328,58.08832],[21.155,57.743437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.5775,-9.045],[159.41,-9.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85,-25.2775],[80.9025,-20.9575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.416682,56.219017],[12.671001,55.991904],[12.763845,55.636349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.241221,55.024209],[16.543535,55.029609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.225,-19.68],[2.5575,-17.795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.45,41.425],[41.1,41.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.895313,42.259297],[4.56875,41.778125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.96625,37.7625],[3.99875,37.631875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.716416,35.907412],[-6.345117,36.432734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.8,-0.9],[-81.25,-3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,0],[-12.6975,4.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.2525,29.5025],[-70.685,28.4225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.3475,29.6125],[-68.3975,29.3025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.45,39.4925],[-130,39.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-10],[-20,-3.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5,-35.385],[-10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.06375,38.045],[8.515,38.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-43.435,36.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.936855,48.920098],[-2.126465,48.693008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.0225,38.948437],[-28.958125,38.406875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.273438,37.940313],[-22.31375,37.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.46875,34],[24.9125,34.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.637671,43.070601],[6.005605,43.022617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0025,-24.9625],[160,-20.64125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-101.8375,-11.93],[-100.055937,-10.021562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.614199,35.457861],[25.910625,35.455469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.4275,24.6925],[-125.335,24.945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.99,-10.015],[0,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.31625,-10.54875],[177.595,-11.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.77875,58.61125],[-158.99,58.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.9475,34.405],[-156.5125,30.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.83,-24.25],[163.98,-24.2175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.423467,49.701191],[-0.885273,49.620723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,40.62],[-50.5875,40.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.0725,34.625],[121.4675,34.7675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.735,31.91],[-71.28625,31.554063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.614844,55.403125],[5.99,55.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-50],[-150,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.27625,55.71875],[19.515936,55.559141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.4325,43.56125],[-3.174857,43.541549]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.5775,13.735],[41.64,14.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,-5.0575],[-121.23,-1.2475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.66375,-25.46625],[-125.003125,-25.136875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.03,34.321875],[34.31,33.4825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.545625,-26.94875],[-46.278437,-26.780625],[-45.73125,-26.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.605,-35.0075],[5.395,-35.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,9.9975],[130.0125,5.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.112578,37.612578],[-9.46627,36.936104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.736152,38.705385],[25.315215,38.888848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.1975,33.395],[17.55375,33.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.37082,38.597422],[14.997987,38.455532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.51375,5.51625],[-11.3975,5.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.705,50.865],[-8.395625,50.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.67,18.7425],[136.61,16.7575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.9575,51.21],[-59.215,50.025],[-59.94125,50.02375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.9575,51.21],[-59.94125,50.02375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.30875,38.91625],[-69.68375,37.495937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.286133,38.606543],[-9.629463,38.542939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.3425,5.1525],[170.9575,6.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.19875,40.162734],[1.835469,40.160469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.210625,36.46625],[-40,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.116108,37.745186],[25.884702,37.41475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.4325,25.16],[-84.6375,24.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.96875,38.284375],[-123.76,37.95875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.8175,42.4975],[38.605,42.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.924375,44.655],[-3.225,45.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.0625,42.3675],[133.7575,42.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.600625,30.1325],[-71.81,29.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[79.59375,6.04625],[75.955,6.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.429043,48.05752],[-5.276875,47.64625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.480518,57.788066],[6.499375,57.448125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,17.0575],[-170,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.179141,56.511172],[-1.955,56.259375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,10],[-98.1025,10.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.014922,61.642578],[19.42375,61.82875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.842891,41.005273],[-9.049141,40.385742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,17.755],[160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.194531,21.738906],[113.695,22.6675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.295,66.63],[-13,66.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.16,43.6375],[-7.02625,43.5825],[-7.410937,43.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.955,16.075],[-110.0825,12.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.3875,7.4375],[140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.33,34.9875],[-13.13,35.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[97,13.7875],[97.61,13.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.930312,-39.90625],[-51.105,-39.9575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.435,36.83],[-44.979375,35.428125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.635,72.3625],[-57.9575,71.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.708457,69.904512],[17,70],[17.26,70.0475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.67375,60.906875],[-3.8325,60.0475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.328125,55.244062],[5.3225,55.644063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.613184,57.938828],[22.792422,57.810625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.72,36.05],[-155.9475,34.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.6,41.9425],[166.6975,42.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.575,59.0425],[-171.665,56.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.320937,45.656562],[-8.139688,45.906562],[-7.94375,46.18625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.3475,29.6125],[-67.125,27.6425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.85125,28.66625],[-91.54875,28.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.83875,38.7775],[20.0475,38.4725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[87.7275,-42.545],[90,-42.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.808125,35.133125],[-73.82875,35.99375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.87,39.055234],[2.671133,39.425312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.978125,33.243125],[27.5675,33.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.3,-23.5],[-39.5,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.671084,49.779092],[-6.528906,50.685781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.128066,41.129287],[1.585742,40.782461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.7475,70.0225],[-167.0875,69.1625],[-167.66,68.3275],[-167.7475,67.1525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,0],[160,-8.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.593125,28.889375],[-15.069297,28.329922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.8575,38.45875],[-11.456875,38.337187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.215,32.995],[-69.9025,32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.390234,53.119766],[-9.69,53.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.194531,21.738906],[113.6675,19.4225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.990781,70.305625],[31.40125,70.75125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.905,35.94],[30.82875,35.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.096152,57.993447],[8.446865,58.058926]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.89,-45.405],[-40,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.8625,37.725625],[-10.053438,38.313437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.94125,39.160625],[17.691875,39.080313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-37.5975],[62.8325,-37.3875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.929375,41.290625],[6.27875,41.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,2.6975],[-170,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.943418,37.058242],[13.360547,36.944023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.151875,-5.8925],[121.7,-5.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.70375,28.1025],[-79.01375,28.27375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,0],[147,-4.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,20.51],[-25.4825,24.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.75,17.5],[-69.39625,17.56125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.444844,60.483906],[28.667188,60.285273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.0625,-7.185],[-30,-7.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.1625,-37.125],[-52.930312,-39.90625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.1,-26.4],[53.84875,-23.14125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.008339,57.770645],[9.282207,57.45085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.7025,57.825],[-20.0275,57.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,34],[13.1,33.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.538477,40.746328],[13.870631,40.63457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.957869,58.265466],[5.633438,58.403125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[74.8225,4.4675],[72.954531,4.022656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.02875,48.79375],[-122.935,48.230625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,30],[-134.795,30.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.7125,42.1725],[14.959365,42.216797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.986465,58.350725],[10.687562,58.415442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,19],[120,19.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.93375,56.016875],[7.81043,55.711328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.5275,11.745],[-33.505,13.7675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.74875,41.9725],[-9.48793,42.629805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.479688,55.17],[-8.02,55.24],[-7.7925,55.3175],[-7.77,55.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.648125,45.58625],[-5.868203,45.435391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.955,34.51375],[34.68,34.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.769199,56.145088],[16.419287,55.636387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.4,13],[100.6825,7.3175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.67375,38.82625],[-11.8575,38.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.536953,43.473828],[-10.154512,43.383896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.098691,54.491074],[11.474169,54.531771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.4025,30.0475],[-67.3475,29.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.6975,-57.125],[-60,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.3625,49.93],[-7.656875,49.909922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.023125,45.86625],[-8.320937,45.656562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.964844,57.582031],[20.019414,57.933047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.137793,52.579573],[2.85625,52.76375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.9,16.5],[-88.1,12.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.7325,46.0525],[30.532812,45.211875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.970518,42.269365],[-9.109805,41.729844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.02625,-9.998125],[100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.461475,51.732637],[1.868823,51.477681]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.1,38.05],[123.1975,37.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.339375,42.475],[-129.94125,41.35125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.314375,35.810312],[14.559629,35.929512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.895488,12.938877],[-68.4025,13.72125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.3175,39.1025],[5.60125,38.8825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.980156,42.859297],[14.419062,43.011875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.93,28.7825],[-89.21375,28.50125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.785,52.2925],[-32.5975,52.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,60],[-27.505,62.74]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.2525,35.245],[-129.91125,35.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.402498,36.429963],[25.358799,36.8823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.8775,-33.13],[47.9075,-32.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.555,38.6675],[-140,37.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.809687,55.440313],[3.265,54.91625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.935039,49.176758],[-3.547422,49.481406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.2975,63.71],[-21.3775,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.5725,22.98],[-21.75,23.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.3475,41.8525],[-168.7525,41.3975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.453954,39.883619],[23.180156,40.165781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,20],[-117.41,27.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.1975,10.2275],[-111.1325,12.6525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.785,28.0275],[125.5275,28.3875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.596523,46.256055],[-1.850156,46.472109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.991055,57.008027],[7.173579,56.549888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.493164,59.836953],[3.854609,60.086406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.817515,49.94198],[-5.341704,49.829033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[175.2,-36.6475],[176.9,-36.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.535,1.4875],[-107.0175,1.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.3075,7.36],[-135,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.077085,43.85087],[9.755635,43.946704]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.4525,64.2925],[-4.0125,64.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.250391,57.807266],[19.309062,57.458438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.685,-25.9225],[-124.66375,-25.46625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.305,39.3975],[5.775,39.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.328125,55.244062],[5.614844,55.403125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.1125,45.4025],[-155.4175,45.1275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25,-15.17],[-30,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.64,66.385],[-19.694688,66.196875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.3475,7.3275],[69.17,6.6375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.77043,37.811298],[19.886254,37.865082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.480625,-5.53625],[160,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.845,58.3625],[-162.0925,56.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.5225,69.1375],[15.001777,69.098027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.62,29.590625],[-74.465,28.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.4975,33.0425],[34.721875,32.858125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,26.1075],[-147.4275,27.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.3175,41.9325],[-14.29,43.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.523477,54.868477],[19.8525,55.105703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.977891,59.996338],[20.313437,59.704609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[84.7775,11.17],[82.23125,7.17625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.8775,-8.7725],[156.2,-6.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.240156,52.755781],[2.930508,52.306133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.785625,58.774531],[19.76,58.515],[19.712422,58.267852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.545,24.818125],[-156.8725,27.0475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.695059,44.061152],[12.672344,44.39875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.916562,55.968047],[21.049375,55.733125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.456875,38.337187],[-10.9925,37.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85,-35.385],[87.385,-32.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.08375,47.000156],[-5.104897,47.958721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.63,7.6775],[-26.3325,10.32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.279155,39.716597],[18.090957,39.447441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.194531,21.738906],[116.98375,22.9925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.7825,3.0725],[-43.28,5.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.6675,37.8475],[150,38.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.262852,60.422266],[5.109297,60.063438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.173579,56.549888],[6.917637,56.007363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.170625,30.345],[-80.435,28.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.72,36.05],[-160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.66625,51.47125],[-9.3075,51.325625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.8925,33.1425],[-76.91875,32.03125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.355,50.485],[169.785,50.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.99,26.02625],[-94.5675,26.1625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.0875,54.37],[9.0275,54.375],[8.802852,54.186016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.38,35.9075],[32.02,35.11375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.13,31.17],[-71.4575,30.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.041875,49.915625],[-137.5425,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60.7175,10.755],[60,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-50],[-24.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.4175,25.32],[-87.8375,26.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.559844,40.921289],[2.345554,40.599189]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.3575,66.1375],[9.9175,66.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.403125,57.536953],[21.702676,57.681094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.985625,54.510937],[-9.40625,54.746875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.126172,68.852187],[16.74875,69.080313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.637671,43.070601],[5.852773,42.782852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.727852,54.496992],[-8.985625,54.510937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.874719,35.952957],[14.955469,36.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.96499,55.151123],[15.835474,55.509087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.465,32.5775],[23.825,32.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.9275,53.0525],[-46.5925,52.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.950625,56.411104],[11.491523,56.585137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.1125,24.6275],[-81.52,25.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.670117,47.37918],[-6.2975,47.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-148.1325,11.96],[-143.5825,10.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.4225,33.5575],[-68.680625,30.52875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.4475,-5.6075],[-145,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,37.67],[-144.1325,34.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.515936,55.559141],[19.76375,55.41875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.77875,46.7575],[-52.5,49.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.69625,-14.865],[70,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.3175,48.93],[-28.8025,48.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.035,34.800625],[23.92875,34.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.5425,-45.73],[-60.9025,-42.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.62,56.5025],[3.669375,56.106875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.848125,70.810313],[29.97625,71.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.979375,35.428125],[-43.145,33.42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75,-53],[-75.56875,-52.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.645,30.265],[-74.62,29.590625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.215781,36.429844],[-3.782344,36.6025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.82375,60.87875],[-1.262812,60.569375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.73125,70.863125],[17.82,70.62375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.9725,35.53625],[13.8225,35.7175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,25.2775],[-146.0725,26.29]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.0025,-36.6225],[66.8375,-37.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.872583,48.592964],[-5.542344,48.407207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.5425,50],[-135.0575,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.84377,40.685156],[2.938984,40.445156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,51.3],[174.3825,50.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.325,28.4525],[-76.03,27.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.9475,13.83],[145.2325,13.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.25,44.5],[-63.5,44.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.8175,67.4625],[-95.36875,68.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-121.54557,34.599387],[-124.3425,35.5925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.3325,-24.9475],[-170,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-30],[-1.41,-31.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-8.2825],[-117.1775,-7.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.235,12.54],[-69.895488,12.938877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.884702,37.41475],[25.769736,37.73077]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.262852,60.422266],[5.483418,60.107104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.911777,59.718779],[4.613437,59.383789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.9725,44.6125],[-61.6525,44.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.1175,66.3225],[7.4025,66.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.180312,61.413438],[3.8,61.345],[2.8925,61.1975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.386094,54.875313],[13.622686,54.63365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.105,37.215],[2.74375,37.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.876484,37.227344],[-69.6875,36.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-23.1325],[-118.05,-22.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.2475,-35.185],[-45.1925,-35.1675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.0375,33.675],[17.55375,33.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.521152,43.106621],[7.870938,42.779531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.85,-29.3325],[59.49,-29.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,50],[-46.5925,52.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.615,58.4125],[150.31375,58.58375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.791707,36.625627],[24.596785,36.850251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.64375,61.535625],[-168.8525,60.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.2075,33.4875],[-130.0025,34.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.28,49.83],[157.115,50.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.403125,57.536953],[20.867578,56.756875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.9975,26.0275],[51.6,26.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.806328,36.032734],[26.238047,35.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167,55.4275],[-167.6425,58.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.5225,-26.7625],[2.015,-28.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.785,42.8525],[-132.339375,42.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.48,-47.735],[-84.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.9675,7.3125],[119.7025,3.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.1675,-28.27],[-30,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.23875,48.07625],[158.07,47.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.975,0.1425],[172.73,1.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.2475,26.91],[135.3725,28.5825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-20],[-25,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.995,60],[-17.7025,57.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.061953,54.614063],[-4.593438,54.500937],[-4.2375,54.432734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.940898,43.284414],[17.262021,42.919814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.169886,55.165555],[10.738478,55.100254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.925,47.7975],[-16.8875,48.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.97,41.323906],[18.980937,40.984375],[19.046445,40.513301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.313047,38.851172],[10.464746,38.51334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,16.14],[70,13.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.6425,25.1675],[-86.388125,23.20375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.100625,35.21],[34.93625,35.5225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,10],[-120,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.035,26.0875],[128.3,24.99875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.015801,55.898398],[17.418945,55.960781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.598438,46.093438],[-4.05,46.00875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.7375,58.75],[1.415,58.7575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128,26],[127.325,25.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.955,34.51375],[33.738594,34.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.17,-56.00125],[-63.965,-55.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,-5.0575],[-111.985,-2.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.7425,31.44],[32.39,31.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.446865,58.058926],[8.635947,57.806558]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.950937,36.170625],[-74.80375,35.74625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.049219,54.647813],[6.949375,55.080625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.2475,39.3925],[-73.895938,39.374844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.9175,-3.21375],[-31.7375,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.488677,54.022837],[8.487441,53.562617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109,16.1],[107.995,18.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.81,40.2475],[141.3,35.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.131875,61.072812],[4.93918,61.439756]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.4825,26.7225],[-89.87,26.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.315,65.2025],[6.865,65.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.375,41.25],[-10.078438,42.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.92875,-20.61625],[160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.565879,57.725234],[-2.072593,57.741187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.675273,59.982813],[27.460625,60.16875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.410937,43.8925],[-7.994258,43.911279]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[148.3425,41.3275],[148.9725,40.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.43125,-2.879375],[171.975,0.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.76375,56.775625],[20.117129,56.855566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-10.695],[159.79,-10.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.085313,36.9075],[22.036809,36.497406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.591875,68.22125],[14.953125,68.253438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.774492,52.210547],[-5.827344,51.908281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.5,18],[-101.135625,16.14875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.8175,-26.51],[-39.6975,-23.75625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,-60],[-49.9975,-52.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.865,39.54],[-31.1575,39.38625],[-30.835,39.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.786875,51.741875],[2.398516,51.237422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132,-8.9],[131.9225,-9.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.385,46.7575],[-9.225,47.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.958636,60.503345],[19.32125,60.575859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.105,61.33],[-4.67375,60.906875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.524257,42.029749],[16.483247,42.322456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.16875,29.77375],[-78.515,29.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.894189,42.729214],[18.374941,42.33957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.684258,52.086875],[1.928394,51.919619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.8675,-42.085],[155.465,-45.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.2625,59.335],[-2.985,59.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-50],[-180,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.78625,52.37875],[-149.695,53.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,50.89],[-30.0025,53.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.1975,37.1025],[125.6,34.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.388125,23.20375],[-86.16,22.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.137793,52.579573],[2.479375,52.85125],[2.779844,53.08125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.8,-10.5],[131.8,-11.9],[130.8,-12.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.6475,24.9275],[-62.305,27.4825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.0975,-4.96],[-180,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.805,35.971875],[-9.051172,36.245078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.785,50.155],[168.215,48.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.32,40.8775],[138.3425,40.9175],[138.615,41.4075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.7475,55.94],[-152.9725,56.6775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.131699,41.730029],[9.84946,41.877839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.538125,27.859375],[-92.2625,27.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-40],[82.98,-43.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.494375,28.701875],[-89.21375,28.50125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.0025,44.2625],[-25.5475,45.8175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.515625,59.342187],[13.5675,58.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.87375,7.2075],[-86.7825,8.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.125723,49.297363],[-3.547422,49.481406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.873125,54.61125],[2.32,55.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.15,26.235],[-87.73,25.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.2975,0.7125],[-38.151875,0.00625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.5425,-16.93],[2.5575,-17.795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.359727,58.123125],[-1.935547,57.981719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.726816,36.743547],[25.972529,37.031776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.675459,37.484121],[26.420952,37.83022]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.1925,-60],[-59.4975,-62.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.894189,42.729214],[18.07,42.6675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,4.835],[-140,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.934941,63.381724],[9.7875,63.6325],[9.635938,63.64125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.707935,60.35106],[21.412104,60.162671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.3925,2.6],[128.15,2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.464316,56.640371],[8.122251,56.883525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.100625,59.70375],[-2.0125,60.465],[-1.262812,60.569375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.117656,58.577188],[20.093699,59.458062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.515937,63.846875],[9.1225,63.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.515937,63.846875],[9.2425,64.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.505,-8.5325],[-169.03,-9.93875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.927529,37.445293],[11.191396,37.289531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.29,43.92],[-12.7675,42.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.8925,-30.0775],[8.74,-31.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.995,10.935],[44.9925,10.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.345,11.7375],[-50,13.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.5675,33.915],[27.2975,34.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.117031,50.880625],[-6.671084,49.779092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.69125,36.365938],[29.488379,36.032012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.69125,36.365938],[28.283672,36.377031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.5675,40.84125],[8.054688,40.210625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.2525,29.5025],[-71.81,29.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.993164,56.89248],[8.88,56.7825],[8.865,56.7725],[8.464316,56.640371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.7725,-15.07],[53.355,-15.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.669375,56.106875],[3.5675,55.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.679375,38.454336],[14.260498,38.426631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.885313,55.132188],[3.809687,55.440313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,-5.0575],[-160,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.057684,51.571407],[1.325767,51.642944]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.885,-16.5675],[56.545,-18.795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.143315,38.162983],[26.152444,38.613633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.284863,40.23209],[17.219824,39.057051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.405938,65.110625],[22.244062,64.816875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.6025,43.6175],[33.9575,44.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.256875,59.113125],[-0.255,59.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.796074,42.131953],[16.912393,41.787236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.120417,54.936321],[-5.447407,54.972646]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.3625,-11.44],[122.061875,-11.35375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.33375,51.65875],[-6.949141,51.602773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.5675,70.82],[22.215,70.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.82375,39.937188],[-9.938125,40.468125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.690073,66.231504],[-18.7175,66.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.795,17.9125],[66.53,16.6775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.505,-9.41375],[8.5625,-12.31125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-118.465,33.6375],[-118.19668,33.653711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.322949,57.882881],[10.343867,58.234727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.9,60.7375],[0.42375,60.516875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.151875,0.00625],[-38.995,1.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.825781,37.147031],[16.024375,37.33875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.876484,37.227344],[-69.925,36.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.222227,58.222451],[20.881328,58.08832]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.3775,35.085],[-76.3125,33.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.77,-41.8875],[93.829609,-41.476016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.049141,40.385742],[-9.36,40.09875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.2175,55.1475],[0.7825,55.9825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.2175,-35.5],[127.51,-34.2875],[120.8775,-34.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.6975,42.52],[-157.72,42.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.995444,53.292515],[-6.225,53.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.8575,-35.0125],[118,-35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.10375,55.97625],[6.08125,56.24375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.25,41.8],[-68.36,42.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85,-25.2775],[-80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-50],[-79.9975,-47.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.705625,53.99875],[4.433906,53.836562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.74,5.2275],[-86.7,5.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.385,46.7575],[-7.9775,47.44875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.040469,38.464844],[11.632383,38.555742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.28625,37.22375],[-122.9,37.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.2475,-21.79625],[-160,-22.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.260234,36.758281],[27.584275,36.436831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.850234,54.665078],[19.8525,55.105703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.850156,46.472109],[-2.452166,46.863257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.5025,48.2675],[-129.89875,46.202969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.96499,55.151123],[16.291406,55.273594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.8,-5.25],[-31.0625,-7.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.9975,-34.05],[-150,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147,-4.8],[149,-7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.109375,-37.7925],[150.4,-37.69875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.272461,67.835117],[14.639375,67.904766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.7775,16.3775],[-40,13.2675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.830391,55.804141],[11.725667,56.097224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.936445,36.140889],[16.006875,36.433125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.05875,35.611875],[28.3475,35.77125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.794766,38.623437],[20.744492,38.927461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.04375,-1.28625],[40.3,-4.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.1125,34.53],[25.695,34.48375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.4075,0],[-154.565,4.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.1925,21.4425],[-158.261014,21.467326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[102.9675,1.58],[101.15625,2.74375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.0075,-20.69375],[70,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.5025,39.2375],[-60.8225,38.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.143315,38.162983],[25.807234,38.195508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.317813,62.34],[18.99875,62.33875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.93,42.68],[27.7225,42.512813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,0],[-1.11,-1.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.71,9.5175],[-14.54625,8.546875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.753125,19.26875],[-67.0375,19.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.234531,38.099219],[10.83625,38.07375],[11.396704,38.073561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.1225,69.7025],[-99.1875,70.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.1775,49.955],[-12.021875,49.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-118.05,-22.065],[-114.39,-20.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.716416,35.907412],[-6.04248,35.979863]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.306733,35.501705],[25.239062,35.773125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.809609,42.782812],[-10.196406,42.474375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.6075,-9.12625],[177.31625,-10.54875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.093699,59.458062],[20.42625,59.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.1925,48.08],[-6.882812,48.511875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.990312,53.7975],[14.455547,53.705625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.8875,-45.4025],[-140,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.84269,63.271816],[20.325,63.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.12875,-17.94875],[119.69,-17.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.0575,53.79],[-152.325,53.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178.61,27.8975],[-179,28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.987588,59.961416],[20.313437,59.704609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.093408,55.023052],[19.334512,55.200977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-177.755,47.8925],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.15,64.27125],[-172.3,64.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.687562,58.415442],[10.343867,58.234727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.969731,56.628496],[17.42,56.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.17207,39.607148],[0.385488,39.396094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.535,1.4875],[-107.3475,2.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.250391,57.807266],[19.04418,57.309346]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,10],[-40,4.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.6475,-5.7025],[-103.815,-6.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.035,34.800625],[23.448125,34.724375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.0325,6.6025],[-81.4,6.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-10],[-136.0775,-6.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.219375,39.184766],[2.44625,38.70125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.415,34.2225],[-67.82625,33.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.07,16.49],[-26.2025,17.2975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.512266,21.273633],[-158.0525,19.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.744375,34.8025],[-72.375,34.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.3975,59.785],[3.100625,59.299062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.6875,70.7575],[4.1525,70.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.319844,55.808359],[18.140859,56.027031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.6875,36.445],[-69.925,36.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.055,-26.21],[169.995,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.3125,33.345],[-76.91875,32.03125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.91,5.5075],[-89.24,3.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.01,5.3675],[130,9.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.332246,41.00998],[1.585742,40.782461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.291406,55.273594],[16.543535,55.029609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[96.2075,-24.02],[100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.2025,42.495],[-16.51,44.8475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.089531,40.917109],[12.338125,40.725938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.416001,50.48667],[-2.598662,49.992534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.73125,-26.435],[-44.6775,-25.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.0025,42.755],[-52.5725,42.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.610156,47.673828],[-6.3725,47.77],[-6.27,47.9025],[-6.068125,47.966406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.6275,-29.4075],[-20,-29.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.73375,37.345],[16.2925,37.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.0575,33.215],[128.9,31.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.99,-44.925],[-55.17375,-45.68875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,37.71125],[-14.93125,37.3425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.995391,46.2175],[-2.1075,45.7175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.695,4.0575],[8.785,3.195],[8,3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.295,39.82],[-9.629463,38.542939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.555,36.28875],[-0.288516,36.661797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.495625,35.18125],[-13.0575,34.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.435,43.745],[-6.579616,43.766857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.995,1.02],[-40,2.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.141562,61.29375],[19.863638,60.867437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.0275,-35.2],[-155.2675,-35.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.655,13.9775],[-79.525,10.60125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.2475,-8.795],[13.1925,-8.8375],[12,-9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.555937,58.307812],[1.2125,58.2375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.662578,50.626484],[-5.791382,50.254956]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.262227,42.577461],[14.419062,43.011875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155,5.0575],[-160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.9625,5.7925],[68.025,2.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.352881,65.077998],[-23.767363,65.032998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.061797,54.235117],[7.049219,54.647813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.0725,26.29],[-150.0025,24.6925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.3125,-6.7275],[133.7325,-8.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.6,34.2],[129.100937,35.027187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.605,61.5825],[18.700071,61.24363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.67875,37.9675],[18.37625,37.86875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85,-35.385],[-88.17,-38.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.055625,38.621875],[10.234531,38.099219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.485,47.6325],[-150,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,0],[90,-1.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.389844,56.289297],[18.951172,56.088125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.18625,46.7325],[-58.2425,47.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,19],[119.4,17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.699922,39.473281],[-9.852578,39.129922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.475156,68.487656],[16.118281,68.439531],[15.784375,68.288242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.9225,65.28125],[-13.633594,65.179277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.6275,-29.4075],[-20,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.5975,-10.0175],[68.73,-8.7575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.768828,20.000156],[-75.136719,18.521875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.3,34.0625],[23.035,34.800625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.095879,58.674238],[11.2575,58.665],[11.245,58.675],[11.095879,58.674238]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.385,-55.36],[-73.17375,-55.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.516147,40.096208],[13.173555,40.243291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.68125,41.27125],[-11.2475,41.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.146172,60.864141],[3.332969,60.713437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.1575,20.0175],[-132.075,22.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.8775,-33.13],[40.0025,-33.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.693906,-23.070781],[168.5575,-22.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.4025,30.0475],[-68.5575,30.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.875,-45.7325],[-56.8825,-45.7375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.366055,57.377656],[-0.49,57.77125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.37,1.1075],[-7.549297,3.524844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.6475,42.788125],[35.485,42.68625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.7975,29.77875],[-15.32125,29.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.295,-9.31],[-98.025,-10.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.804063,11.961875],[-66.8325,14.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-15.945],[80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,20],[-109.8325,21.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137,-9],[135.7725,-8.975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.7,51.6],[-176.955,52.8575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.024492,43.93957],[12.695059,44.061152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.876484,37.227344],[-70.32125,37.06625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.698438,54.094687],[6.034062,54.128125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.565879,57.725234],[-2.66375,57.96625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,40],[154.0575,40.0875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.10125,64.086875],[-15.5175,64.155],[-16.6725,63.7675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.489531,42.343281],[5.780332,42.32082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.755,47.783437],[-7.5025,47.678125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.8475,10.0225],[-50.015,10.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.433906,53.836562],[4.223594,54.010781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.6225,50.7525],[-168.08,51.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.043033,41.62684],[11.652305,41.883594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[151.14,41.9725],[148.9725,40.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.76375,55.41875],[19.8525,55.105703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.6675,30.81],[-77.193125,30.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.712761,59.027883],[5.7625,58.895],[5.765,58.945],[5.712761,59.027883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.9975,-33.1475],[-32.79,-33.0325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.000312,56.106719],[15.557676,56.00498]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164,53.8],[-156.33125,53.83875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.267969,57.714297],[-0.29125,57.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.038125,40.661875],[-72.1975,41.2525],[-71.446875,41.2025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.16335,38.280382],[12.821425,38.428919]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.6425,-16.635],[156.5075,-18.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.90625,24.33875],[-73.14,23.20375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.57,29.59],[-156.8725,27.0475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.645937,61.87375],[-5.675,61.6875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.492402,40.297148],[-68.964502,40.340308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.7175,66.94],[-18.4375,66.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.7,56.2],[142.145,55.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.495,34.6225],[28.256563,35.358438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.322344,38.101406],[-0.494023,37.61957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.4625,58.175],[3.6375,58.14125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.668906,57.37418],[19.964844,57.582031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.9975,-44.315],[-140,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.995,50.5575],[-171.54625,51.26125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.088438,42.554688],[6.738301,42.52252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.60125,-15.06625],[100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.12,47.295],[-41.6575,48.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.127031,54.516719],[13.386094,54.875313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.345664,36.706875],[20.92985,36.401459]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.45,-8.3175],[129.1475,-6.0325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.719492,4.111396],[-11.164375,5.336875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.592334,59.543623],[23.180596,59.44479]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.035312,37.537031],[1.4475,37.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.525,38.4575],[-27.24,38.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.84269,63.271816],[20.057578,62.840937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.531406,53.828281],[2.1325,53.50625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.1,25.5],[56.354375,26.44875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.834141,57.728828],[20.476396,57.328218]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.867754,58.728691],[21.315547,58.931875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.2975,1.2025],[-81.175,1.8475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.9575,44.2525],[179.86875,44.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.8625,37.725625],[-10.4175,37.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.4825,58.275],[0.8,58.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.94,39.505],[121.095,40.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.553795,39.514287],[25.2625,39.667153]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.056875,-34.52125],[23.125,-37.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.3975,45.0675],[-10.405,46.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155,-5.0575],[-150,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,0],[-1,4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.0025,15.17],[-43.7775,16.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.9725,44.9375],[-5.829219,47.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.04,55.18],[139.7,56.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.523125,37.5625],[17.34,37.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.05,40.69],[5.4075,40.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.85625,52.76375],[3.240156,52.755781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.360816,50.226732],[-4.343223,49.781855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.433906,53.836562],[4.26,53.7325],[4.2125,53.71],[4.08,53.645],[3.9775,53.595],[3.636406,53.467812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.16625,-3.06],[-43.9,-1.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.37875,-4.61],[60,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.446719,59.755508],[5.483418,60.107104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.608437,51.464687],[-7.974285,51.728042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.937705,39.856963],[19.48625,40.09375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.4725,32.915],[16.1975,33.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.917637,56.007363],[6.677749,56.38271]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.097383,55.425762],[19.515936,55.559141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.6,-6.3],[124.2625,-7.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.495,32.0825],[-71.28625,31.554063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.485586,39.055078],[3.8825,38.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.107577,55.306505],[-5.447498,55.371414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.100732,38.490039],[25.481746,38.133721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.8975,30.345],[122.365,30.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-30],[-155.39625,-24.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.658262,57.161621],[16.346875,56.574688],[16.190925,56.319414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.3525,11.99],[-82.7,14.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.00125,55.0175],[0.8225,54.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.62125,37.23625],[6.865938,37.32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.454375,-7.94875],[125.7,-8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.0275,48.1475],[-40,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.526875,61.0825],[1.505,60.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.77,-41.8875],[95.1125,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[101.7525,-27.4925],[100,-28.2425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.802852,54.186016],[8.488677,54.022837]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.5925,17.3],[-66.275,17.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.166875,41.685156],[17.135156,41.994062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.9,53.37],[-136.9025,51.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.3225,36.09],[120.285,36.085],[120.2725,36.03],[121.035,35.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85,-25.2775],[-90,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-98.8475,0],[-100,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.89,-45.405],[-100.040937,-39.951563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.400735,37.541272],[25.884702,37.41475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.3825,20.655],[-135,25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.136484,66.534727],[-23.524448,66.182422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-28.2425],[98.7225,-28.7925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.59,48.57],[-153.97,46.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.598438,46.093438],[-3.89,46.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.949375,55.080625],[6.705,55.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.8,3.7],[113.69,5.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.7725,-8.7975],[-27.0175,-10.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.3625,-0.49],[125.5,1.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.364395,34.57127],[31.770625,34.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.1175,57.507188],[7.419902,57.585527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.578711,39.841289],[19.577188,39.564063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40.9975],[-40.95,41.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.23,8.49],[-13.8175,7.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,0],[-180,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.932109,22.026016],[-85.95,23.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.50625,36.0425],[-13.245,35.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.3225,34.47],[30.0925,34.2325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.30375,59.695503],[23.516369,59.988532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.194531,21.738906],[113.2,19.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.380938,66.065625],[-17.119157,66.387944]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,40],[-66.6675,40.2675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.7075,-11.3575],[-130,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.4675,34.7675],[121.035,35.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.855781,58.365742],[18.430703,58.305273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.5025,57.7525],[-162.0925,56.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.04875,41.220156],[7.5675,40.84125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.913906,39.953828],[0.789219,39.659375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.055938,50.082188],[-31.5825,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75,-53],[-73.17375,-55.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[97,7],[97,11.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.035,64.095625],[22.594375,63.986855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.2,43.805],[151.14,41.9725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.289603,48.464297],[-4.88041,48.924609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.4525,34.69],[27.066875,34.80875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.66625,-20.19875],[117.86,-18.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,30],[155,35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.79125,38.62375],[18.9325,38.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.545,-40.0325],[173.75,-39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.705547,40.825469],[13.004155,40.577924]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.03125,40.54625],[24.406515,40.720172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.563867,41.622969],[3.237656,41.527344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.474375,34.946875],[30.631641,34.477109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.915625,-10.021875],[52.5825,-7.3925],[53.9175,-6.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.604097,37.545281],[24.214436,37.616389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.231826,39.077734],[9.085498,38.851016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.1375,9.34],[-88.1875,9.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.111562,38.624531],[17.4625,38.922813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,20.71],[-140,28.0325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79,23],[-79.635,23.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.516369,59.988532],[24.167744,59.819575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-50],[-20,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20,-50],[20,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.276172,54.441563],[-4.875,54.010312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.61,-35.005],[-85,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.385625,31.396875],[31.748125,31.585625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.895,-22.3675],[7.2225,-23.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.0875,36.2],[-15.5075,35.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.69625,42.6925],[-10.495,43.601875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.762246,48.171055],[-6.068125,47.966406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.9,-43.4],[-64.7,-45.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.8,26.3],[-77.6375,26.81625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.385,62.5875],[5.115,62.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.019648,54.751348],[14.005637,54.352508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.44,54.805],[9.706094,54.854453],[10.22072,54.951475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.415,37.8275],[-69.68375,37.495937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.96625,47.293125],[-20,49.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,48.56],[-125.5,48.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.735,72.2725],[83.3975,71.6575],[82.8125,70.125],[86.11375,69.42875],[85.91,68.8125],[86.5875,68.24],[86.265,67.675],[86.5725,67.465]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-74.1825,-52.8225],[-73.5575,-53.06],[-73.2825,-53.23],[-73.085,-53.33],[-72.4,-53.555],[-72.1875,-53.6575],[-71.9925,-53.75],[-71.5725,-53.8725],[-71.4125,-53.915],[-71.170625,-53.940625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.46125,15.6275],[-58.3925,18.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.906953,54.030547],[1.168828,53.909648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.5475,25.29],[51.8875,25.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55,45],[-63.295,41.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.056875,-34.52125],[32.8425,-37.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.0025,-25],[0,-22.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.6425,57.26],[-5.753125,58.092656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.96625,37.7625],[5.415,37.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.274683,49.67916],[-2.941016,49.513984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.555,41.68125],[4.995625,41.708594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.837963,35.114116],[23.739375,34.824375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.835,30.04],[-75.6425,28.9375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.75332,61.251289],[4.441797,61.112109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.995391,46.2175],[-1.596523,46.256055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.535,-40.075],[-90,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.635,72.3625],[-74.0975,73.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-20],[-175.5,-21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.835,37.735],[-34.6475,37.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.063125,14.12125],[-59.973931,13.114248]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.6725,-7.85],[116.06024,-7.879388]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.944824,36.998223],[13.635605,36.824463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.1525,9.85],[-81.835625,9.54125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.388125,23.20375],[-87.4175,25.32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.345117,36.432734],[-6.665703,36.064629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.4675,66.46],[0,67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.0025,27.1475],[-85.762656,26.469375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.020625,15.224375],[-131.7075,11.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.945,0.0575],[104.3775,0.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,5.0575],[-150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-40],[-15,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,51.3],[174.14,50.6875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.943711,56.542969],[19.389844,56.289297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.815,36.835],[-0.288516,36.661797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.405,26.4525],[-75.1225,26.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.738301,42.52252],[6.483359,42.673984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.9025,-14.32625],[-170.654141,-14.443984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.705,55.24],[6.710469,55.529062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,10],[-32.7625,7.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.99,36.340625],[31.6375,36.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.05375,64.905],[39.555,65.45375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.3775,0.5525],[103.6,1.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.456875,38.337187],[-11.155,38.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.197656,40.590156],[11.031494,40.980557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.080781,47.680156],[-5.104897,47.958721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.7025,22.245],[-75.4025,22.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.534844,19.455625],[167,19.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.873125,54.61125],[2.615,54.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-60],[-39.9975,-53.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.229648,69.216367],[16.700625,68.794258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.5825,14.8825],[-61.5625,14.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.02,-56.065],[-71.385,-55.36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.0675,-9.3725],[169.42,-9.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.135156,41.994062],[17.422959,41.843896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.453618,44.371019],[14.216855,44.554338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-3.2825],[-20,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.089531,40.917109],[11.69875,40.73625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.27624,41.837959],[3.237656,41.527344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.575,-10.02],[-100.055937,-10.021562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-172.3,64.2],[-171.645,63.7375],[-168.25,63.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.015,-28.17],[0,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.255,59.3125],[0.42375,60.516875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.50875,53.9425],[-36.735,53.8075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.2875,34.77],[-72.744375,34.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.684258,52.086875],[1.542988,51.866641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.06,27.35],[-94.5675,26.1625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.255,27.97],[49.05125,28.21375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.9,31.3],[122.3425,31.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.51375,5.51625],[-13.565,7.595],[-13.8175,7.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,23.1975],[-50,27.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.48793,42.629805],[-9.809609,42.782812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.68,45.5425],[-62.9725,44.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.449375,57.009375],[17.083315,56.214521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,30],[139.4175,34.1625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.615,-35.24875],[-56.1625,-37.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.32,30.6325],[-60,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.3575,-30.6625],[108.885,-28.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.705,-6.3475],[-165,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.6425,14.5175],[-128.63,11.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.804063,11.961875],[-63.7725,11.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.536094,53.157656],[1.046392,53.582031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.51875,30.995625],[-66.135,31.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.14,26.99875],[-84,26.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.3825,65.3725],[-23.379772,65.345373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.061875,7.21125],[76.45,7.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.4,17],[119.90125,14.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.4275,-10.103125],[156.57,-11.7425],[153.7475,-13.1275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.183804,58.639092],[4.740781,58.415156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.475,50],[-65.48875,49.79375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.37,33.835],[31.56,34.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.666055,38.239648],[12.040469,38.464844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.1475,40.7425],[-69.7725,40.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.3225,0.535],[172.73,1.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.36,-37.5625],[42.9525,-37.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.34125,50.19],[-2.598662,49.992534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.39,-35.0125],[-6.2625,-34.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.29625,48.4875],[-8.975,48.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.07125,36.53875],[-72.5825,36.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.8325,34.915],[35.346875,34.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.82375,24.3325],[-79.635,23.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[61.6525,21.5],[63.155,20.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-10],[-15,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.558516,38.578437],[13.608438,38.824062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.065,24.4575],[118.0525,24.46],[118.3975,24.271563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.356279,41.171138],[8.04875,41.220156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.181016,40.173789],[-10.923906,40.437031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.235,33.5175],[-147.8225,30.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86,61.1],[-85.155,59.9475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.63,7.6775],[-29.2225,4.36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.4325,35.1125],[30.79,35.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0025,-33.4825],[163.505,-33.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.04375,65.665937],[-20.9475,65.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.418438,63.7425],[22.146875,63.775625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.3825,70.6675],[-126.67,74.54875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.334512,55.200977],[19.097383,55.425762]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,-35.385],[-120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.4375,19.215],[141.4675,18.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.084219,58.238926],[10.343867,58.234727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.0625,1.134375],[172.75,0.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.4325,43.56125],[-2.76125,43.481875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.021406,57.228848],[20.287852,57.043262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.84377,40.685156],[2.64875,40.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.315,65.2025],[8.1175,66.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.26,-6.3125],[-145,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.564375,41.342695],[4.995625,41.708594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.481719,63.691406],[-22.217946,63.72204]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.338203,51.584414],[-8.66625,51.47125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.06,-28.455],[9.9975,-29.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.7575,58.68],[-148.9975,59.27125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.058884,57.836154],[8.635947,57.806558]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.1625,-9.81375],[137,-9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.352656,53.157656],[4.976875,53.05875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.509844,45.197031],[-4.705938,45.724375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.25,41.9],[139.4,41.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.76125,43.481875],[-3.174857,43.541549]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.76,10.0175],[-140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.278228,43.464146],[16.512065,43.115015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.09375,30.035625],[-149.195,30.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.39832,56.198828],[-2.795625,56.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.255,21.33],[-153.14,23.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.19125,42.10375],[-69.795,41.84375],[-69.49375,41.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-14.46],[-86.3375,-16.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[96.715,-4.2],[99.9475,-5.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,-50],[-60.205,-48.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.1025,44.6325],[-124.4,45.3],[-124.9925,45.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.6325,-33.0325],[-72,-33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[148.4125,-13.8675],[150,-12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.435552,59.908784],[25.090547,59.806436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.5175,53.3425],[-33.785,52.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.166709,58.630734],[-1.643477,58.374727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.732891,55.796875],[16.769199,56.145088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113,-23.5],[111.185,-24.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.1825,66.2275],[-167.7475,67.1525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60.0025,-43.305],[60,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.4675,5.7275],[104.740625,1.6625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.245,35.9275],[-12.644375,35.865156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.989531,39.316641],[12.379766,39.994687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-98.025,-10.015],[-100.055937,-10.021562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.771719,67.683125],[12.51,67.036875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.3175,41.9325],[-16.1775,41.2075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.05375,-48.3125],[70.0025,-43.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.69,2.7275],[-100,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.8175,28.43],[-79.01375,28.27375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.76918,54.977891],[13.386094,54.875313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.0725,5.9825],[-135,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.1375,-39.7525],[169.3125,-38.1675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.2,34.7325],[25.64,34.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.2,30.09125],[-14.30875,31.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.76375,28.015],[-87.635,27.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.085117,39.67123],[8.393438,39.832773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.548184,36.386191],[22.973813,36.431958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.6975,44.82],[-140.0025,46.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.407744,42.386943],[10.186611,42.07395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-32.435],[0,-31.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.48334,50.045639],[-3.637832,49.762754]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.8279,42.364806],[10.01048,42.660972]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.9875,1.0075],[104.740625,1.6625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.481719,63.691406],[-22.861953,64.063906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.005,-11.495],[-100.055937,-10.021562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.935,4.9925],[-100,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.649424,64.811309],[-13.7275,64.4825],[-13.92125,64.09875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.3675,50.74],[-141.1725,52.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.4,-24.8],[153.9125,-24.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.5175,33.935],[-69.4225,33.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.0025,-35.01],[4.605,-35.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.5175,57.9475],[-19.995,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.7075,4.775],[2.032905,4.866694]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,15.17],[-116.62,13.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.090411,37.203141],[24.699705,37.26321]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.4175,40.0925],[9.961719,40.053281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.08875,39.6475],[-68.705,39.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.395,-35.0075],[5.8325,-34.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.30375,59.695503],[23.180596,59.44479]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.3675,63.7275],[-18.545,63.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.7075,11.95],[-136.5425,12.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.748457,41.876426],[10.407744,42.386943]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.4,10.5],[123.8,9.1],[121.7625,8.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,23.1975],[-45.0625,25.33625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.565913,41.265188],[9.66251,40.987446]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.1825,-19.785],[55.28375,-20.92875],[55.6425,-19.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.8525,20.68],[-20.5725,22.98]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-40],[-170,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-21.3425],[-7.025,-23.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.33,-25.9775],[3.5225,-26.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.0875,36.2],[-14.6025,37.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.100801,49.464824],[-5.349453,49.402109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.535,65.2525],[36.4675,65.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[98.87,-8.8925],[100.02625,-9.998125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.11,-45.405],[130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.3875,66.84],[-15.56,66.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.82,70.62375],[17.26,70.0475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.865,-54.51],[-85.8,-54.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,40],[-160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.445,-40.8525],[149,-43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.827344,51.908281],[-5.865488,51.606768]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.7875,-5.05],[125.22125,-5.05625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.84,44.29],[-7.23375,44.276875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.685,35.0925],[-124.3425,35.5925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.958125,20.08],[-40,21.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-3.09],[2.295,-7.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.625,-38.3225],[-50.62,-39.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.882515,37.562214],[24.214436,37.616389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.3,-34.4],[171.02,-31.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.1275,60.58875],[-5.84,60.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.25,44.5],[-62.185,44.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.720547,56.398438],[-6.574375,56.152187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.628242,55.61668],[10.738478,55.100254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.343838,55.146855],[15.336846,54.795952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.545,40.5825],[-30,40.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.865,5.5225],[163.075,4.4075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.638906,39.812305],[6.6075,39.489375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.95,1.7325],[-40.2575,2.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.3025,33.725],[25.46875,34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.184375,19.263438],[-105.5,18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.495,55.43625],[-7.002041,55.378682]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.2525,64.62625],[36.3925,64.98]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.5325,13.1775],[-17.885,14.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.505,60.9075],[1.9,60.7375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.4775,50.4375],[-14.92,50.7175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.1675,21.055],[66.6,24.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.3775,0.5525],[104.9875,1.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.3,11.6],[51,13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.23625,65.063438],[24.266328,64.699766],[23.772578,64.575469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.08375,47.000156],[-5.2975,47.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.757053,43.33144],[10.251458,43.390162]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,-15.17],[-120,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.177266,42.62418],[3.604922,42.797344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.88041,48.924609],[-4.865234,48.664141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.3775,54.4475],[5.245566,54.889023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114,6],[114.585,6.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.432139,39.310298],[1.805,39.6025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[148.3425,41.3275],[146.81,40.2475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.55375,33.9075],[18.9725,34.42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.32125,37.06625],[-70.86,36.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.0325,27.1225],[-69.685,27.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.015,4.9075],[-93.52,6.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.1,-3.7],[125.45,-3.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.0575,50],[-133.975,48.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.710625,35.91],[33.35,35.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.7225,-8.8225],[176.9375,-9.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.76125,45.06125],[29.79625,44.13625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,20],[-148.82,21.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.7725,74.6525],[-71.5625,76.6675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-30],[-100.040937,-39.951563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.091484,37.840859],[24.935,37.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.4125,44.4125],[13.397709,44.838541]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.0075,66.535],[-18.360742,66.294883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.020605,54.168008],[5.322227,54.133262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.5575,30.0275],[-69.28,30.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.113934,37.874624],[16.42,37.905],[16.67875,37.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,67],[1.985,64.58]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.950078,39.889063],[18.090957,39.447441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.555625,49.891875],[-7.656875,49.909922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.04625,-10.92375],[127.3575,-8.82],[127.45,-8.3175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,0],[-180,-14.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.879062,38.0525],[10.234531,38.099219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.158594,57.535],[-3.923047,57.673516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.4075,52.5075],[-25.0025,55.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.61375,-9.98375],[143.545,-10.39],[145.3725,-10.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.295,-7.16],[3.74,-9.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94,6.7],[97,7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.41875,55.302656],[-0.778315,54.922671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.464375,20.9975],[-158.0525,19.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.8275,35.5],[-6.350391,35.909531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-10],[-166.845,-10.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.635,-52.4675],[-96.5,-53.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.27,31.8825],[-38.9825,31.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.584275,36.436831],[27.206715,36.450522]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.364375,66.279375],[12,66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.325,63.7225],[20.710234,63.392363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.185,65.85],[13.155,65.8775],[13.06,65.92],[12.890625,65.97125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.806523,54.399775],[11.43686,54.020796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.9825,45.18],[30.532812,45.211875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.36875,68.3375],[-94.0025,68.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.48334,50.045639],[-3.274683,49.67916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.7425,0],[-10,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-26.765],[-170.525,-26.9575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.791904,43.008428],[15.236143,42.952451]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.024492,53.529102],[2.779844,53.08125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.4375,66.9625],[-17.2525,66.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65,-35.385],[60,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.682773,58.456992],[9.440625,58.222188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175,5.0575],[-180,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.421875,-46.995625],[-61.595,-45.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.927529,37.445293],[11.005,37.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.36875,65.796875],[-20.2975,65.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.964219,66.197344],[12.622598,66.124668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.480055,36.448539],[24.596785,36.850251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.28625,31.554063],[-71.4575,30.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.4725,7.575],[-163.85,3.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,20],[-144.5925,15.5725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.845,-10.025],[-169.03,-9.93875]]}},{"type":"Feature","properties":{"pass":"dover"},"geometry":{"type":"LineString","coordinates":[[1.494547,50.852914],[1.81278,51.167213]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.010176,62.546152],[18.245,62.6525],[19.061165,63.013625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.9,28.285],[-89.4125,28.2225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.370171,38.089795],[20.641094,37.697031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-30],[57.365,-30.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.11,14.3325],[-51.665,15.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.53,39.5225],[-13.151875,39.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.965,-32.1375],[0,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,28.6725],[-58.995,28.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.704219,40.423906],[10.461445,40.891055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.1225,26.2125],[-74.235,25.47]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[106.8875,73.245],[113.8925,75.2475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.146172,60.864141],[3.961719,60.365117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178,58],[-173.66,58.8675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.245981,36.202173],[23.643446,35.63584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,4.4975],[60,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.343223,49.781855],[-4.58043,49.953359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.549639,51.438965],[-3.924785,51.556335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.075752,42.085078],[11.458333,42.138639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.1375,37.13],[-0.035312,37.537031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.525,31.6975],[-126.6575,33.8475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.5,-47],[-180,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10,-40.7075],[10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.1475,48.725],[-12.605,49.32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.72402,54.964635],[15.336846,54.795952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.749521,57.29083],[9.058884,57.836154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.654375,40.162188],[4.06875,40.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.14,70.7125],[-144.0725,71.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.7725,40.4875],[-69.4575,40.55125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.765,53.5875],[2.1325,53.50625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.355,34.3775],[-74.2675,32.30875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.863437,47.920781],[-6.820273,48.182891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.835,24.2325],[-91.6225,24.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.215,58.5025],[0.8,58.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.635947,57.806558],[8.482715,57.360273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.1025,-0.0975],[-90,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.312812,63.477187],[-20.073125,63.019375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.6125,59.135],[-162.6375,58.465],[-161.3975,58.3625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.1275,11.525],[-17.001875,11.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.767363,65.032998],[-24.01625,64.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.258672,50.534453],[-6.671084,49.779092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.5,-21],[-175.645,-20.02],[-174.975,-18.275],[-174.125,-17.5025],[-172.485,-16.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.492402,40.297148],[-71.0325,39.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.016709,37.527939],[26.675459,37.484121]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.455,6.5075],[-34.425,8.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.950078,39.889063],[17.5775,39.815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.105825,51.965063],[3.488633,52.013296]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,0],[155.04625,5.08875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.8,58.44],[1.415,58.7575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.109375,-37.7925],[151.5,-34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.62125,58.525],[-10.13625,58.46375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.404687,52.319531],[-10.139375,51.521875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.1725,9.695],[89.3275,8.965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.89,66.835],[35.455,66.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.095,40.4175],[28.83875,40.4425],[28.734727,40.860938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.563867,41.622969],[4.56875,41.778125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.05625,16.585],[-62.270625,17.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.5775,69.43375],[16.260625,69.6675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.090957,39.447441],[18.656709,39.660527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.0025,35.6975],[-140,37.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.7,-12.4575],[174.1025,-13.19375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.82875,35.335],[30.79,35.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.6625,-15.8025],[162.5575,-16.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,60],[-8.62125,58.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.352656,53.157656],[4.861943,53.343584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.175,30.388125],[-79.275,29.6875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.0825,15.2525],[64.735,14.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.46,-36.56],[164.125,-36.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.3975,29.3025],[-68.17,28.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.2,-13],[-33.8,-5.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.357188,21.172812],[-74.2125,20.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.2275,-22.0975],[114.13625,-21.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.7325,16.42125],[-154.685,15.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.355,-32.8225],[-47.7675,-32.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.9425,42.0725],[-34.8625,42.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.4325,28.92],[-83.3825,27.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.656562,34.800313],[26.436563,35.03625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.27,44.4575],[-10.045,44.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.6675,25.785],[123.505,25.56]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.633505,54.731068],[-5.380625,54.685947]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.77,11.655],[106.4675,5.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.792734,43.166094],[4.223125,43.2575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.364395,34.57127],[32.00375,34.775625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.865,65.3125],[8.1175,66.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.196406,42.474375],[-10.204062,42.854922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.359727,58.123125],[-2.476719,58.596914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.796074,42.131953],[16.773467,42.591909]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.135,51.9325],[-54.6,50],[-52.5,49.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.812148,43.212773],[8.75431,42.72792]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.05,40.69],[5.179121,39.955371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.95,4.57],[104.6,3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.785,3.7625],[8.67,3.8275],[8,3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.1225,32.92],[132.359688,32.521094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.05375,64.905],[39.68875,64.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.7075,-3.335],[67.45,-2.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-30],[-125.685,-25.9225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.725,35.665],[-69.76,34.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.020625,36.225234],[25.806328,36.032734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.125723,49.297363],[-3.935039,49.176758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.8075,-12.935],[-25,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.61875,46.8175],[36.8075,46.1975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.203784,55.319097],[5.662539,54.805371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.3175,48.93],[-24.155625,46.25125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.254687,36.852031],[-7.861699,36.770942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.88,54.01],[2.873125,54.61125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.97375,21.07375],[-19.94,22.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.9525,49.015],[-40,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.52375,68.06],[14.049531,68.127187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.0025,56.535],[-19.63,56.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.40375,27.70625],[35.2225,27.8475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.972812,61.342813],[18.700071,61.24363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.235,37.88],[-71.61875,37.72875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.6375,62.635],[20.11043,62.380625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.7325,-35.2075],[-49.1,-35.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.2025,7.665],[-78.055,7.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168,60],[-168.575,59.0425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.183784,44.192361],[9.336777,43.792803]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8,0],[6.7625,0.3725],[6.74,0.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.645,21.08],[134.215,20.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-42.24],[91.77,-41.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.710625,35.91],[33,35.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40,-39.62],[40.315,-39.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.89,49.391719],[-2.430313,49.543438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.780332,42.32082],[5.601875,42.577109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[79.885,73.2025],[78.17,73.975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.4225,33.5575],[-69.8425,33.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.635605,36.824463],[13.26418,36.671563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.345,23.12],[-82.345,23.1425],[-82.4775,23.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.995,-30],[167.675,-32.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.9925,-10.060937],[165.480625,-5.53625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.05125,28.21375],[48.84,29.960469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.49,69.9125],[33.59,70.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.498425,53.23605],[0.457852,53.575371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.5475,45.8175],[-24.155625,46.25125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.3925,42.57125],[36.28125,43.234375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.5575,44.16625],[-2.7975,43.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.8,55.1],[-167,55.4275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.257798,53.639539],[-3.660864,54.007737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.47,37.3125],[-0.035312,37.537031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.495,43.601875],[-10.154512,43.383896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.365,43.295],[37.8175,42.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.026172,36.29752],[12.740312,36.618125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.385625,31.396875],[33.7425,31.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.322227,54.133262],[5.154155,53.500967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[101.1975,3.1875],[100.9225,2.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.945,58.24],[3.24,58.21],[3.38,58.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.712422,58.267852],[20.019414,57.933047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.315702,58.246777],[11.106746,57.850391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.093408,55.023052],[18.836484,55.227539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.965,53.2725],[-33.175,53.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.435977,57.930264],[17.373462,57.437144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.02125,29.221875],[-154.545,24.818125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-14.8775],[-140,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.363936,42.587884],[8.430225,42.960469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.3125,-38.1675],[167.46,-36.56]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.620781,41.540937],[18.585313,41.249688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,20],[-120,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,39.205],[-20,37.71125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.03875,48.51125],[-125.5025,48.2675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.2375,41.3],[3.007187,41.191328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.9725,44],[38.5725,43.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.15,25.56875],[53.8,24.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.679063,36.326875],[-7.827407,35.890791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.0025,43.84],[-131.785,42.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.16875,29.77375],[-78.58625,30.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.919844,40.300645],[13.516147,40.096208]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,10],[-29.915,4.93125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.106875,70.955625],[29.848125,70.810313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,50],[-150,48.245]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[96.92625,77.4875],[98.58125,77.52875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.441797,61.112109],[4.707583,60.778877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.82875,35.99375],[-74.4575,35.792812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.031875,5.0675],[65.02,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.771665,43.637942],[14.859104,43.38701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.42,31.5175],[-75.3175,30.3025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,20],[-169.52,20.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,30],[167.534844,19.455625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.585313,41.249688],[18.623086,40.538965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.917637,56.007363],[7.006055,55.484766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.4675,34.7675],[119.4025,34.95],[120.7775,34.3],[121.7775,32.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.64625,37.066875],[-11.07,37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.4075,-5.4525],[113.2925,-5.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60.4,22.7],[61.6525,21.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.77875,58.61125],[-160.845,58.3625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.745,56.785],[2.01875,56.948125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.22125,-55.82625],[-63.515,-55.545],[-63.4725,-55.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.95125,36.225],[28.69125,36.365938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.406016,40.887422],[12.705547,40.825469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.955,56.259375],[-1.613594,56.419687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-30],[-124.66375,-25.46625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.054316,52.463086],[-9.707422,52.568828],[-9.435781,52.6],[-9.34,52.59],[-9.007344,52.646563],[-8.6925,52.6525],[-8.625,52.6675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.71125,42.24875],[-127.4225,42.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.975,33.71],[28.61875,33.57875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.669375,42.92207],[6.483359,42.673984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.812266,37.140313],[5.415,37.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.915625,1.430625],[164.765,6.7925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.625,36.43125],[30.64,36.83],[30.91875,36.6425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.0025,52.495],[-50,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.14,50.6875],[174.3825,50.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.6375,43.86],[-3.61875,44.40875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.679063,36.326875],[-7.324492,36.270234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.77625,61.11375],[1.17,60.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.313437,59.704609],[20.093699,59.458062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.902285,39.084922],[2.219375,39.184766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.238047,35.8925],[26.018335,35.684702]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.471309,53.733105],[6.204438,53.83895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.83,-6.28],[116.876875,-5.670625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.74793,57.527598],[7.1175,57.507188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.3825,27.6],[-82.6625,26.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.595,7.6425],[-36.455,6.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.914634,50.762358],[-0.886562,50.420002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141,-2],[136,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0025,-35.68625],[152.67875,-34.1675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.357578,36.687515],[24.480055,36.448539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.44625,38.70125],[2.87,39.055234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,20],[-130.4075,19.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.6625,39.605625],[23.814453,39.851016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.861299,36.672075],[23.984683,36.948062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.395664,37.676875],[15.634229,37.938584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.87875,21.59],[-80.425,20.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.373462,57.437144],[17.617344,57.609609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.158611,55.906924],[16.126771,55.551044]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[93.7125,-13.86],[96.792812,-12.065625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.785,31.735],[-14.7975,29.77875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.187949,50.424773],[-0.886562,50.420002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.58,0],[160,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.364922,43.006016],[3.792734,43.166094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.995,1.02],[-39.2975,0.7125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.16,59.1425],[2.518125,59.256875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.225,29.8375],[122.8725,28.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.1975,28.7275],[-73.829375,28.595625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.2025,21.6975],[-68.9,19.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.0325,33.71],[-77.8925,33.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.357188,21.172812],[-73.9,20.27625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.057578,62.840937],[19.6375,62.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.6675,69.9125],[66.2275,71.71],[67.79875,73.23625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127,8],[130,9.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.6625,-33.6775],[106.215,-32.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.36875,65.796875],[-20.4175,65.915],[-20.382344,66.157656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.048828,60.374121],[27.1275,60.4925],[27.0025,60.465],[27.048828,60.374121]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.678291,54.589424],[-4.196875,54.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.235,33.5175],[-144.1325,34.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.825,32.765],[22,33.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.636179,37.777488],[23.625,37.9375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.08125,42.4625],[8.363936,42.587884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.6675,29.1325],[-92.8875,28.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55,45],[-50.0025,46.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.31,28.1575],[-85.7675,27.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.136162,62.23126],[20.790234,62.103242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.3475,-5.405],[90,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.875,-45.7325],[-56.97625,-43.865625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.55375,32.79625],[-30,32.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.95,59.1725],[-20.0275,57.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.29252,56.583906],[19.389844,56.289297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.5675,46.255],[-160.58,42.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,30],[141.66,30.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.334453,52.254629],[-6.038772,52.23241]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.4925,-10.63],[130,-10.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.8925,46.81],[-14.3775,46.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.775469,59.146406],[19.785625,58.774531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.3375,37.81125],[10.615547,37.631641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.699705,37.26321],[25.00241,36.943411]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.7,32.84],[-52.2475,32.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.924375,44.655],[-2.680625,44.978125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.97375,21.07375],[-14.41,26.515],[-11.9575,29.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.2725,-43.055],[60.0025,-43.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.223164,37.666406],[7.505937,37.529688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.09,29.8425],[124.8925,29.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.9575,44.2525],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25,-15.17],[-30,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.6,37.35625],[-9.8625,37.725625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.5675,26.1625],[-94.2425,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.145814,54.451068],[10.22072,54.951475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.37082,38.597422],[15.749336,38.614609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.984121,57.868047],[7.1175,57.507188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.526992,43.320381],[15.614771,42.803228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.8175,46.5675],[-168.3475,41.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.793129,59.024679],[11.095879,58.674238]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.3975,5.125],[-12.6975,4.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.7,18.75],[-99.9,16.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.235,24.49],[-157.512266,21.273633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.915,35.365156],[-3.46625,35.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.1975,3.24],[140.42,9.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.566484,29.254062],[-15.39,29.6325],[-15.2,30.09125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.4575,69.575],[-8.6875,70.7575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.765,51.4],[-10.805,52.06],[-10.404687,52.319531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.944824,36.998223],[14.2275,37.05875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.13,35.45],[-13.630937,35.532813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.27624,41.837959],[2.535918,41.327461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.75125,28.85],[-85.775,29.8375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.80375,35.74625],[-75.079219,35.722812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.5125,2.5475],[-98.8475,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.634863,37.840791],[11.666055,38.239648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.118437,37.243437],[12.814531,37.374473]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,30],[-122.2625,32.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.157101,53.959185],[8.488677,54.022837]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-20],[-3.5975,-20.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.284688,58.859375],[19.712422,58.267852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[148.9725,40.8225],[147.8825,40.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-10],[-154.105,-14.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.636563,56.349375],[-7.825,56.1125],[-7.86,56.0725],[-7.9325,55.99],[-7.9775,55.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.39,31.7275],[34.24125,31.978437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-50],[-154.89,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.708356,-6.68635],[-80.906875,-6.448125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.4525,-37.735],[50,-37.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.0025,42.4125],[-152.3425,42.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.08,51.08],[-171.54625,51.26125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.815,66.825],[-79.5425,66.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.549375,52.57625],[2.85625,52.76375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.055,33.32125],[147.6675,37.8475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.688661,50.350463],[0.995137,50.41293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.845,-14.54875],[174.24625,-15.27875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.9775,36.33],[-35.96,36.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.28625,36.695],[11.935122,37.151133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.46458,39.10314],[23.036484,39.93668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.73,20.775],[-148.82,21.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.69625,-14.865],[69.88375,-9.961875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.300605,48.218477],[-5.872583,48.592964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.3025,33.725],[27.978125,33.243125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.8525,60.5075],[-168.735,59.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.103125,40.953125],[8.356279,41.171138]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,-25.2775],[-110,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.6375,19.165],[119.6675,19.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,30],[170,37.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.16,49.83],[-20,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,0],[150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,0],[-150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.1075,48.9625],[160.23875,48.07625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.89,1.805],[60,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-50],[-90,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.9975,-35.025],[-19.9975,-33.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.821425,38.428919],[12.455278,38.316953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.536094,53.157656],[2.435625,53.429375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.884375,39.855625],[-10.665,40.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-50],[-170,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[112.175,-6.28],[111.9,-5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.861299,36.672075],[23.62125,36.955898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.7675,42.425],[18.374941,42.33957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.245566,54.889023],[4.965,55.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.087813,49.715625],[-6.671084,49.779092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.780332,42.32082],[5.339375,42.061875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.2225,4.36],[-27.10125,2.60125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.366875,59.841875],[21.237109,59.49334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.10625,61.7375],[4.3575,61.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.499775,38.82457],[9.68375,38.41625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.316016,36.362266],[26.032949,36.54707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.179141,56.511172],[-2.39832,56.198828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.17,54.125],[1.43,54.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.674375,45.144375],[-8.730781,44.616484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.515936,55.559141],[19.766875,55.74875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.821562,64.618437],[9.739375,64.00625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.087734,54.157578],[12.098691,54.491074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,-6],[11.89,-5.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.43,54.335],[1.51625,54.099375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.148335,42.885435],[5.37,42.73625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.177578,49.34814],[-4.152488,48.913396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.660864,54.007737],[-4.289297,53.870781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.8175,30.915],[131.5425,30.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.965,70.355],[57.37,69.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.443027,55.467617],[14.665709,55.334608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.834141,57.728828],[20.788105,57.365605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.8975,22.73125],[-86.475259,22.085903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.914634,50.762358],[-1.187949,50.424773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.210625,36.46625],[-44.979375,35.428125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.31,28.1575],[-85.78125,27.62625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.715,-50.835],[-81.6425,-51.9175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.628242,55.61668],[10.95052,55.873606]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128,26],[123.5525,25.851875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.42625,4.97875],[3.0875,4.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.885,-16.5675],[54.685,-14.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.9725,55.405],[-131.2425,55.9775],[-130.9125,55.5625],[-131.1925,55.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.69375,40.45375],[-71.66,39.6525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.2775,52.4175],[-5.195742,52.796914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.628242,55.61668],[10.979445,55.601803]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.505,-8.5325],[-165,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.2675,2.3575],[-28.1425,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.5675,70.82],[22.72875,71.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.371562,37.037188],[12.181152,37.325801]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-96.415,74.2975],[-99.995,74.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.461777,39.558867],[23.924194,39.296875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.238047,35.8925],[26.711875,35.864063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-30],[-160,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.76,34.9275],[-69.5175,33.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.7375,-2.9675],[122.0025,-2.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.8125,-17.359727],[-149.53875,-17.49125],[-140,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,30],[-32.8275,30.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.2,-13],[-34.765,-14.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.958125,38.406875],[-28.18125,38.37375],[-27.8425,38.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.809434,39.477559],[14.362632,39.363623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-40],[-169.9975,-36.6825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-23.1325],[-120,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.4925,44.465],[32.89625,42.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.615,-3.66],[-140.7175,-0.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.115,55.835],[6.917637,56.007363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.476396,57.328218],[20.019414,57.933047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.015,10.005],[-57.97375,12.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.635,23.8525],[-154.235,24.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.608438,38.824062],[13.849297,39.40418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.5925,-11.505],[150,-12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12,-9],[8.5625,-12.31125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.7675,42.16],[-12.215,42.3025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.150059,36.720225],[25.00241,36.943411]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.8975,17.485],[-164.4475,18.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.671133,39.425312],[2.219375,39.184766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.995,-32.17],[-140,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.67054,54.728424],[10.482807,54.540205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.8125,-17.359727],[-147.51,-12.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.03,-9.93875],[-170,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.8775,53.495],[-171.8025,54.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.7,-5.8],[11.89,-5.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.238955,38.558301],[13.558516,38.578437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.221875,36.569375],[-8.2075,36.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.500449,38.29293],[13.558516,38.578437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-32.435],[2.5775,-32.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.5425,70.4575],[19.6875,69.9875],[19.28,69.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.911777,59.718779],[4.969375,59.31625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.093699,59.458062],[19.775469,59.146406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.0725,5.9825],[-130,4.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45,-35.385],[47.9075,-32.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.116953,39.34207],[15.31,39.12375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.3025,60.0825],[-63.39875,60.99625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.617344,40.505938],[12.909844,40.288438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.66875,-12.7925],[104.60125,-15.06625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.090957,39.447441],[17.94125,39.160625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.1,20.25],[108.6075,20.3025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.5,64.3],[-166.2575,64.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.7,24.3],[-85.185,23.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.226973,42.812876],[5.852773,42.782852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.7225,42.512813],[28.14,42.396406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.8525,20.68],[-20.8975,20.8075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.5396,38.345166],[15.749336,38.614609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.6,0],[77.6925,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-17.8225],[-180,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.206715,36.450522],[26.910476,36.686746]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.7975,16.25],[-87.465,17.62375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.505,70.465],[22.215,70.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.032969,66.305312],[-20.652344,65.973594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.02,0],[64.7325,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.8025,-11.2725],[152.5925,-11.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.958125,38.406875],[-28.436602,38.653398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.5575,-16.4925],[162.8725,-17.2675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-20],[-90,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.69875,40.73625],[11.811123,41.008486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.23125,52.08],[-5.534102,52.231543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,20],[-150,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.938984,40.445156],[3.226172,40.772656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.825,19.3575],[-23.5375,19.9875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,30],[165,35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.871875,35.83375],[-11.3625,36.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.04625,58.39],[3.38,58.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.036333,37.603433],[11.43373,37.622539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.752168,41.683691],[8.480625,42.289375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.48625,39.831094],[0.154248,39.934648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.6,12],[-89.1075,10.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,0],[67.5325,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.129458,43.589639],[14.507051,43.373496]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.0225,38.948437],[-29.995,37.92875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.97375,12.928125],[-90.9925,11.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.195,40.7575],[-125.0225,40.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.128359,58.375],[17.73792,58.188291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.281719,49.017773],[-5.619805,48.723728]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.855781,58.365742],[19.1275,58.6425],[19.284688,58.859375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.4325,41.41],[39.45,41.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.943125,12.02375],[54.2,16.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.9925,-10.060937],[160,-8.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.175,51.5925],[-164,53.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.8,-5],[160,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-30],[-130,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.93,67.0125],[42.295,68.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.34,16.0175],[154.4875,14.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.538125,27.859375],[-93.1375,27.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.3275,54.5125],[-40.99,56.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.855,43.7425],[38.5725,43.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.3775,35.9225],[11.6,35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.8275,18.27],[130,16.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.8675,58.9925],[-1.256875,59.113125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.9875,45.7225],[-13.36,44.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.4725,40.445],[0.700625,40.262812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-10],[-170,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.468555,57.56082],[23.905249,57.467534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.3925,39.31],[-75.07625,38.80125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.335,40.4325],[-73.8125,40.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.96375,42.2375],[36.3925,42.57125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0025,-36.9625],[158.55,-36.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.8075,50.5925],[-137.5425,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.6375,37.5625],[-33.835,37.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.554133,55.233171],[12.28207,54.708984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.088438,42.554688],[7.54875,42.741875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.833203,59.214102],[22.264751,59.307012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.549375,52.57625],[2.628906,52.187148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.882812,48.511875],[-6.458203,48.838672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,10],[-143.5825,10.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[87.385,-32.845],[90,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.785,-16.9925],[118.6,-19.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-10],[-146.26,-6.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.955,34.775],[140.3125,34.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.5,41.885],[-70.70625,41.54375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.605,48.555],[-132.75875,47.51875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.84,-10.0075],[153.8775,-8.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.0025,53.2525],[-40.0025,52.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.700625,40.262812],[0.5025,40.05125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.1325,7.185],[60,4.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.681084,39.03606],[15.02606,39.080732]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.2525,57.31],[5.691743,57.919163]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-31.785],[0,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.0025,-36.95],[40.0025,-33.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-14.46],[-90,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-40],[-160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.5775,-32.8025],[1.965,-32.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.845,-14.54875],[176.9,-18.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.0025,-33.86],[18,-35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.55,70.205],[57.965,70.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-30],[-85,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.740781,58.415156],[4.478125,58.512187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.256875,59.113125],[-1.2375,59.45125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.5,14.3],[-79.665,16.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.205,26.9725],[-173.6525,26.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.1,12.2],[109.77,11.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.339854,58.181816],[20.781685,58.439336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.59,58.785],[4.703125,58.797187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-10],[-77.660625,-12.09625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.670859,65.557656],[-13.633594,65.179277]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.05375,64.905],[39.5125,64.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.12,47.295],[-50.0025,46.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.1,-19.1475],[-97.305,-17.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.01375,-15.15625],[0,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.938437,42.10125],[7.508301,42.19166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164,53.8],[-167.4725,51.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.21811,58.473256],[9.682773,58.456992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.7625,-12.4625],[146.525,-16.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.83625,38.815],[-70.6675,38.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.921875,42.835938],[15.964893,42.586113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.768555,56.627061],[11.950625,56.411104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.019263,43.120522],[10.251458,43.390162]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.0275,48.1475],[-48.8275,48.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.317969,58.094687],[4.70625,58.048125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-30],[-146.83,-33.4475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.0225,38.948437],[-32.360937,37.845938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,17.845],[-121.8875,18.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.0225,18.0375],[-18,18.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.7975,-7.165],[170.00375,-9.99375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.941094,36.737188],[12.943418,37.058242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.4475,44.380938],[37.768125,44.643125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.325,25.085],[127.8225,25.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,0],[-38.151875,0.00625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.05,8.4],[119.9675,7.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.9575,29.225],[123.09,29.8425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.3325,21.3375],[91.08,21.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.275,29.6875],[-79.285,29.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.58,56.055],[-151.905,57.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.66,31.3125],[124.615,32.373125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.6675,19.4225],[113.2625,17.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.22072,54.951475],[10.482807,54.540205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.6375,21.6275],[137.82,22.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.366055,57.377656],[-1.634492,57.1775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.885313,55.132188],[3.575,54.365625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.4175,-9.53],[-166.845,-10.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.6975,13.9475],[-145.85,14.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.105825,51.965063],[2.786875,51.741875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.995,29.62],[-91.85125,28.66625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.867734,57.827891],[18.326152,57.925352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.083315,56.214521],[17.418945,55.960781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.715,59.7575],[18.735,59.76],[19.008465,59.705375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.855,43.7425],[38.706875,43.434375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.776836,39.764063],[9.705703,39.142422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.215,50],[-160,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.6875,19.24],[123,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.985,56.7275],[3.62,56.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.7,56.2],[142.5225,56.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.415,68.4325],[17.3,68.4325],[16.87,68.434375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.8725,-10.035],[-121.2775,-8.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.955,56.259375],[-1.603267,55.799884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-10],[-124.8725,-10.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.8225,25.0225],[128.3,24.99875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-40],[-130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.99875,37.631875],[4.3975,38.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.964844,57.582031],[20.021406,57.228848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.27,37.48],[-50.0025,36.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.4575,30.8],[-71.53875,30.46625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.4125,58.4575],[-158.74,57.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.79,32.745],[-9.8225,33.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.1625,-12.7225],[45.165,-12.695],[45.9525,-13.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.235,25.47],[-74.11,23.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.380938,66.065625],[-17.35,66.365625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.7425,35.245],[28.920625,35.503125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88.5525,20.3125],[88,21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.1575,20.0175],[-133.67,20.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.685,28.4225],[-72.14375,27.81375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.43535,54.595088],[14.019648,54.751348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.09625,-9.38],[110.2475,-8.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.522705,53.559409],[5.154155,53.500967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.539228,47.308888],[-59.07,47.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.745,-0.17],[103.945,0.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-50],[-160,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.565,22.19],[113.745,21.8325],[114.194531,21.738906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[89.7275,18.85],[88.5525,20.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.8,29],[-16.106563,28.959063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.1025,58.29875],[-6.034219,58.747344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.581953,37.762852],[-9.8625,37.725625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,15.07],[150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.5125,-8.11],[-33.2125,-11.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.95,23.3375],[-86.388125,23.20375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.385695,61.204697],[21.340127,61.468494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.66,29.0075],[-57.915,27.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-3.1675],[-108.6775,-3.9375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.3425,31.04],[122.71375,30.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.00125,55.0175],[-0.4125,54.89875],[-0.778315,54.922671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5,37.18375],[4.265,37.1325],[3.812266,37.140313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.9975,-52.185],[-81.6425,-51.9175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.7825,-5.0725],[125.1,-3.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.715,36.6275],[-2.485469,36.756875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.703125,58.797187],[5.041094,59.009687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.829375,28.595625],[-73.91875,30.246875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.775,58.3375],[-0.58875,58.64625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,24.08],[137.82,22.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.9325,47.445],[158.07,47.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.69,53.155],[-10.2975,53.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,23.41],[-120,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.2775,65.28875],[-13,65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.0675,36.44875],[133.02,39.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,-35.385],[-130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-20],[-120,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.03,77.605],[11.615,74.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.964287,40.843486],[17.956836,41.152734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.135,-17.99],[121.785,-16.9925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.6025,37.0125],[-12.625,36.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.32125,14.91875],[-75.0675,13.6825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.38375,39.9275],[2.156807,39.539702]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.06,25.22],[-177.5775,27.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.262812,60.569375],[-0.597422,60.380859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.26,70.0475],[16.98625,69.51875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,0],[152.13625,2.15875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.17,6.6375],[68.9625,5.7925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.72875,60.3875],[-63.39875,60.99625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.74,57.9325],[-162.0925,56.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.0025,53.2525],[-42.9275,53.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.490195,56.351406],[20.126279,56.452363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[97,16],[94.87,15.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.947939,40.484336],[0.913906,39.953828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-30],[-150,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.189063,-8.093438],[-10,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.2525,35.245],[-126.52,36.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.037969,10.012969],[65.0575,8.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,15.17],[-112.55,12.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.46,70.995],[27.1,71.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.555,69.555],[39.10125,69.59125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.5575,55.705],[9.7225,55.68],[9.844609,55.601484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.350625,-34.499375],[-57.265625,-34.81875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.056216,54.759629],[-1.230293,54.959705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.378965,43.050645],[5.637671,43.070601]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.9725,47.2625],[142.9275,46.1525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.802852,54.186016],[8.533193,54.311936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.423125,43.0775],[6.226973,42.812876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.03,27.53],[-74.88625,28.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.804619,52.865981],[1.25041,52.986816]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.1725,-3.87375],[173.0625,1.134375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.06875,40.555],[4.74,40.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.128066,41.129287],[2.1975,40.9775],[2.2025,40.9325],[2.345554,40.599189]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.948125,7.06875],[-78,3.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.645937,61.87375],[-5.825,61.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.357578,36.687515],[24.417593,37.161409]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.9975,-44.315],[-136.1275,-46.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.5675,41.945],[148.3425,41.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.5375,45.88],[-12.3975,45.0675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.0475,38.4725],[19.79125,38.62375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.035,5.5125],[-54.0075,5.5625],[-53.91875,5.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.512065,43.115015],[16.004674,43.208229]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.565,70.5875],[18.73125,70.863125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.06,57.215],[-15.775,57.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.5275,-7.6225],[120.945,-7.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.566758,36.880391],[-1.761133,36.697363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.0025,-35.01],[0.0025,-34.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,48.82],[-41.6575,48.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.1975,-9.8075],[-100.6475,-8.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.2,-3.535],[5.4225,-3.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.315,11.265],[-70.31,11.675],[-70.07625,12.52625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.86875,44.4775],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13,65],[-13,65.32375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-50],[-120,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.04418,57.309346],[19.398281,57.002461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.3075,26.3575],[-74.235,25.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.9375,-9.195],[177.59,-10.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.764375,56.762187],[6.6375,57.03375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.93,-31.1625],[-1.98,-32.1525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.6325,62.7325],[-29.24,63.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.096152,57.993447],[7.712278,57.941782]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.753984,58.027109],[11.718486,57.654951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.5575,-22.005],[168.025,-18.945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.075,2.7675],[70,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.225,-24.7625],[-34.8675,-25.1525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.133311,43.544722],[14.771665,43.637942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.63,30.1175],[-71.600625,30.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.99,10.6625],[-99.9575,12.7375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,50],[-149.89,51.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.458333,42.138639],[11.806875,41.937812],[12.043033,41.62684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.246099,44.256753],[13.619668,44.030625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.9075,7.8],[-44.77,4.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.7,13.4],[122.3,15.1],[123,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.6375,37.5625],[-34.6475,37.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.224844,49.425376],[-0.423467,49.701191]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.365,0],[51.62,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.317969,58.094687],[4.215,57.6425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.395,-4.615],[-135.7625,-4.29]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.031494,40.980557],[11.077656,41.655078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.965,28.0375],[123.095625,28.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-113.6625,16.49],[-115,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-20],[-130,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.117129,56.855566],[20.55042,56.64918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.851562,42.47875],[17.53,42.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.998125,36.25625],[19.5675,36.20875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.132402,38.087119],[20.938406,37.792102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.5825,36.2125],[-20.0025,36.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.80375,36.799375],[-73.625,36.50125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.45,19.4775],[-130,19.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.3725,-10.185],[142.755,-10.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.035312,46.94],[-6.859687,47.153437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.4225,5.4925],[169.8375,5.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.28,69.7875],[18.996875,69.668125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.239062,55.553359],[18.538984,55.294648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.1775,25.6275],[-90.927813,26.094062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.530674,36.614142],[26.444408,37.090765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.955107,50.582607],[-6.258672,50.534453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.5375,-21.63],[-1.1475,-21.2175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.595,4.65],[-27.10125,2.60125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.1,25.5],[58.94375,24.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.345664,53.816563],[3.784169,53.91357]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.435,3.7825],[119.505,6.5925],[119.9675,7.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.262227,42.577461],[14.530248,42.472596]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-118.19668,33.653711],[-120,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.116953,39.34207],[15.204447,38.802058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.11,-1.125],[-5,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.616113,60.295938],[4.707583,60.778877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.705,32.59],[127.21875,32.92875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.53875,30.46625],[-70.63,30.1175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.28,52.05],[-54.135,51.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[83.9775,11.5575],[84.7775,11.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.520625,43.125312],[4.873555,42.995273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.805,-54.175],[-36.2875,-53.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,40],[-62.795,41.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.825639,55.203441],[-5.447407,54.972646]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.407744,42.386943],[10.01048,42.660972]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-109.7,22.5],[-108.82,22.8825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.429063,34.71375],[33.662754,34.869424]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.335775,37.929713],[24.604097,37.545281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.629463,38.542939],[-9.71,39.155],[-9.699922,39.473281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.8225,41.9775],[-11.245,41.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.525,-18.294375],[178.255,-19.0425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.9775,34.6775],[28.585,34.694375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.81,30.16],[-72.945,28.8275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.651816,56.985137],[20.287852,57.043262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.6575,-12.7975],[-170,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.0875,37.07],[-15.5825,36.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-50],[-100.040937,-39.951563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.84375,40.83],[-10.078438,42.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.685,18.405],[-175,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.09,33.7875],[-69.4225,33.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[74.3425,-35.9925],[75,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.9825,63.655],[-20.312812,63.477187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.677383,57.45605],[-1.267969,57.714297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,30],[-177.48,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.7925,-4.2375],[72.458096,-7.128027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.3325,54.33625],[0.0725,53.8725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.1475,-30.015],[-90,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.99,26.02625],[-97,22.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.686904,52.46791],[-6.038772,52.23241]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.33822,56.091329],[11.525957,56.332773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.361342,55.229045],[13.386094,54.875313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.413125,43.543437],[8.489414,43.210635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.738125,58.746562],[-4.907422,60.282812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.17,64.80375],[10.0775,65.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.501875,44.645625],[-1.4525,44.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,-50],[150,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.915625,-10.021875],[52.7775,-6.3675],[53.8225,-4.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.735,65.0775],[-23.352881,65.077998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.230293,54.959705],[-1.41875,55.302656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.9,3.4375],[-180,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.07625,12.52625],[-69.895488,12.938877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.538984,55.294648],[18.836484,55.227539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.527812,60.725469],[19.863638,60.867437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.325767,51.642944],[1.576936,51.453381]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.225,59.805],[-163.6125,59.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.5525,35.0075],[-50.0025,34.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.91875,5.86],[-51.9,5.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.6625,59.246797],[18.080039,58.893164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-177.5775,27.62],[-178.61,27.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.952969,38.052109],[-72.510937,38.706875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.39668,58.633281],[20.339854,58.181816]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.95,59.05875],[21.315547,58.931875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.2425,10.6275],[96.4025,14.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88,13],[86.455,13.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.7825,8.615],[-83.0325,6.6025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.9,52.6],[169.785,50.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.64,38.88],[22.993203,38.830684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[81.2325,11.93],[78.061875,7.21125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.464746,38.51334],[11.396704,38.073561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.159688,37.335313],[-10.9,37.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.66,30.03],[141.105,31.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.315,37.5225],[-35.96,36.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.5325,-7.5175],[-104.1325,-5.9225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.645,30.265],[-75.3175,30.3025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.768125,-5.03125],[131.4,-3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.1775,34.5275],[123.0725,34.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.911819,58.086389],[10.749147,57.717465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.4325,35.1125],[30.631641,34.477109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[62.2925,2.325],[64.7325,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-30],[-80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.09,29.8425],[123.269375,30.914375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0175,-30],[160.0025,-33.4825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.234531,38.099219],[10.3375,37.81125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.779844,53.08125],[3.254312,53.060234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.2975,13.8875],[-69.895488,12.938877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.655,4.1425],[119.7025,3.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.558516,38.578437],[13.790879,38.328535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.3925,38.7525],[3.280156,37.515937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.769736,37.73077],[25.413242,37.735093]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.210225,62.398984],[5.435,62.24375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.62,-6.0075],[-144.1375,-5.9175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.75332,61.251289],[4.707583,60.778877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.39,-35.0125],[-4.61,-35.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.241221,55.024209],[16.432834,54.658691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.934456,57.944988],[18.620322,58.012783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.6,35],[12.60125,35.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.984683,36.948062],[23.874049,37.28481]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.97625,71.1925],[31.40125,70.75125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.804219,32.365684],[-65.8025,34.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.959365,42.216797],[14.530248,42.472596]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.47,27.425],[-19.96,29.978125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.613594,56.419687],[-1.603267,55.799884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.814375,54.605],[11.474169,54.531771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.216087,56.758495],[12.126758,56.210586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.665,-35.0725],[-32.79,-33.0325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.7625,30.4175],[-70.63,30.1175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.055938,50.082188],[-28.3175,48.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.55,-31.41],[153.48,-32.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.5925,70.86125],[-180,70]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,0],[153.135,-2.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.0575,70.615],[27.0825,70.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113,-23.5],[111.7475,-22.30125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,20],[144.2725,24.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.5075,35.4975],[-15.6375,35.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.32625,68.454063],[14.792813,68.480937],[15.095,68.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.33595,52.879058],[0.06125,52.9175],[0.498425,53.23605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.269346,54.326816],[11.474169,54.531771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.1025,44.6325],[-125.32,43.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.32,-10.715],[-170,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.271719,41.101719],[18.585313,41.249688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.195,59.64],[4.613437,59.383789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.2675,-35.6325],[-153.8725,-36.4275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.406515,40.720172],[24.731172,40.436016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.12,10.21875],[103.34,10.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3975,38.3775],[4.57,38.6825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.080781,54.53],[5.020605,54.168008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.3925,42.57125],[37.8175,42.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.792188,60.057187],[-0.255,59.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.805625,-18.205625],[172.495,-18.2],[176.9,-18.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22,33.3],[20.1475,34.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.9975,19.9975],[59.445,15.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.140937,35.641094],[30.4325,35.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.675273,59.982813],[27.048828,60.374121]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,29.345],[-170.76,29.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.37625,37.86875],[20.370171,38.089795]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-70.57,-52.9625],[-70.7125,-53.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.87375,7.2075],[-81.4,6.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.9225,34.7075],[-9.8225,33.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.6275,-20.025],[-30,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.867578,56.756875],[21.096387,57.439023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.1825,-19.785],[54.935,-17.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.32,1.34],[-41.7125,1.7375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,-35.385],[-34.665,-35.0725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.8575,-35.0125],[124,-34.1],[126.1,-32.6],[129.1,-32.1],[131.1575,-32.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.792422,57.810625],[22.450625,57.80125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20,-40],[11.1075,-40.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.053438,38.313437],[-9.629463,38.542939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.96,23.1375],[135.33,25.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.4225,51.2625],[-6.4875,51.578281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.855,34.50625],[33.738594,34.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.4,9.1],[-180,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.919844,40.300645],[14.391758,40.245664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.07,35.195],[18.9025,35.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.319315,55.488536],[7.006055,55.484766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.6575,-24.5425],[-72.8,-29.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.9675,37.26375],[5,37.18375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.0025,33.36],[-32.55375,32.79625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.865,17.5725],[-162.8375,16.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,8.88],[140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.474375,34.946875],[32.00375,34.775625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.861699,36.770942],[-7.645,36.9325],[-6.916562,37.175625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88,21],[87.4,19.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88,13],[88.9725,13.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.5425,32.4375],[31.6025,32.7175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.6925,42.355],[-70.5,41.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.0075,59.505],[16.5925,59.5675],[17.038125,59.509375],[17.511094,59.4425],[17.760049,58.975605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.5425,66.0125],[-81.7625,65.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.505,-9.41375],[5.2,-3.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.798809,43.312246],[6.912383,43.041563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.73375,59.5425],[3.3975,59.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.369375,20.040469],[-66.373125,19.325625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.43623,58.543359],[21.222227,58.222451]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.774375,65.679375],[22.239863,65.526875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.1325,-34.5325],[108.885,-28.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-30],[-80,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155,-5.0575],[-159.135,-0.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.175,30.388125],[-79.8175,29.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.636563,56.349375],[-7.274375,56.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.844917,36.257485],[24.66959,35.871655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.9025,58.7425],[12.345,58.39],[11.99,57.725],[11.718486,57.654951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.59,70.4125],[39.10125,69.59125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.04332,37.265273],[23.627153,37.238853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.61875,44.40875],[-3.4675,44.1775],[-3.340625,43.893125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.4,-24.8],[150,-21],[147.1,-18.7],[146,-16.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.557676,56.00498],[15.891122,55.877554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.1175,40.045],[-130,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.6825,23.11],[-86.475259,22.085903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.299349,58.879789],[5.440156,59.17311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33,35.8],[32.02,35.11375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-27.2575],[-168.1875,-28.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.92,32.9225],[14.54,33.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6775,40.925],[6.919531,40.625625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.3725,32.41],[19.2925,31.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.7375,30.83],[-72.81,30.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[83.9775,11.5575],[85.155,14.4225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.2375,54.432734],[-4.196875,54.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.443125,71.11375],[24.510781,71.015313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.734727,40.860938],[27.95,40.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.760625,37.49875],[-11.456875,38.337187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.0275,10.1725],[109.9475,7.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.7875,66.1],[10.3575,66.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.665703,36.064629],[-6.350391,35.909531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.25,51.4075],[-8.7175,51.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.52,-40.57],[160,-40.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.865,65.3125],[4.89,65.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.16375,34.34375],[129.2,32.9],[128.9,31.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.215,50.21625],[-3.033704,49.937569]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.455,42.2375],[133.7575,42.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.956563,55.702969],[19.097383,55.425762]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-40],[-100.040937,-39.951563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.119062,31.647031],[31.6175,31.85125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.98,34.7875],[34.68,34.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.093699,59.458062],[19.735938,59.440313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.88375,-9.961875],[75,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.515,32.77],[-71.735,31.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.2125,16.935],[134.1225,16.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.559668,57.22002],[7.90436,57.051143]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,0],[99.9,-1.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.3575,54.48],[1.635,54.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.85,-10.775],[179.055,-12.8575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.936445,36.140889],[15.485625,36.366875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.685,15.48],[-155.2025,14.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.39832,56.198828],[-2.107246,56.027568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,4.43],[-31.2425,1.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.117031,50.880625],[-7.739375,50.261875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.76,-0.7725],[-100,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.740625,1.6625],[107.50375,-1.32875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.317813,62.34],[19.00125,62.650625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.62,29.590625],[-75.6425,28.9375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.634863,37.840791],[11.43373,37.622539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-20],[-10,-21.3425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.054688,40.210625],[8.21,40.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.67375,60.906875],[-4.4975,61.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.024375,37.33875],[16.260469,37.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.23125,52.08],[-5.2775,52.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.0775,-6.13],[-132.6775,-10.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,20],[-155,20],[-157.464375,20.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.28,44.34625],[30.1425,44.09125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.4575,40.55125],[-70.1475,40.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.091484,37.840859],[24.898643,38.091514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.8625,58.895],[-155.41,57.2775],[-156.7475,55.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.739453,32.532793],[-16.605,31.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.255,54.055],[-162.56,54.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.84,60.72],[-4.907422,60.282812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,10],[-140,8.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.006514,37.88418],[11.932227,38.128867]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.839688,57.517383],[-6.707813,57.801992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.815,4.8575],[74.8225,4.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.366641,61.700234],[20.11043,62.380625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.42,-9.4325],[163.3025,-10.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.6825,59.8975],[3.583125,60.046875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.6025,43.6175],[32.2725,44.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.930508,52.306133],[3.2625,52.295938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.652305,41.883594],[11.437969,41.627891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.714746,59.065039],[4.703125,58.797187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.105,48.1075],[-163.8175,46.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.4525,44.205],[-1.800312,43.855781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.825,-35.5475],[162.15,-35.9575]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-71.170625,-53.940625],[-70.945,-54.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,50],[-176.7,51.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.16375,34.34375],[130.1825,34.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.850313,42.576875],[-8.970518,42.269365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.783164,44.592305],[-5.6675,45.24125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.5975,-10.0175],[65.055,-10.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.17,73.975],[80.8375,74.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-12.815],[80,-15.945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.915625,1.430625],[169.4225,5.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.255,12.8725],[-140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.82,59.18],[-168,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.28,30.0125],[-70,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,21.14],[-38.035,22.0825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.45,-19.27],[156.0425,-19.1775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.835625,9.54125],[-82.964375,9.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.39,-20.06],[-111.5675,-18.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.833379,50.535977],[-1.9246,50.200186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-14.845],[-20,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-30],[-120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.776836,39.764063],[9.961719,40.053281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.04,49.3675],[-10.6725,49.6525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.525,-18.294375],[-180,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.33,37.16],[3.18375,36.947969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.1475,10.0225],[-31.5275,11.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.65,44.9575],[-155.4175,45.1275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.584275,36.436831],[27.318728,35.996227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.078438,42.0925],[-10.196406,42.474375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.6075,-9.12625],[176.3525,-9.2675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.874844,56.456094],[-3.2,56.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.14375,27.81375],[-72.8175,27.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,-35.385],[-161.7775,-31.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.0825,27.2425],[-66.5725,22.5825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.925,12.4025],[54.1875,14.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,-50],[130,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.766053,41.266393],[8.935967,41.305891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.306465,39.121387],[8.151791,39.333627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.188125,53.085],[-10.2975,53.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.432834,54.658691],[16.543535,55.029609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[83.6575,17.415],[82,16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-174,-3.8325],[-171.6525,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.57,46.24],[-7.5025,47.678125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.977891,59.996338],[21.366875,59.841875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.8875,11.3525],[-90.9925,11.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.305,27.4825],[-60.62,25.605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.457852,53.575371],[0.25,53.81],[-0.033281,54.138125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.845,14.46],[-69.105,14.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.528043,59.2655],[10.793129,59.024679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.1975,37.1025],[122.1825,37.815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.75,57.81375],[2.01875,56.948125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.54,60.6],[-6.1275,60.58875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.009687,37.76],[-22.31375,37.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.554062,47.658906],[-3.942187,47.478906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.3675,37.765],[-32.360937,37.845938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[81.2325,11.93],[82.23125,7.17625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.945625,39.859375],[15.05625,39.60875],[15.116953,39.34207]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.395312,36.695937],[-3.782344,36.6025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.008465,59.705375],[19.419526,59.931455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.1125,45.4025],[-147.485,47.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.55042,56.64918],[20.867578,56.756875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.963281,42.830156],[29.535625,42.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.324062,61.500937],[18.700071,61.24363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.91625,39.27875],[-72.46625,39.45625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.619247,31.847697],[31.6175,31.85125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.1425,32.065],[-62.025,31.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.809609,42.782812],[-9.74875,41.9725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,-37.8],[179.5825,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.165,53.38],[-40.0025,52.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.2625,39.667153],[25.049434,40.175664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.53,42.17],[18.366875,41.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.96375,-52.84625],[-79.9975,-52.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.055,-26.21],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.788105,57.365605],[20.476396,57.328218]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.4775,23.835],[-85.695,21.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.2025,10.4175],[110.0275,10.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.852187,41.931875],[8.111875,41.577813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-118.19668,33.653711],[-118.915,33.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.27,20.0525],[-40.74,20.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.952969,38.052109],[-72.535,37.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.8325,30.04],[-127.35,30.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.682148,54.308906],[14.183711,54.135215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-50],[-104.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.969375,59.31625],[5.041094,59.009687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.797266,39.375654],[0.884609,38.905703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.476396,57.328218],[20.021406,57.228848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[63.14125,72.01],[65.6675,69.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.965,56.2675],[17.768457,55.970605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.5,49.6],[-50,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.864453,54.674297],[15.0402,54.91689]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.509063,41.307187],[11.251514,41.357402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.079297,39.135859],[9.499775,38.82457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.932109,22.026016],[-86.475259,22.085903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.345,61.4675],[-4.0675,62.0375],[-1.7075,63.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.2375,59.45125],[-1.1,59.8075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.30475,55.035637],[18.836484,55.227539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.510781,71.015313],[24.905,70.995],[24.99,70.9925],[25.025,70.9925],[26.040469,70.966875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.623551,37.813804],[26.143315,38.162983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.393438,39.832773],[8.086406,40.580312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.805,-47.365],[-4.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.25,63.89],[-168.260625,62.479375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.689297,51.3425],[-4.166472,51.147981]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,40],[-50,40.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.5875,40.5875],[-52.5725,42.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.380596,64.274795],[22.035,64.095625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.66,29.0075],[-50,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.898516,61.085391],[17.95625,61.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-20],[-149.8125,-17.359727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.941016,49.513984],[-2.776211,49.78832]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.07125,32.385],[-71.28625,31.554063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.32506,52.820001],[5.325,52.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.7225,36.96],[-10.844531,37.245937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.543809,53.938398],[-5.28625,53.9775],[-4.875,54.010312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.19335,54.792202],[7.782939,54.533564]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.3325,53.7175],[-6.077656,53.644063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.48125,37.713437],[18.37625,37.86875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.861699,36.770942],[-7.679063,36.326875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.3325,59.715],[149.4625,59.1175],[149.615,58.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.9975,0],[135,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,3.29],[58.89,1.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.08,-39.15],[-145,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.31,0],[-160,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25,-25.2775],[-26.395,-26.595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.1,33.2],[13.5475,34.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.90625,39.69],[-9.95,39.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.05,46.00875],[-4.180156,46.235938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,-40],[110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,-15.17],[-126.6975,-16.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.020605,54.168008],[5.3775,54.4475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.706875,43.434375],[40.61125,42.206875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.505,62.74],[-24.9,65.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-60],[-90,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13,65.9225],[-13,66.2425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.3,30.295],[-90.02,29.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40.9975],[-40.0025,42.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-40],[66.8375,-37.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.51,67.036875],[12.364375,66.279375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.405,26.4525],[-75.625,26.23875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.25,41.8],[-68.445,41.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.0825,64.69875],[-23.66875,64.559375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.3925,41.835],[38.4325,41.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.6975,-10.05625],[165.480625,-5.53625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.316016,36.362266],[26.229688,36.745088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.2075,33.4875],[-133.7525,34.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34,-26],[43,-26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.013125,19.969375],[-50,21.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.90125,14.345],[122.1,13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.47,42.2825],[-10.8425,41.2075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.669375,42.92207],[6.912383,43.041563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.547988,50.43625],[-0.886562,50.420002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.216855,44.554338],[14.26142,44.988687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.7825,48.3975],[-37.185,47.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.8375,16.7075],[-166.8975,17.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.19335,54.792202],[8.668396,54.57032]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.68,-9.135],[116.6725,-7.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-40],[-15,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.396704,38.073561],[11.43373,37.622539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.8,-0.9],[-87.7625,-0.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.735,16.185],[-87.7975,16.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.4275,27.57],[-145.2975,28.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.0025,-35.005],[10.0025,-34.6925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.2975,28.7475],[-149.02625,29.11125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.09355,36.067437],[25.039025,36.476917]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.66875,-12.7925],[109.7375,-20.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.0775,-6.13],[-137.395,-4.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.045,2.995],[-130,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.96,64.13],[-7.0275,62.43125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.339375,42.475],[-135.45,40.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.455,-24.7225],[165.155,-25.4225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.4025,-32.6125],[-45.305,-32.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.0075,5.6275],[0.34,4.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.375,35.925],[12.097554,36.952969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.8375,57.162813],[6.121537,57.878751]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.125,-37.135],[30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.70625,58.048125],[5.081094,57.984375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.193047,43.552847],[7.115,43.261992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.915,4.93125],[-30,4.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.45,35.055],[35.6575,35.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.7,-5.85],[122.8025,-6.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.555,69.555],[33.49,69.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.3175,52.7275],[5.6425,52.825],[5.32506,52.820001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.274683,49.67916],[-3.547422,49.481406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.85875,36.415],[-30.0025,36.4475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.5475,28.245],[-77.94,29.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.09875,20.05625],[-120,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.835365,43.583118],[15.526992,43.320381]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.916992,43.469033],[-2.76125,43.481875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.1625,6.81],[-57.91625,7.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.675,-4.125],[-87.7625,-0.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.229375,36.69125],[-12.400781,37.014375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.1375,37.13],[0.94,36.9575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.021875,49.96],[-11.108125,49.92875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.9775,-8.2775],[50,-2.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.91,29.1725],[-11.9575,29.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.950625,56.411104],[12.126758,56.210586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.441687,37.458124],[23.636179,37.777488]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.936445,36.140889],[16.7275,36.0875],[17.09875,36.04375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50.54],[-20.51,50.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.3425,34.775],[-26.235,34.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12,-9],[11,-6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.250625,-27.075],[154.245,-27.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-40],[-147.4925,-40.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.0025,-33.5325],[40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.8475,43.0575],[32.89625,42.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.358799,36.8823],[25.150059,36.720225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,48.56],[-130,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.757053,43.33144],[9.823545,42.913235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.110156,39.516562],[11.0475,39.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.77,21.8775],[-65.4775,19.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.445,26.27],[140,24.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,0],[-2.37,1.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-37.5975],[60,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,30],[-170.76,29.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.042178,50.586245],[-0.262402,50.295737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.306733,35.501705],[24.948025,35.713745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.93375,60.48375],[2.6825,59.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.515,29.055],[-78.24,28.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.34,18.5575],[-73.19661,19.230025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.1475,35.9375],[-67.0575,35.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.855,46.6675],[140.6125,46.6725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.73625,35.49875],[139.426562,34.934062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.597207,40.216558],[18.896309,39.95124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-30],[-165.01,-30.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.515,26.475],[-76.295312,25.939062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.9775,-8.2775],[49.915625,-10.021875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.38,28],[-91.30375,28.42125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.748457,41.876426],[10.463164,41.705469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,30.9025],[-30,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.2275,29.0825],[-89.9,28.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.029375,-14.03875],[67.5975,-10.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.525,10.60125],[-80,9.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.8775,-12.08],[-130.0025,-11.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.3225,48.305],[-13.7025,48.115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,-50],[110,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.5025,60.78],[-4.907422,60.282812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.8775,0.89],[-30,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.309688,53.065938],[4.296922,53.03798]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.91,57.545],[-5.6425,57.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.275,-7.25625],[116.83,-6.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.8875,48.0575],[-15.985,48.2825],[-15.3225,48.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.17,28.2725],[-67.9975,27.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.965,51.4325],[-8.7175,51.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.32125,29.4425],[-15.566484,29.254062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.2475,61.8275],[-168.57875,61.7775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.635,27.5575],[-87.365,26.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.5125,-40.545],[151.265,-39.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.16,33.5625],[23.9425,33.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.962656,70.722344],[20.787813,71.224922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-112.55,12.905],[-110.1975,10.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.3075,35.62875],[-6.6075,35.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.995625,41.708594],[4.56875,41.778125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.78,69.30625],[16.260625,69.6675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.862468,50.634133],[0.688661,50.350463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.9825,25.2375],[-87.4175,25.32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.0025,25.4325],[-173.6525,26.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.99,-44.925],[-56.8825,-45.7375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.585,28.7325],[130.35,30.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.66959,35.871655],[24.402129,35.471797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.91125,25.885625],[-79.5825,26.08125],[-79.316875,26.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171,-46],[175.5375,-42.975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.82875,35.335],[30.140937,35.641094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.560938,58.811875],[18.97,58.680937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.585313,63.03],[20.057578,62.840937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.005,-11.495],[-102.575,-10.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.79,-33.0325],[-30,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.014375,53.32875],[0.498425,53.23605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.98,-24.2175],[166.37375,-22.344375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.033281,54.138125],[0.0725,53.8725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.3325,31.65],[-11.785,31.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.465,25.095],[-84.07875,25.73375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.928394,51.919619],[2.1525,52.260234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.65,47.25],[157.2075,49.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.885,-28.7225],[106.725,-26.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.28625,31.554063],[-71.12,31.2325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.6675,33.19],[-120.8925,34.3675]]}},{"type":"Feature","properties":{"pass":"kiel"},"geometry":{"type":"LineString","coordinates":[[9.104063,53.88125],[10.145814,54.451068]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.7325,17.7525],[-64.295938,17.16375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.666816,44.676299],[12.68001,44.979209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.5325,38.3075],[-74.360938,37.926563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.3925,58.4875],[-5.16,58.649062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146,-16.7],[146.525,-16.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.06,68.78625],[14.65375,68.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.1925,18.05],[167.534844,19.455625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.719883,62.298301],[18.010176,62.546152]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.969731,56.628496],[17.965,56.2675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.610625,67.785],[12,68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.85,-29.3325],[60,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.6325,57.47],[-7.095,56.954062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.235203,56.705232],[11.189727,57.350195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.7375,-20.375],[110.725938,-22.962031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.45,-19.27],[159.74875,-19.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.876387,38.050391],[23.0525,38.1925],[22.975,38.195],[22.876387,38.050391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.975874,49.366826],[-6.160938,48.760937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,2.7325],[-29.2225,4.36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.4275,-10.103125],[153.8025,-11.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.637969,38.376406],[-71.26,38.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.106875,51.918594],[-6.4875,51.578281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.693906,-23.070781],[167.9125,-23.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.753125,58.092656],[-5.53,57.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.47418,35.538633],[26.711875,35.864063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.3025,33.725],[26.548125,34.40125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.5275,-9.0925],[124.5475,-8.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.548125,34.40125],[26.015,34.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-179.47,50.255],[-176.995,50.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.35,66.365625],[-17.2525,66.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.2575,26.54375],[-72.5875,25.85125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.356133,58.670469],[-0.58875,58.64625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.305,21.765],[-73.884375,21.621875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[155,25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.8625,39.1275],[-139.683125,39.82625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.453954,39.883619],[23.6625,39.605625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.2,37.4175],[-140.0025,35.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.648672,59.604062],[25.090547,59.806436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.195,33.7525],[-17.8575,33.8125],[-16.82875,34.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,37.695],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.9275,37.90625],[-29.995,37.92875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.973203,60.058301],[25.435552,59.908784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.77,1.4175],[4.265,0.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.09875,40.50125],[138.32,40.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.6475,24.9275],[-67.0825,27.2425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.8,22.1],[-92.74875,22.244375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.820273,48.182891],[-7.1925,48.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.84,60.72],[-5.5025,60.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.967148,54.389336],[-4.289297,53.870781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.958438,40.086875],[-140,41.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.363936,42.587884],[8.248164,42.088457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.495,43.601875],[-10.22375,43.8675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.006563,26.254375],[-91.6925,26.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.8475,44.794375],[-4.509844,45.197031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.288867,35.930859],[-7.827407,35.890791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82,16],[81,13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,30],[143.755,26.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.583213,49.079404],[-4.787695,49.333008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.958125,20.08],[-40.74,20.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.306719,60.864062],[19.055508,60.824492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.087227,47.464883],[-3.344766,47.284002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.6675,41.575],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.02625,29.11125],[-150.02125,29.221875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.6975,37.2725],[5.2825,37.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.5,-10],[150,-12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.97,46.43],[-155.1125,45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.1,-26.4],[50,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,51.3],[172.9,52.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.015,34.5175],[26.656562,34.800313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.17625,-7.075],[176.1725,-3.87375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.585,43.61],[37.24,43.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.1025,-45.3925],[130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[97,7],[95.2425,10.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.865938,37.32],[5.9675,37.26375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.33,0],[-141.815,0.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.4025,-32.6125],[-44.7575,-35.1625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.9175,-3.21375],[-32.5075,-3.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.735,59.8525],[-168,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.6775,-22.28],[177.105,-20.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.8925,33.1425],[-78.1025,32.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.382898,45.325483],[13.08001,45.130343]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.319844,55.808359],[18.758359,55.537734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.874719,35.952957],[15.115,33.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.325,27.1375],[-79.3325,26.7375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.94125,41.35125],[-130,41.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.342695,59.654473],[22.264751,59.307012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.854425,35.840965],[27.665,36.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.92125,31.47125],[-67.51875,30.995625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.73125,28.20875],[-88.93,28.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.8325,30.04],[-130,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.0425,38.8225],[14.269766,39.131094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,40],[-30.545,40.5825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.16,-9.4675],[147,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.191543,43.407358],[8.413125,43.543437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.9525,49.015],[-40,48.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.2625,53.245],[-54.05125,52.47875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.4875,54.77],[155.5225,58.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.71875,45.77625],[-3.598438,46.093438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.94,39.1325],[154.0575,40.0875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.055,14.5125],[-80.935,12.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.269766,39.131094],[14.681084,39.03606]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.1775,-33.0675],[8.74,-31.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.8375,26.245],[-88.195,27.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.75,14.1725],[-23,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.451475,55.546858],[15.891122,55.877554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.55,-17.2875],[-147.2525,-16.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.91875,32.03125],[-76.2075,31.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.2675,-4.7875],[-90,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.478672,48.733437],[-4.865234,48.664141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.435,28.425],[-80.0975,27.5825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.93918,61.439756],[4.470625,61.478125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.87,26.185],[-88.15,26.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.6675,40.2675],[-68.964502,40.340308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.137793,52.579573],[2.549375,52.57625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.0425,-19.1775],[153.585,-18.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.3425,42.4975],[-151.3125,41.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.16375,28.8275],[-14.6775,28.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.061875,7.21125],[79.84125,6.9275],[79.59375,6.04625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.954062,40.591328],[25.303721,40.320674]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.225,47.375],[-10.4625,46.945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.5375,20.105],[123.775,20.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.398281,57.002461],[19.29252,56.583906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.035,55.685],[7.935493,55.269111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.03,53.9075],[13.990312,53.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.313047,38.851172],[11.028125,38.784062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.013125,19.969375],[-49.2075,20.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.000312,56.106719],[15.891122,55.877554]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.11,23.955],[-73.9125,23.80125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.7025,57.4475],[-134.565,56.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.84875,39.37],[9.705703,39.142422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.793633,52.388354],[2.137793,52.579573]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.54375,40.899375],[3.753125,40.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.9975,-53.66],[-36.315,-54.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.800312,43.855781],[-2.1775,44.265],[-2.36625,44.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.93375,56.016875],[8.035,55.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.994258,36.679492],[20.928772,36.401431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.657148,41.25707],[8.356279,41.171138]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.648818,35.316318],[27.52625,35.04875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.23,22.931875],[-88.45,23.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.6375,21.2875],[-66.715781,19.805156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.252344,55.362188],[3.809687,55.440313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.944824,36.998223],[14.082495,36.676348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.488379,36.032012],[28.9125,35.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.7975,28.3025],[-145.2975,28.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.8275,48.9],[-50,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.4175,40.6525],[-40.95,41.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.6675,43.295],[170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.809609,42.782812],[-9.5,43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.0325,39.505],[-71.7275,39.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.3625,66.1375],[-24.081875,66.418125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.52375,50.09125],[-5.341704,49.829033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.305,40.295],[19.937705,39.856963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.541406,62.844219],[20.11043,62.380625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.723438,43.980312],[-5.9575,44.0875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.195,-14.81],[152.88,-16.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.884702,37.41475],[25.602749,37.437231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.3825,4.435],[-94.935,4.9925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.668047,59.100625],[20.867754,58.728691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.00125,35.73],[-8.77,35.4225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.8875,32.335],[32.5425,32.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.975,40.3075],[6.919531,40.625625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.969731,56.628496],[18.682012,57.129824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-50],[160.0025,-44.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.3775,25.62375],[34.5275,26.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.0075,-20.69375],[64.69625,-14.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.272207,57.5154],[8.635947,57.806558]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96,19.5],[-94.4,18.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,29.345],[-170,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.045,25.38625],[121.6675,25.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.6375,35.28],[-16.0825,35.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.884375,39.855625],[-10.0875,39.06375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.2075,17.3475],[-166.8975,17.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.6575,47.515],[-15.92,45.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,0],[4.8775,-2.675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.9,-5.9],[110.6975,-3.5975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,-15.17],[-130,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.269346,54.326816],[11.079497,54.052212]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-174.28,34.6525],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-40.5575],[159.5125,-40.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.925,43.928242],[14.346814,43.727184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.707686,57.088086],[19.76375,56.775625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.180273,41.264727],[30.475,42.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.040937,-39.951563],[-93.73,-44.1775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.868437,9.378438],[-80.5275,9.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.0725,53.8725],[0.457852,53.575371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.525,-25.6975],[110.725938,-22.962031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.884702,37.41475],[25.972529,37.031776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.8875,-1.995],[126.831719,-2.3925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.27918,46.081191],[-1.429609,45.708789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-30],[95.5475,-30.0825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.4125,5.195],[-78,3.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.055,-10.0375],[64.029375,-14.03875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,20],[-39.958125,20.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.104375,13.241875],[42.053125,14.906875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.535,33.5325],[-21.3675,33.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.970996,45.519277],[-1.429609,45.708789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.32875,-12.59625],[141.2,-13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.6175,-32.5],[156.2225,-31.54375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.805,35.4525],[-75.079219,35.722812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.581953,37.762852],[-9.629463,38.542939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.5275,13.9275],[-23,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.867734,57.827891],[17.878408,57.549116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.37,69.995],[54.895,69.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.635,38.93],[121.635,38.9425],[121.95375,38.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.079219,35.722812],[-74.950937,36.170625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.2025,21.505],[-79,23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,17.0575],[-169.53,16.7375],[-167.2075,17.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75.11,-45.4025],[70.6975,-49.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85,-5.0575],[80,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.015,10.005],[-48.345,11.7375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.166709,58.630734],[-1.778125,58.673125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.179141,56.511172],[-2.107246,56.027568]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.3225,31.47],[-77.6675,30.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.08375,47.000156],[-4.492188,46.009062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.516328,57.951445],[9.058884,57.836154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.397709,44.838541],[13.08001,45.130343]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.3625,40.96],[-9.545,40.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.7025,57.4475],[-135.4725,57.595],[-135.8375,56.74]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.591562,44.739688],[28.752031,44.305742],[28.893213,44.010146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.495,56.935625],[2.79,56.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.7675,-36.8425],[175.2,-36.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.75,0.8],[168.43125,-2.879375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.4875,36.38],[-20.08125,34.969688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.215,48.8],[161.8825,46.74]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,2.7325],[-30,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.9,36.55],[-9.87,36.3625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.770117,38.031641],[20.938406,37.792102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.496826,55.929531],[14.648408,55.654375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.4925,14.1275],[43.104375,13.241875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.776172,49.213906],[-2.941016,49.513984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.025,2.0025],[65.031875,5.0675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.551875,41.174063],[13.31832,40.896455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2275,37.05875],[14.082495,36.676348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.4225,-4.95],[129.768125,-5.03125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.29625,48.4875],[-7.094375,48.813125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.143437,67.526875],[13.965,67.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.874526,58.542886],[18.128359,58.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.5,-30.5],[-47.9,-27.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.905,35.94],[31.38,35.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.095,24.40125],[-83.465,25.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,0],[94,6.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-38.6275],[-149.08,-39.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.68957,59.970225],[24.943906,60.051406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.06,-15.171563],[-160,-15.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[61.555,23.4575],[63.3,24.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.31,40.3625],[147.5675,41.945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.116628,55.70395],[10.424434,55.806729]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.928394,51.919619],[1.325767,51.642944]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.343867,58.234727],[10.588633,58.0579]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.725,69.135],[17.126172,68.852187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.345625,37.890625],[-9.581953,37.762852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.115,33.525],[16.0375,33.675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.461445,40.891055],[10.792813,40.715937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.095,54.3325],[-156.33125,53.83875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.778281,37.650781],[5.96625,37.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.371562,37.037188],[11.935122,37.151133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.219824,39.057051],[16.609629,38.297812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.6775,-10.4275],[105.545,-9.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.4175,61.185],[7.005,61.0875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.730781,44.616484],[-8.618125,43.990098]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.24,47.715],[-7.755,47.783437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.465,43.24375],[-63.5,44.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.9325,64.130938],[23.0175,63.845],[22.594375,63.986855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.675,-32.5275],[171.02,-31.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95,-25.2775],[90.103125,-19.976875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.967148,54.389336],[-4.555195,53.94082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.54,54.1675],[-164.255,54.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.3725,4.6825],[-150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.257012,60.082168],[20.313437,59.704609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.019688,19.97375],[-57.7475,22.3875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.675,8.68125],[68.825,8.84875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.27,16.405],[-160.765,17.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.0825,35.4925],[17.853125,35.741719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.074687,56.466875],[8.035,55.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.8975,30.975],[-142.7725,30.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,-19],[11,-15.5],[12,-9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,12.135],[-110.0475,9.980625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[92.9775,10.1375],[94.68,8.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.0725,26.29],[-147.4275,27.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.868823,51.477681],[1.928394,51.919619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.7375,32.765],[31.179063,33.616875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.64,40.625],[-66.865,42.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.809434,39.477559],[14.945625,39.859375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.415,27.2325],[-67.35875,21.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.3525,26.8925],[-75.405,26.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.763845,55.636349],[12.2325,55.45875],[12.554133,55.233171]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.7525,22.455],[120,22.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.4525,43.435],[38.706875,43.434375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.65375,20.055625],[-53.29125,17.36875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.446348,55.897129],[7.935493,55.269111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.2975,28.55],[-79.32125,27.41875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.375,54.2175],[15.022773,54.28293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178.5,28.5],[-179,28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.530977,49.444297],[-4.787695,49.333008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.2875,69.5025],[17.725,69.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,40],[-30,40.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.38875,32.23625],[29.0875,32.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.77,55.325],[-7.002041,55.378682]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.18,49.805],[168.215,48.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.8375,56.74],[-134.9375,55.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.225,45.1375],[-3.6125,45.49625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.514375,40.472812],[4.06875,40.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.985,56.7275],[3.669375,56.106875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.036333,37.603433],[11.634863,37.840791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.45,19.4775],[-125,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.701875,35.807187],[23.21,35.39625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50],[-30.055938,50.082188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.775,29.8375],[-85.4725,29.8725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,6.3225],[72.2725,5.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.3775,54.4475],[5.662539,54.805371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.875,54.010312],[-5.061953,54.614063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.238622,40.677594],[14.391758,40.245664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.725,50.285],[-11.24,50.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.69125,36.365938],[27.947437,36.525415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.44,27.1825],[-94.5675,26.1625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.979961,53.339355],[7.34,53.3175],[7.385,53.295],[7.3,52.8575],[7.2675,52.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.73,34.055],[-36.4375,33.8725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.7875,28.1375],[128,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.752168,41.683691],[8.488291,41.900225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.706289,56.817539],[18.943711,56.542969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.02606,39.080732],[14.809434,39.477559]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.790234,62.103242],[20.366641,61.700234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.00241,36.943411],[24.596785,36.850251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.345,46.53],[139.001005,44.710743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.87125,40.810625],[26.0575,40.3225],[26.076138,39.862085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.036152,57.56498],[16.648594,57.544687],[16.658262,57.161621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.8,24.7],[52.1,24.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,51.3],[179.86875,44.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[99.9825,-8.4825],[104,-7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.63,39.8225],[128.5375,39.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.12,35.5675],[123.0725,34.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.3075,51.2675],[-149.89,51.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.315,36.6],[170,37.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.048411,62.415458],[-20.073125,63.019375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.047529,39.195288],[25.315215,38.888848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.077788,39.484043],[0.17207,39.607148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.075752,42.085078],[10.788789,42.213477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.89,-45.405],[-20,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.095647,38.93687],[24.415684,38.837246]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.4975,13.5],[-60.405457,13.209844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.7,32.84],[-52.5575,32.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.636179,37.777488],[23.27665,37.841392]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-40],[5,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.73,28.8],[-56.66,29.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,20],[-140,15.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.8125,26.685],[-92.006563,26.254375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.4625,27.3375],[-75.95375,27.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.947939,40.484336],[0.700625,40.262812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.363828,63.562969],[21.86875,63.69375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.788125,41.56875],[17.461641,41.581094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.47,34.5525],[20.2275,34.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.83375,38.58875],[-10.884375,39.855625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.23125,7.17625],[85.695,10.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.557676,56.00498],[15.451475,55.546858]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.34,18.56],[-73.196691,19.230134]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.67,74.54875],[-161.77,71.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.8675,-25.1525],[-34.6125,-24.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.7925,61.4925],[21.340127,61.468494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.18375,65.429375],[24.23625,65.063438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.3825,20.9975],[124.427188,21.252187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.97625,-43.865625],[-56.68,-43.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.455625,29.054375],[-94.625,29.30125],[-94.995625,29.693438],[-95.285,29.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.0725,34.625],[123.0075,33.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.1475,-21.2175],[0,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.8025,-6.09],[124.8775,-6.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.67875,70.5425],[33.59,70.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,10],[158.375,10.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.465,25.095],[-84.27625,25.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.085,35.4625],[-124.7925,35.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.7975,40.0475],[-29.175,39.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.1125,37.9275],[-26.425,37.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.4175,25.32],[-87.73,25.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.6525,26.55],[-177.5775,27.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.635,-5.135],[155.8,-5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.778125,66.475469],[-15.56,66.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,0],[78.36,0.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.111719,18.575273],[-64.285,18.84375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.644375,35.865156],[-11.871875,35.83375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.1875,9.0925],[-88.55,7.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.6525,0],[-180,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.260771,53.982871],[-2.89248,54.017637],[-3.257798,53.639539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.5725,40.0975],[-59.4475,39.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.8975,35.2525],[-3.89625,35.715625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.0025,42.4125],[-150,41.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.4275,24.6925],[-125,25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.1225,50.7975],[-6.258672,50.534453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.63,37.3525],[16.523125,37.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.1375,9.34],[-86.7825,8.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.345664,36.706875],[21.663691,36.420527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.89,51.23],[-149.78625,52.37875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.46625,39.45625],[-72.386719,38.994219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.706289,56.817539],[17.969731,56.628496]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.935,48.230625],[-125.03875,48.51125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.93625,25.2175],[-73.41875,24.78375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.8175,29.055],[-79.6875,28.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.360816,50.226732],[-3.77498,50.063242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,20],[-167.4575,17.5925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.05375,-48.3125],[70,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.7425,-20.0375],[86.99,-17.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.0975,27.5825],[-79.32125,27.41875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.0075,33.3725],[124.3175,33.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.02625,-9.998125],[95.7825,-10.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.48186,36.060669],[25.306733,35.501705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.985,44.4275],[-7.994258,43.911279]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.731172,40.436016],[24.379602,40.247499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.423047,60.707695],[18.800391,60.92625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.008125,26.146875],[-133.35,26.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.970518,42.269365],[-9.1675,42.585],[-9.28,43.155],[-8.755679,43.520796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.036562,12.6975],[-59.3225,12.47],[-61.068125,11.07125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.287891,36.571968],[23.533376,36.630793]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110,-40],[100,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.545,40.31],[-9.699922,39.473281]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[113.8925,75.2475],[114.24125,76.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.204438,53.83895],[6.068574,53.441016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.616875,37.915625],[10.240937,37.558594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.8875,-1.995],[126.335,-0.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.100732,38.490039],[24.631413,38.327471]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.69375,40.45375],[-71.295,40.44125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18,-35],[10.0025,-34.6925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.58125,44.64875],[-7.814375,44.189375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.27665,37.841392],[23.441687,37.458124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.2075,20.84],[-48.19125,20.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.725,70.31],[19.5425,70.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.683516,65.004453],[21.352344,64.667187],[21.7175,64.530723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.804619,52.865981],[2.43625,53.06],[2.779844,53.08125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.5325,13.1775],[-17.1275,11.525]]}},{"type":"Feature","properties":{"pass":"corinth"},"geometry":{"type":"LineString","coordinates":[[22.876387,38.050391],[23.27665,37.841392]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.0225,40.925],[-123.96875,38.284375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.675,23.43],[-60,22.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.286719,37.064297],[-10.075,36.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.815,68.14],[-95.36875,68.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.939844,54.86375],[7.782939,54.533564]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.491523,56.585137],[11.235203,56.705232]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.34,28.5375],[-60,28.6725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.0475,9.980625],[-120,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.925,47.7975],[-17.6575,47.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.002041,55.378682],[-6.633662,55.371553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.74,-31.3225],[-49.5,-30.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0025,-44.37],[160,-40.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.02625,29.11125],[-149.605,29.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.579688,15.480937],[-94.8,13.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.265625,-34.81875],[-56.5,-35.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.863638,60.867437],[20.47125,60.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.136719,18.521875],[-75.34125,17.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.445,-40.8525],[152.8675,-42.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.17,64.80375],[10.3575,66.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.7,-15],[45.9525,-13.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.419902,57.585527],[7.675723,57.520352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.416682,56.219017],[12.216087,56.758495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.505937,37.529688],[7.62125,37.23625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.705,32.59],[124.615,32.373125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.89,46.415],[-4.62,47.541875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17,33],[-16.739453,32.532793]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.2975,0.7125],[-40,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.345,19.295],[-81.195,19.5925],[-80.8825,20.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.961719,40.053281],[10.094375,39.663594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.6125,59.135],[-166.5875,57.605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.109375,-37.7925],[151.265,-39.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.81,55.78125],[-5.825639,55.203441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.469844,56.578125],[-6.101406,56.646094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.7825,51.47],[141.39875,51.28125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.704209,57.733945],[-1.267969,57.714297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.90125,14.345],[120.05,8.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.062852,44.548828],[13.246099,44.256753]]}},{"type":"Feature","properties":{"pass":"malacca"},"geometry":{"type":"LineString","coordinates":[[103.555,1.355],[103.6,1.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.314297,38.348574],[-9.102083,38.035994]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.465,32.32],[-63.1425,32.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.476396,57.328218],[20.287852,57.043262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.345,40.035],[-54.5725,40.0975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.6175,42.7975],[-45.0625,45.36125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.380596,64.274795],[22.9325,64.130938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.2025,14.9675],[-151.96,13.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.3375,47.0575],[-172.54,47.5825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.382109,36.584688],[14.847993,36.641846]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.01625,64.805],[-23.66875,64.559375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.656709,39.660527],[18.896309,39.95124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.494023,37.61957],[-0.833696,37.470029]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-98.025,-10.015],[-92.7875,-12.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.58,-56.48],[-70,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.95375,38.6975],[120.83,38.55625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.3425,34.775],[-21.535,33.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.65375,51.7375],[-10.765,51.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.897454,58.567219],[-2.744531,58.765469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.990742,50.061914],[0.995137,50.41293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,40],[-129.94125,41.35125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.3025,31.105],[-61.32,30.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.132402,38.087119],[21.485422,38.285035],[21.766562,38.317656],[22.029609,38.320234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85,-5.0575],[90,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.315,4.6175],[113.69,5.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.92,32.83375],[28.61875,33.57875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77,-13.7],[-71,-18.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.651816,56.985137],[20.117129,56.855566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.8975,22.73125],[-89.8,22.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.055,33.32125],[139.64375,34.46125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.738594,34.45875],[33.11375,33.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.8275,43.325],[37.585,43.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.943438,35.452188],[26.648818,35.316318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.74375,37.13],[1.948125,36.88875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.7,13.4],[126.8225,19.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-20.64125],[163.34375,-23.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.3075,51.325625],[-9.687598,51.32625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.305776,58.233301],[6.739763,58.169515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.91,5.5075],[-86.7,5.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.492402,40.297148],[-69.4575,40.55125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,-5.0575],[-119.2,-0.8125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.675,6.41],[-81.4,6.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.06,68.78625],[12,68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.799375,47.2225],[-4.945703,47.458438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.2525,57.31],[5.8375,57.162813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.273438,37.940313],[-25.009687,37.76]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.3275,34.065],[-13.9025,32.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-40],[-140,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.111875,41.577813],[8.452188,41.625078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.6275,4.78625],[123.655,4.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.364375,66.204375],[-15.285625,66.604375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[150,16.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.485625,36.366875],[15.200234,36.573076]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10,-40],[10.0025,-35.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.385,38.1625],[0.7125,37.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.4225,-11.09],[162.5575,-16.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.89,51.23],[-144.05,50.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.214436,37.616389],[24.417593,37.161409]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.3125,31.995],[-62.3025,31.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.690146,56.531816],[7.671152,56.150957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.9975,-33.5325],[-20,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.9575,12.7375],[-100.3075,12.9575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.365,26.6175],[-87.2625,26.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110,-50],[100,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0025,-25.4775],[160.865,-25.2375],[163.98,-24.2175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.209141,64.978984],[-24.01625,64.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.97,46.59],[154.65,47.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.0425,5.145],[114.585,6.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-101.61,68.5],[-100.1225,69.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.326152,57.925352],[18.163398,57.671094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.92125,21.76375],[-120,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.187841,40.53687],[11.197656,40.590156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.616113,60.295938],[3.961719,60.365117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.499219,1.555625],[104.9875,1.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.2,-6.7],[155.8,-5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.841875,17.255],[-66.5925,17.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.378438,65.001875],[22.922773,64.697422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.09875,20.05625],[-112.6675,17.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.335,24.945],[-130.008125,26.146875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.40125,45.7825],[141.7475,45.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.723438,43.980312],[-5.867539,43.705039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.605,42.415],[40.61125,42.206875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.8,-5.2],[107.3,-1.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.429375,37.475625],[-123.28625,37.22375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,-19],[13.0875,-23.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.9375,10.2625],[-61.79875,10.6875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.687598,51.32625],[-9.46,51.68],[-9.83375,51.64625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.498594,54.987734],[7.782939,54.533564]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.080781,47.680156],[-4.945703,47.458438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.8625,58.895],[-150.7575,58.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.505,-33.09],[167.675,-32.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.814531,37.374473],[12.520449,37.301445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.289297,53.870781],[-4.485823,53.499235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,50],[-153.215,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.9175,-3.21375],[-31.3,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.500703,55.30668],[18.30475,55.035637]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.7675,5.225],[125.6825,3.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.405,46.1925],[-10.27,44.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.02625,38.419375],[3.280156,37.515937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.8425,-37.3775],[34.1625,-36.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.322227,54.133262],[5.698438,54.094687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,20],[-150,21.29]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,30.805],[-40.5725,30.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-121.23,-1.2475],[-120,-0.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.623551,37.813804],[26.420952,37.83022]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.83916,49.41332],[-3.547422,49.481406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.1075,45.7175],[-2.597188,45.826875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.564375,41.342695],[5.929375,41.290625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.480322,36.283815],[14.559629,35.929512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.525,-11.6],[95.7825,-10.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.0875,11.8675],[109.77,11.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.916875,44.328125],[-9.3675,43.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.8825,68.375],[50.1875,68.5725],[53.67,69.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.61875,46.8175],[38.23,46.83125],[38.962187,47.118125],[42.04,47.5575],[44.025,48.6575],[44.1225,48.6025],[44.495,48.42],[45.88,50.375],[45.9725,51.4925],[47.73,52.0275],[48.485,53.005],[48.4675,53.085],[50.18,53.3075],[49.0275,53.495],[48.455,54.145],[49.3825,55.2],[49.0275,55.785],[48.525,55.825],[47.9625,55.985],[46.565,56.3575],[44.7175,56.0375],[43.9625,56.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.390781,37.295625],[21.233125,37.010625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.3825,27.6],[-84.6525,27.5825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.6375,18.1675],[118.555,17.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.99,36.340625],[31.38,35.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-8.92],[-99.295,-9.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,0],[-92.5125,2.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.773281,57.108672],[10.465518,56.974839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.935,28.735],[-70,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.716306,40.474192],[14.391758,40.245664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.6875,41.2425],[-124.255625,38.57625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.3825,70.505],[32.67875,70.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.237109,59.49334],[21.315547,58.931875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.8675,0.015],[0,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.9725,18.0425],[-78.065625,18.979375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.617188,65.831875],[-14.462969,66.379375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.542344,48.407207],[-5.429043,48.05752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.213745,51.676665],[3.488633,52.013296]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.7675,12.1825],[-87.295,11.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.548125,34.40125],[27.2975,34.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.285,33.18],[-17,33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.915625,-10.021875],[43,-12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.2925,26.4675],[128.7825,26.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.928555,36.400508],[20.4375,36.3825],[20.185,36.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.145,57.0525],[2.495,56.935625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.5975,67.0375],[41.2025,67.88],[35.555,69.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.742734,56.151094],[20.649277,55.753359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.66959,35.871655],[24.131104,36.23646]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.740021,61.920164],[4.37,61.60375],[4.180312,61.413438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.399687,59.02],[23.180596,59.44479]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.8,34.425],[14.559629,35.929512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.370171,38.089795],[20.770117,38.031641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.220313,56.46125],[5.200312,56.110312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.66,39.6525],[-71.7275,39.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.1125,20.055],[140,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.7375,-2.9675],[123.7825,-5.0725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178.5,28.5],[-177.48,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-10],[-130,-3.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.805,39.6025],[2.156807,39.539702]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.3,33.2775],[17.55375,33.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.9525,35.395],[-15.6375,35.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.254312,53.060234],[4.006875,52.968125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,43.6375],[-22.4575,42.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.98,-24.2175],[165.1625,-23.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-20.64125],[160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.705938,45.724375],[-4.492188,46.009062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.036875,30.944375],[-73.085,30.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51,13],[54.2,16.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.66375,-25.46625],[-120.7475,-23.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.0525,-16.51],[139.31,-16.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.09,33.7875],[-69.5175,33.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.8325,70.385],[23.105,70.56625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.5675,36.20875],[19.19,36.35625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.215,50.21625],[-3.48334,50.045639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-10],[64.966875,-5.071875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.765,47.6325],[-2.775,47.625],[-2.805,47.6125],[-2.9125,47.5625],[-3.087227,47.464883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.8375,-53.3125],[-39.9975,-53.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.948025,35.713745],[24.66959,35.871655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.97625,-43.865625],[-52.930312,-39.90625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.598662,49.992534],[-2.430313,49.543438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.5171,59.5446],[10.528043,59.2655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.451387,38.769238],[0.884609,38.905703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.184526,49.875571],[-0.50989,50.131948]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.707656,62.230937],[-5.675,61.6875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.447139,36.088213],[22.0875,36.22],[21.663691,36.420527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.4,18.6],[-93.5375,20.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.8,-0.9],[-81.175,1.8475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.9125,34.1825],[23.92875,34.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.584375,25.955313],[-76.295312,25.939062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.934456,57.944988],[18.855781,58.365742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.693389,49.700889],[-4.530977,49.444297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.01,-30.0925],[-170,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.7525,-55.4325],[-90,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.010781,55.513438],[-6.506875,55.907187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.03,34.321875],[35.035,33.97625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.449375,57.009375],[17.122656,56.799727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.3325,54.33625],[-0.033281,54.138125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.656172,36.203125],[-12.625,36.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.36375,29.29375],[-88.07375,30.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.920625,35.503125],[28.05875,35.611875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-30],[-100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.682148,54.308906],[15.519507,54.514373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.09625,-9.38],[106.66875,-12.7925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.32,51.9625],[-17.63,52.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.6975,-16.845],[-130,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,30],[-180,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.205,-23.3975],[-1.5375,-21.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.271992,35.712578],[23.21,35.39625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,30],[174.695,35.105],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.864453,54.674297],[14.682148,54.308906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.109805,41.729844],[-9.3625,40.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.02,29.99],[-89.040625,29.46625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-3.1075],[-130,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.398281,57.002461],[19.668906,57.37418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114,6],[114.3725,6.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[112.6875,-21.91],[113.3825,-21.52625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.573867,36.835508],[21.233125,37.010625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.11,39.02625],[-74.56625,38.69125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-27.125],[2.015,-28.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131,31.0875],[-133.2075,33.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.875,41.0025],[3.753125,40.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.7375,-20.375],[104.60125,-15.06625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.1325,-34.5325],[118,-35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.6425,25.1675],[-86.9825,25.2375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,20],[-140.73,20.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.452798,37.190425],[12.943418,37.058242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,22.1],[120,24.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.02,0],[65.02,-0.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.961719,60.365117],[3.583125,60.046875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[148.4125,-13.8675],[150.195,-14.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,31.6025],[-38.27,31.8825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.285313,50.158047],[0.990742,50.061914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-50],[-120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.485823,53.499235],[-4.976504,53.224507]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.6,-5.2],[153.635,-5.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.1425,35.5175],[-11.871875,35.83375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.455,48.95],[-153.97,46.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.465,62.9075],[35.0175,62.695],[35.6675,62.2375],[35.6975,61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.470459,43.627012],[-8.279375,43.810625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.554375,36.50625],[20.213575,36.382847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.538125,27.859375],[-91.7325,27.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.5875,60],[-30,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.707935,60.35106],[21.160495,60.369147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,-50],[120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.8625,27.08375],[-78.1825,27.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.875,54.010312],[-4.555195,53.94082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.648125,45.58625],[-5.6675,45.24125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.2575,26.54375],[-72.3975,26.70125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.34,53.5],[3.345664,53.816563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.03,35.105],[-67.9575,34.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.16,22.3775],[-86.32,22.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.734727,40.860938],[29.180273,41.264727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.36,-37.5625],[50,-37.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.4075,34.509375],[34.955,34.51375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.382344,66.157656],[-20.64,66.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-30],[-105,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.89,-45.405],[-93.73,-44.1775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.151875,-5.8925],[121,-5.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.59125,37.648438],[-75.2775,37.3025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.395,35.7025],[-9.495625,35.18125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-112.56,16.2225],[-112.9475,17.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.43373,37.622539],[11.550898,37.330234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-6.9825],[-152.6125,-7.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.2925,-20.16],[-76.28,-20.1275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.7775,16.3775],[-39.958125,20.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.031226,49.609712],[-0.29,49.8875],[-0.50989,50.131948]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.59231,39.925566],[25.049434,40.175664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.044585,35.922881],[26.971714,36.178628]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.6475,42.788125],[29.180273,41.264727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.3225,55.644063],[5.245566,54.889023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[151.5,-34],[152.375,-34.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.6575,-3.1725],[53.365,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-179.2,64.9],[-172.3,64.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-113.6625,16.49],[-117.1075,17.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.3675,63.7275],[-15.655,63.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.54105,36.899026],[15.366363,37.294783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.0075,33.3725],[122.9,31.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.066875,34.80875],[27.52625,35.04875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.1225,32.92],[135.07,33.19125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.390625,38.802813],[0.884609,38.905703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.89,58.7],[-5.16,58.649062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.02375,57.048125],[3.62,56.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.56875,56.308125],[5.764375,56.762187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-10],[60,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.99875,62.33875],[19.479375,62.294375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.075391,57.080576],[11.748981,57.371318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.804063,11.961875],[-67.185,14.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[46.4925,67.1575],[47.8825,68.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.369375,20.040469],[-66.715781,19.805156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.2825,35.64375],[21.959687,36.066563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.5125,30.065],[-160,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.911777,59.718779],[5.217041,59.531699]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.9,-40.3],[175,-42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.41,-9.4875],[156.2,-6.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.040625,29.46625],[-88.3175,29.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.965891,58.906169],[10.0325,59.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,20],[125.7,13.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.6975,-16.845],[-123.865,-20.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.24125,31.978437],[33.1425,32.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.4475,37.4975],[2.155,37.55375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.588618,42.703418],[9.530459,43.106787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.766562,20.939375],[-73.768828,20.000156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.0475,9.980625],[-108.07,8.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.78625,34.46375],[27.095,34.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-8.62],[-158.3375,-8.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,40],[-47.27,37.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.406016,40.887422],[12.115781,41.194063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.6125,28.69],[-130,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-30],[-116.77,-26.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.0575,34.145],[-13.3275,34.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.559844,40.921289],[2.893906,40.936875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.1025,-53.0075],[-63.19125,-53.7675],[-63.336875,-54.05875],[-63.52,-54.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-30],[100,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.5425,12.755],[-137.255,12.8725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.779531,38.952188],[4.9575,39.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[61.6525,21.5],[58.9975,19.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.874049,37.28481],[23.62125,36.955898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.2625,27.065],[-91.8125,26.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,40],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.995391,50.711562],[-5.1975,51.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.0875,65.6925],[-18.13,65.7975],[-18.351741,65.977458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.188398,52.077695],[3.899038,52.034609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.1875,14.03],[57.925,18.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.66,11.0875],[-91.8875,11.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.945,-7.65],[125.454375,-7.94875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.7625,46.685],[35.3925,46.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.74,70.0775],[-139.14,70.7125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.575,-32.005],[-49.9125,-32.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.5975,46.16875],[146,43.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.827422,43.645742],[8.191543,43.407358]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.785625,58.774531],[20.117656,58.577188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.710469,55.529062],[6.353047,55.711758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17,33],[-17.435,32.565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.4,9.1],[165.9775,8.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.8125,26.685],[-91.22,26.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.0475,9.980625],[-108.98,10.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.787813,71.224922],[21.5675,70.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84,26.14],[-83.685,25.8625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.404687,52.319531],[-10.054316,52.463086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.113934,37.874624],[15.634229,37.938584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.755679,43.520796],[-8.618125,43.990098]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.33,-5.2725],[111.9,-5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.7725,11.6125],[-66.75,11],[-69.235,12.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.4,19],[69.1675,21.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.4175,37.4675],[-10.613125,37.707813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.5975,32.0975],[-125.795,33.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.9525,0.9675],[-110,1.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.6725,9.2025],[163.353125,14.503125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.125723,49.297363],[-2.941016,49.513984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.91,21.39],[-75.4025,22.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-50],[-136.1275,-46.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,-10.6],[131.9225,-9.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.8,5.7],[125.7675,5.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.39042,59.948574],[21.649375,59.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.105,-16.05375],[-147.2525,-16.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.965,51.4325],[-8.66625,51.47125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.636406,53.467812],[3.34,53.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115.2,27.5],[-109.7,22.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.11,28.185],[-88.6375,27.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.05,37.3975],[5.2825,37.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9175,66.1725],[8.4825,64.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.58,59.23],[19.568906,58.975469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-0.985],[-120,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.5975,10.125],[-90.035,9.7125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.2575,-27.9625],[-40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.716875,26.199375],[-76.295312,25.939062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-101.135625,16.14875],[-99.84,15.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.045,10.6425],[-83.3525,11.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.07,47.0125],[152.2,43.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.991055,57.008027],[7.300078,57.165078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.68,45.5425],[-60.2175,45.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.48625,71.175],[26.46,70.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-29.0775],[-90,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.52,6.37],[-94.935,4.9925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.91,29.1725],[-13.3425,29.015],[-13.5175,28.9525],[-14.0625,28.750937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.040625,29.46625],[-88.785,29.06],[-88.93,28.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.4,19],[70,18.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.69,63.7125],[22.418438,63.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.22,32.245],[-78.5025,30.7125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.5975,55.2975],[-131.1925,55.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.4525,-37.735],[55,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.037969,10.012969],[67.1825,12.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83,57],[-87.3825,58.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.99,65.59],[-169.028437,64.741875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.825,-34.1575],[-6.2625,-34.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,4.2525],[-130,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.8875,30.3525],[-78.335,30.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.0875,59.405],[5.95,59.2975],[5.712761,59.027883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.612734,42.372891],[9.728066,42.124824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.735,59.8525],[-168.575,59.0425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.928555,36.400508],[21.169438,36.370593]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.764834,58.145391],[9.682773,58.456992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.826719,45.021875],[-3.872813,45.473125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.910625,35.455469],[26.253931,35.308711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.954531,4.022656],[72.075,2.7675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[87.4,19.625],[88.5525,20.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-50],[100,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.088066,49.74123],[-2.272012,49.962236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.295,40.44125],[-69.492402,40.297148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.245,55.3475],[-7.495,55.43625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.840806,41.531836],[9.84946,41.877839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,20],[-145.4,15.565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.79,35.0175],[30.631641,34.477109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.54,-54.67],[-56.6975,-57.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.435977,57.930264],[17.091133,58.451396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.474169,54.531771],[10.97533,54.54129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-50],[170,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.8175,-31.815],[169.995,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.693389,49.700889],[-4.343223,49.781855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.239062,35.773125],[24.948025,35.713745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.663691,36.420527],[20.92985,36.401459]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.739763,58.169515],[6.121537,57.878751]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.8825,73.67],[140.6125,74.58],[142.4925,74.5175],[149.71,72.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.17125,35.45375],[-8.458906,35.434766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,8.88],[137.3875,7.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.225,29.755],[-60,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.785,-49.0725],[-65.9975,-48.8175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.11771,39.019907],[26.152444,38.613633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,-37.8],[-180,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.47,-14.1825],[-173.6575,-12.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.085117,39.67123],[8.151791,39.333627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.935,30.3375],[-77.193125,30.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.614688,-9.172187],[116.44,-17.9175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.43686,54.020796],[11.269346,54.326816]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.4,41.2],[138.615,41.4075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.5725,-8.5525],[125.41875,-8.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.109297,60.063438],[4.840937,60.062812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-30],[-89.9975,-36.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22,33.3],[19.4875,34.23125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.749336,38.614609],[16.125,38.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.8175,2.4675],[79.1025,2.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,60],[-7.6175,61.94875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.7675,5.225],[126.01,5.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.864043,44.238911],[14.453618,44.371019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.24,-30.07],[-20,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.399375,65.4575],[23.751797,65.235781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.35625,15.36625],[-140,15.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15,-25.2775],[-10,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.3,41.9],[146,43.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.585,38.76],[18.6675,39.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[99.9,-1.4],[96.715,-4.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.9975,-33.1475],[-29.9975,-35.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.821562,64.618437],[10.40875,64.93125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.585,34.694375],[29.041562,34.546563]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-71.170625,-53.940625],[-70.875,-53.76]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.604922,42.797344],[3.459062,42.345313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,5.0575],[-130,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.2975,53.47],[-10.338125,53.749688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.668396,54.57032],[8.533193,54.311936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,21.29],[-151.255,21.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.80625,0.7475],[50,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,67],[8.46,68.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.354375,39.50875],[8.306465,39.121387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,30],[160,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.43686,54.020796],[12.087734,54.157578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.314688,36.95625],[23.62125,36.955898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.995,38.2825],[14.679375,38.454336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.8825,73.67],[139.2775,73.125],[149.71,72.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.3475,35.77125],[28.9125,35.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.37375,36.395],[15.54105,36.899026]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.7725,30.08],[-67.4025,30.0475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6575,54.469375],[6.172656,54.618281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-177.293437,54.639375],[-178,58]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.534102,52.231543],[-5.493437,51.875522]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.915,20.06],[127.0275,20.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.7975,34.51],[35.4075,34.509375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40,-39.62],[40.0025,-36.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.00375,-6.29125],[112.65,-6.9375],[112.175,-6.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.601875,42.577109],[5.489531,42.343281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.685,35.0925],[-125.085,35.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.781685,58.439336],[21.222227,58.222451]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.9725,44.6125],[-63.25,44.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[93.829609,-41.476016],[94.93,-41.2575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.300078,57.165078],[7.559668,57.22002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.62,47.541875],[-4.945703,47.458438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.740625,1.6625],[109.8,3.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.255,-19.0425],[177.105,-20.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.225,47.375],[-9.12,47.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.015,10.005],[-54.11,14.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.5275,-9.0925],[121.27,-9.1],[116.68,-9.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.685,-25.9225],[-125.003125,-25.136875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.1125,23.3],[-66.369375,20.040469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.613184,57.938828],[23.468555,57.56082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.25,51.4075],[-8.965,51.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.4,-37.69875],[155.2,-36.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.09,57.773125],[24.37375,57.31625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.073125,63.019375],[-20.76875,63.21125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127,-13.2],[123,-16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40,-40],[40,-39.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.5775,-3.0575],[11,-6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.7,13.4],[124,12.6],[122.1,13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.595547,-14.152734],[-168.33375,-11.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.127031,54.516719],[12.988867,54.780352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.366363,37.294783],[15.825781,37.147031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.2875,-53.69],[-40,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.6575,33.8475],[-125.085,35.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.851445,37.672402],[16.260469,37.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17,32],[16.4725,32.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.56625,38.69125],[-75.07625,38.80125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.1075,10.5775],[-87.99625,10.04125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.357454,37.90199],[12.006514,37.88418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20,-50],[15.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.70625,58.048125],[4.539375,57.721367]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.8225,56.6375],[12.416682,56.219017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.34,-13.8075],[-135,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.79,56.91],[2.985,56.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.796553,59.466914],[22.264751,59.307012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,-50],[-180,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-10],[-175.815,-11.6325],[-173.6575,-12.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.82,22.6075],[135.33,25.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.154512,43.383896],[-9.764063,43.115938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.72875,71.015],[23.684297,70.773828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.7975,29.77875],[-15.16375,28.8275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.725,35.665],[-68.415,34.2225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.94,22.4925],[-20.8975,20.8075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.250312,36.785],[17.1475,37.19],[16.73375,37.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.24647,51.492124],[-4.998125,51.699375],[-5.0875,51.6975],[-5.24647,51.492124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.927813,26.094062],[-91.539735,26.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.526992,43.320381],[15.236143,42.952451]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.034062,54.128125],[6.371504,54.071631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.633438,58.403125],[5.183804,58.639092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.195,40.7575],[-124.98,40.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.793125,70.055],[30.990781,70.305625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.7,-19.3],[166,-21],[167.693906,-23.070781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.6,34.2],[127.85,33.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.964453,58.246875],[-1.935547,57.981719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6225,52.62],[5.3175,52.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.6675,56],[-165.2525,56.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.5425,66.0125],[-79.1275,67.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-31.8375],[51.4125,-31.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.225645,60.79873],[21.160495,60.369147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.17,60.9425],[1.505,60.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.6175,31.85125],[31.585148,31.861387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50.54],[-20,50.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.671152,56.150957],[7.81043,55.711328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.8,-29.6],[-71.3,-23.8],[-70.8,-20.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.75125,57.02125],[-6.101406,56.646094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.3125,32.5675],[-125.795,33.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.7775,59.5575],[150.49,59.5175],[150.31375,58.58375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.8125,-33.7725],[115.1325,-34.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.171924,37.298304],[26.400735,37.541272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.058884,57.836154],[8.987852,58.151973]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.362632,39.363623],[14.681084,39.03606]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.5025,47.678125],[-7.01,47.501562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.07,27.35],[-73.960938,27.070625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.8975,32.5775],[-72.975,31.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.0025,42.755],[-50.0025,43.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86,61.1],[-88.9475,63.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.221523,36.770952],[-6.916562,37.175625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.2475,32.4425],[-55.3475,30.0875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.914062,62.431875],[5.655,62.52875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.33375,51.65875],[-7.974285,51.728042]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.27042,36.278008],[-2.419822,36.391848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.905,33.16],[33.11375,33.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.0025,-43.805],[73.59,-43.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.999688,10.354375],[-79.525,10.60125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.5275,41.92875],[9.612734,42.372891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.860312,54.820225],[16.9475,54.7325],[17.2825,54.775],[17.91793,54.895625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.4525,-3.19],[119.151875,-5.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.87,39.055234],[3.485586,39.055078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.081094,57.984375],[5.1825,57.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.61125,42.206875],[40.255,42.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.670859,65.557656],[-13.2775,65.28875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-37.735],[50,-31.8375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.154248,39.934648],[0.17207,39.607148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.2625,27.065],[-92.006563,26.254375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.5675,46.255],[-163.8175,46.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.669375,42.92207],[6.226973,42.812876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.9975,-33.92],[-13.4825,-33.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.417593,37.161409],[24.596785,36.850251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.422959,41.843896],[17.461641,41.581094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.30875,31.3475],[-14.7975,29.77875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.46,18.4125],[107.995,18.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.7825,-0.2125],[-42.5825,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.8725,-36.4275],[-155,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.365,26.6175],[-86.768125,26.300625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.54,-28.545],[-135.01625,-25.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.949375,43.999375],[-5.437812,44.098438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.4475,-5.6075],[-143.615,-3.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.5225,23.49875],[-73.14,23.20375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,40],[160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.6925,36.7475],[18.273047,37.273672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.7175,-20.5025],[160,-20.64125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.0875,37.07],[-14.6025,37.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.63625,31.319375],[-72.305,31.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,20],[127.0275,20.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.9775,47.44875],[-7.755,47.783437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.7975,27.605],[-94.415,27.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.899375,21.717266],[-84.9725,21.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.97533,54.54129],[10.67054,54.728424]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.867422,61.060391],[20.832734,60.783594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34,-26],[40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.59625,-34.270625],[17.26125,-34.13875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.9775,63.335],[1.985,64.58]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.9225,5.9775],[-24.595,4.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.1825,34.97],[138.09875,40.50125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.0975,-13.445],[152.72,-13.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.27624,41.837959],[3.525,41.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.356562,29.147813],[-89.494375,28.701875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.058884,57.836154],[9.592935,57.691311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.093125,64.510938],[22.549687,64.623906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.4,2.0225],[-48,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.548125,34.40125],[25.695,34.48375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.5,64.1],[-23.2975,63.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.003125,-25.136875],[-122.04,-22.09625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.82,28.885],[-140,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.554062,47.658906],[-3.999297,47.852695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.24647,51.492124],[-5.6425,51.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.04875,63.173906],[20.541406,62.844219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.4825,-8.1],[44.9775,-8.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.89875,46.202969],[-125.060625,46.1975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.483359,42.673984],[6.19,42.5225],[5.780332,42.32082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,-19],[10.73,-22.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.598486,44.278232],[8.733301,44.051143]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.485469,36.756875],[-2.419822,36.391848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-40],[74.3425,-35.9925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-10],[-144.1375,-5.9175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.3,0],[-106.345,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.584275,36.436831],[27.947437,36.525415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.182188,39.947227],[23.98375,40.315],[24.379602,40.247499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.931406,36.316367],[-4.732188,35.990938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.22375,43.8675],[-9.755,44.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.72,-17.3175],[140.6,-16.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[87.41,-17.5475],[86.99,-17.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.6625,59.246797],[17.760049,58.975605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30,-40],[35.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-40],[63.3825,-43.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.003125,-25.136875],[-126.42125,-23.68375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.397709,44.838541],[13.382898,45.325483]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.393438,39.832773],[8.151791,39.333627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.966875,-5.071875],[66.7075,-3.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.375,15.465],[-158.795,15.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.41489,39.184761],[25.553795,39.514287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.6875,70.7575],[0,67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.84,51.7475],[-164,53.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.8975,20.8075],[-17.97375,21.07375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.084434,42.953066],[8.430225,42.960469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.8525,50],[-140.041875,49.915625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.620312,59.264062],[3.100625,59.299062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.9975,0],[140,8.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,18.08],[-171.685,18.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-10],[-27.0175,-10.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.4,9.1],[170.9575,6.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.104453,56.332187],[4.751055,56.422891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.389609,56.83502],[17.969731,56.628496]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.8825,46.74],[164.1825,44.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.8425,34.94375],[27.73,35.22625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.99,52.4875],[-129.5075,50.9875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.964746,49.878513],[-5.100801,49.464824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.2425,1.2625],[-30.8775,0.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.149961,52.716133],[4.127988,52.351133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,0],[-100,3.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10,-40],[5,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.5525,56.26],[1.1475,55.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.255674,49.907744],[0.275746,50.442839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.81623,53.720801],[-5.995444,53.292515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.2425,64.1425],[8.8525,64.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.8025,34.685],[11.273125,34.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.032905,4.866694],[2.42625,4.97875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.183784,44.192361],[9.755635,43.946704]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.632383,38.555742],[11.40375,38.85625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,31.3875],[-140.0025,35.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.764375,56.762187],[5.220313,56.46125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.05625,16.585],[-61.5825,14.8825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,-50],[160,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.6,12],[-87.99625,10.04125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.440156,59.17311],[5.27375,58.90625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-40],[-9.9975,-35.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.296934,58.780742],[-2.897454,58.567219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-20,43.6375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.6,-5.2],[149,-7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.8,24.7],[54.44,25.6625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,20],[-132.075,22.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.89,-45.405],[-10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.505,-9.41375],[3.74,-9.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.512065,43.115015],[16.940898,43.284414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,22.7725],[-60.0025,24.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.195312,65.672344],[-24.469062,65.465625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[98.87,-8.8925],[99.9825,-8.4825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.415,41.74],[-160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.43875,40.0125],[-136.4375,40.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.1425,40.844844],[1.1225,40.7525],[1.114253,40.711815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.833696,37.470029],[-0.47,37.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85,-15.17],[84.28,-15.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.8075,11.11],[-87.295,11.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.835,40.89],[-132.405,40.07375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.549687,64.623906],[22.380596,64.274795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.76875,-18.77625],[176.9,-18.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.39,-33.925],[40.0025,-33.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.9,31.3],[123.66,31.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.844531,37.245937],[-10.613125,37.707813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[92.5075,-2.5425],[95.3475,-5.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,16.8525],[125.7,13.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.735,53.8075],[-37.115,53.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.186611,42.07395],[9.8279,42.364806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.8225,-4.9775],[53.6575,-3.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.9975,-47.12],[-80,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.192749,43.23022],[5.148335,42.885435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.1925,38.71],[-72.386719,38.994219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.36,0.94],[79.545,2.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.27709,61.27605],[18.972812,61.342813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.196875,54.7475],[-5.061953,54.614063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.355,-32.8225],[-49.1,-35.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.6225,26.14],[51.6,26.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.319315,55.488536],[7.115,55.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,30],[150,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.574375,56.152187],[-6.959375,56.04375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.439744,43.867473],[8.598486,44.278232]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.1975,58.78],[1.8725,58.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.455,-24.7225],[163.2525,-26.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,22.745],[140,24.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.790234,53.982109],[6.623047,54.214453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.17501,38.520723],[9.879062,38.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.21875,32.92875],[128.9,31.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.73375,37.345],[16.260469,37.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.8425,33.26],[-69.9025,32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.19335,54.792202],[8.196689,54.343059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.5275,-35.8725],[-110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.3,-1.5],[104.3775,0.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-40],[104.2425,-34.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.68957,59.970225],[24.625,60.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-20],[-165.06,-15.171563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.158611,55.906924],[16.419287,55.636387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.925938,70.0675],[19.79125,69.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.100801,49.464824],[-5.341704,49.829033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.118125,-18.09],[170.00375,-9.99375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.5425,-16.93],[0,-12.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-40],[-5,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30,-40],[26.056875,-34.52125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.262021,42.919814],[17.2725,43.0125],[17.1775,43.06],[17.262021,42.919814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.016709,37.527939],[26.921806,37.203799]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.96375,42.2375],[38.4325,41.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12,66],[11.3625,66.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.700071,61.24363],[18.423047,60.707695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.5,14.3],[-80.2975,12.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-24.3225],[-120,-23.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.915,-55.0675],[-35.805,-54.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.0275,20.67],[124.427188,21.252187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.739375,34.824375],[23.448125,34.724375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.619375,36.385625],[34.753047,35.780938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.36,25.6975],[-76.584375,25.955313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.406562,41.101562],[11.251514,41.357402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.899375,21.717266],[-85.39,21.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.793633,52.388354],[1.684258,52.086875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.97,41.323906],[19.395,41.2625],[19.038438,42.02125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.245625,39.653125],[12.989531,39.316641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.812754,40.071875],[24.731172,40.436016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.74,49.755],[-140.041875,49.915625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-40],[66.65,-43.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-116.1725,28.0075],[-117.49,28.6925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.923047,57.673516],[-3.089062,58.249453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172,-40.5],[160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.5525,56.26],[1.245,56.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.97625,35.36375],[-139.958438,40.086875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,21.14],[-40,27.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.967344,42.223594],[4.415,42.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.8925,34.785],[-7.986562,34.41875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.9975,-53.3075],[-89.9975,-54.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.1275,-26.3425],[-95,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.431328,55.567109],[16.875781,55.545547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.819375,43.974375],[-135.1125,45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.397709,44.838541],[13.720913,44.727219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.265,-31.175],[111.6625,-33.6775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.920566,61.413633],[21.340127,61.468494]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.906172,53.379531],[-3.634387,53.48209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.6675,53.7425],[-131.2,54.3],[-130.33,54.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.3475,39.68],[-132.09,38.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127,8],[126.4,10.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.241406,39.104531],[-0.077788,39.484043]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.817515,49.94198],[-5.915391,49.654951]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.95,1.7325],[-40,1.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.398516,51.237422],[2.126753,51.171348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.0025,29.07375],[-68.515,27.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-30],[-115,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,62.1],[-178,58]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-50],[-94.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.219375,57.79],[-6.22707,58.164531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.4925,14.1275],[42.053125,14.906875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.42125,-23.68375],[-122.04,-22.09625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.885,25],[-85.8525,25.8675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.891563,18.311563],[-64.7325,17.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.076912,58.656553],[10.343867,58.234727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.6725,57.675],[-45.2475,55.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94.87,15.085],[96.4025,14.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.0025,42.7075],[-42.6175,42.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.829219,47.7],[-5.795,47.1325],[-5.868203,45.435391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.58375,34.216875],[-71.07125,32.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.425,39.4175],[-137.8625,39.1275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-30],[-131.54,-28.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.867539,43.705039],[-5.9575,44.0875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.413242,37.735093],[25.602749,37.437231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.02,37.96],[-68.415,37.8275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.183711,54.135215],[14.423984,54.004385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.635,-52.4675],[-89.9975,-53.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.82,22.8825],[-109.395,24.5975],[-111.5,27.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.958125,20.08],[-38.035,22.0825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[77,8],[76.45,7.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.579688,15.480937],[-95.395,13.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.1975,4.085],[-85.74,5.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.515,50],[-41.8975,51.98]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.03,25.115],[-78.2,25.58125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.155,-5.56875],[116.95,-5.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.54625,-22.73375],[168.5575,-22.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.25,-26.295],[-42.2575,-27.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.235039,44.361328],[-9.3675,43.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.64875,40.2925],[3.02,40.200625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.9975,19.9975],[54.2,16.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.089531,49.997148],[-0.262402,50.295737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.7125,1.7375],[-41.485,2.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.478906,48.577344],[-6.882812,48.511875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.0375,19.0125],[-66.111719,18.575273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[151.855,17.79],[153.34,16.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.12,16.105],[-61.5625,14.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.796074,42.131953],[16.524257,42.029749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18,18.0225],[-18,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.2125,58.2375],[0.4425,57.9025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.0475,39.775],[10.9075,40.0975],[10.704219,40.423906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.315,19.915],[119.6675,19.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.384766,42.597266],[15.614771,42.803228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.262021,42.919814],[17.6325,43.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.090957,39.447441],[17.5775,39.815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.585,60.409688],[20.06875,60.39125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.328125,55.244062],[5.245566,54.889023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.248594,55.751172],[-4.903657,55.582739]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146,-44],[140,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.351741,65.977458],[-18.360742,66.294883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.4,-37.69875],[152.375,-34.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-40],[50,-41.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.783164,44.592305],[-6.84,44.29]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.589688,36.696562],[-10.286719,37.064297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.863027,43.62499],[9.755635,43.946704]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.77875,46.7575],[-50,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.6825,7.3175],[102.09,9.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.679063,36.326875],[-8.221875,36.569375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.64875,40.2925],[2.38375,39.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.7725,30.0525],[-140,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.531406,53.828281],[2.133906,53.819219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.4525,43.435],[38.855,43.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.23625,65.063438],[23.772578,64.575469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.6275,34.2425],[23.035,34.800625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.238955,38.558301],[13.608438,38.824062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.325,52.0675],[-138.9,53.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.44,4.495],[-44.77,4.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-32.38],[-105.5275,-35.8725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.546875,37.243125],[19.77043,37.811298]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.7875,-13.5525],[172,-14.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.8975,30.975],[-140,31.3875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.549297,3.524844],[-8.719492,4.111396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.24,28.825],[-77.5475,28.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.079297,39.135859],[9.705703,39.142422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-40.95,41.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-106.345,0],[-107.0175,1.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.695059,44.061152],[12.333612,44.573854]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.835,30.04],[-76.325,28.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10,-31.9275],[18,-35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.774492,52.210547],[-6.038772,52.23241]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-2.02],[50.955,-0.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.452798,37.190425],[13.360547,36.944023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[83.62,-33.935],[80,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.335,34.9425],[-7.986562,34.41875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.641016,58.810508],[21.581289,59.174766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.7525,8.53],[120.05,8.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.782939,54.533564],[7.418867,54.669844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.8875,-45.4025],[-130,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.33822,56.091329],[11.03021,56.313276]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[81.9,5.9],[80.1,5.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70,30],[-70.4925,29.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.615,18.42],[-64.891563,18.311563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.031875,5.0675],[67.3475,7.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-10],[-131.405,-11.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.844917,36.257485],[25.039025,36.476917]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.041562,34.546563],[29.3225,34.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.30375,28.42125],[-89.9,28.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.3775,20.5675],[-157.896563,21.191875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.6525,44.705],[-59.935,45.0625],[-59.3,46.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,32.97],[-27.09,33.1625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.0025,56.0575],[-36.50875,53.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.820273,48.182891],[-6.610156,47.673828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.69,2.7275],[-100,3.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-10],[-5.01375,-15.15625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.855781,58.365742],[18.97,58.680937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.960938,27.070625],[-73.95625,26.42125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.9375,11.4175],[-75.680547,11.515781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.061406,38.540312],[1.3625,38.46],[1.62125,38.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-20],[-110,-17.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.289414,58.611396],[18.430703,58.305273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.895313,42.259297],[4.58,42.51375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.366953,38.602578],[-9.13375,38.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.615,45.28],[-2.895,45.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.875,41.0025],[4.94125,41.256875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.969263,59.470547],[24.414375,59.496875],[24.692422,59.539893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.219375,57.79],[-6.707813,57.801992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.0025,55.6575],[-30,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.093125,64.510938],[21.7175,64.530723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.339854,58.181816],[20.4625,57.633437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.3425,35.5925],[-124.7925,35.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.363828,63.562969],[21.04875,63.173906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.954531,4.022656],[73.045,1.8275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.2775,37.3025],[-75.88375,36.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.4575,42.625],[-25.11,45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.78125,62.4725],[-81.9425,61.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-50],[-44.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.8925,6.9475],[124.6275,4.78625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.155,38.4775],[-11.245,38.830313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.0175,62.9475],[-32.7275,60.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.515,29.055],[-78.8175,28.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.295,15],[-21.75,14.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.64,14.9],[40.7025,16.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.470459,43.627012],[-8.618125,43.990098]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.416875,66.0275],[32.89,66.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.4825,45.205],[-14.29,43.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.360816,50.226732],[-4.58043,49.953359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.773467,42.591909],[16.288393,42.803041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.861943,53.343584],[3.636406,53.467812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.62,-39.3575],[-50,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.02,-2.6825],[117.72625,-3.48375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.49,37.405],[-74.43125,36.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.4175,34.1625],[139.426562,34.934062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-50],[150,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.8,-5.25],[-38.151875,0.00625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.0025,36.4475],[-33.9775,36.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.02,-31.9525],[169.995,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136,-35.5],[134.2175,-35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.252344,55.362188],[4.7525,55.5175],[5.07,55.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.863359,44.43959],[14.110454,44.132203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.02,29.99],[-89.356562,29.147813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.26,-10.0325],[-6.45,-6.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.902285,39.084922],[1.745,39.37625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.654375,40.162188],[3.514375,40.472812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-40],[57.5225,-37.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.870631,40.63457],[13.529766,40.492578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.197656,42.566328],[5.489531,42.343281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.235,34.0925],[-27.09,33.1625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.559347,36.195459],[23.533376,36.630793]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.863638,60.867437],[19.734531,61.2575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.7,24.3],[-82.065,24.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.4125,28.2225],[-89.11,28.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.605,42.415],[37.8275,43.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,20],[-124.4275,24.6925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.735059,53.634062],[6.790234,53.982109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.61875,37.72875],[-71.865312,37.523438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.03,35.105],[-67.6125,34.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.6375,32.64],[30.745469,32.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.04,-0.021875],[-42.5825,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.3925,38.7525],[2.87,39.055234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.706875,50.58375],[-10.818125,50.191875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.265,54.91625],[2.873125,54.61125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.0025,53.2275],[-30.965,53.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.12,10.21875],[104.89625,8.33125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.872813,45.473125],[-4.05,46.00875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.36625,70.36875],[31.40125,70.75125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.7525,41.3975],[-169.525,41.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.797266,39.375654],[0.385488,39.396094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.475259,22.085903],[-85.899375,21.717266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.811123,41.008486],[11.406562,41.101562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.9725,34.42],[19.59,34.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.430625,45.03875],[-7.710312,46.014219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.9,52.6],[174.14,50.6875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.187949,50.424773],[-1.532946,50.24703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.65,-1.3675],[-30,-5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.582109,50.710166],[-0.886562,50.420002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[77,8],[75.3,9.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.841563,34.8775],[25.64,34.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.458333,42.138639],[11.79,42.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.7075,63.03],[-0.9775,63.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.862277,55.907352],[14.648408,55.654375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.8875,11.3525],[-89.5975,10.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,-50],[115.1125,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.185,44.4925],[-55,45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-20],[-12.0875,-20.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.364736,45.269893],[12.68001,44.979209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.644219,54.943906],[16.860312,54.820225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.724219,48.938906],[-7.040312,49.085313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.7,66.98],[9.610625,67.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.1125,34.53],[23.92875,34.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,30],[-178.5,28.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.055508,60.824492],[18.958636,60.503345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.670596,42.432334],[15.40959,42.1446]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.23,64.86],[10.821562,64.618437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.634346,41.310195],[17.110371,41.430056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.5425,30.01],[-64.6625,30.0875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-112.9475,17.1925],[-113.6625,16.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.704209,57.733945],[-1.677383,57.45605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.7575,13.495],[-61.804063,11.961875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.78,-16.3725],[167.38,-18.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.05125,52.47875],[-56.9575,51.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.3825,-21.52625],[114.1525,-20.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.614771,42.803228],[15.921875,42.835938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.9525,-37.275],[40.0025,-36.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.272461,67.835117],[14.390703,67.332656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.6,34.4],[127.6,34.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.682148,54.308906],[14.43535,54.595088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,50.89],[-30.8325,50.8675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.0325,39.505],[-70.92,39.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,37.49],[-129.91125,35.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.395,1.2775],[3.77,1.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,39.61],[-130.3475,39.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.805,-54.175],[-35.02,-54.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.1125,-45.4025],[90,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-103.665,13.9175],[-110,15.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.237656,41.527344],[3.007187,41.191328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.2025,17.2975],[-23.5375,19.9875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.4525,-10.0325],[60,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.865312,37.523438],[-72.5725,36.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-20],[-80,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.93375,60.48375],[3.583125,60.046875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.314687,27.958437],[-77.14875,27.68125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.325,52.0675],[-141.1725,52.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-30],[-125,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.585,28.7325],[125.7875,28.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.610156,47.673828],[-7.01,47.501562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.203784,55.319097],[6.172656,54.618281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.05875,35.611875],[27.73,35.22625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.82,22.6075],[135.645,21.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.338125,40.725938],[12.617344,40.505938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.47,34.5525],[23.035,34.800625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60.4,22.7],[58.94375,24.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.32,45.2175],[-45.0625,45.36125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.0175,1.81],[-107.3475,2.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.995,37.92875],[-30.0025,36.4475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.2875,5.76875],[130.0125,5.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.4625,25.7075],[-90.5575,25.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.819993,42.138586],[16.168137,42.247499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.861943,53.343584],[4.82,53.79375],[5.020605,54.168008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.5,43],[-9.156367,43.561094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.181094,35.863906],[-8.543125,36.07875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.100625,59.70375],[-1.037559,60.133594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-21.41],[80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.89625,28.360312],[-18.30375,25.26875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.8375,-53.3125],[-40,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.001777,69.098027],[14.06,68.78625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.188125,53.085],[-10.08625,52.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.126758,56.210586],[11.725667,56.097224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.185,23.5625],[-85.95,23.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.615273,61.027617],[19.27709,61.27605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.88,-16.23],[153.0175,-18.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.154512,43.383896],[-9.644219,43.927656]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[97.395,76.225],[96.92625,77.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.354375,39.50875],[8.151791,39.333627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[63.99,8.5675],[65.055,8.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,22.7725],[-61.77,21.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.122656,56.799727],[16.769199,56.145088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.76918,54.977891],[13.622686,54.63365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.359688,32.521094],[135.07,33.19125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.536953,43.473828],[-9.3475,43.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.30875,31.3475],[-12.3325,31.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.2025,21.6975],[-71.705,20.8175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.671084,49.779092],[-6.724219,48.938906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.614199,35.457861],[25.306733,35.501705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.400781,37.014375],[-11.9625,37.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.897364,56.449147],[20.916562,55.968047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.42,-40.4475],[10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.2525,28.0125],[-73.0525,27.7925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.1425,32.065],[-64.3125,31.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105,-25.2775],[-110,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.700625,66.5775],[12.364375,66.279375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.439609,44.759141],[36.9325,44.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.8525,-26.0525],[-43.3925,-26.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9246,50.200186],[-1.839488,49.887781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.3575,66.1375],[12,68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.9975,-53.3075],[-86.45,-53.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172,-40.5],[160.52,-40.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.985,59.425],[-2.853438,59.061875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.638936,53.120352],[4.149961,52.716133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.630937,35.532813],[-13.245,35.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.45,-2.5875],[70,-5.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.948125,7.06875],[-79.2025,7.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.23,22.931875],[-86.475259,22.085903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155,25.2775],[150,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.995,38.2825],[15.26334,38.308379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.439922,51.202578],[-5.6425,51.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.09355,36.067437],[24.948025,35.713745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.491523,56.585137],[11.887881,56.8654]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.1825,63.8425],[-162.6125,63.6925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.921806,37.203799],[26.675459,37.484121]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.01418,61.979727],[17.719883,62.298301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-121.23,-1.2475],[-120,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.191396,37.289531],[11.43373,37.622539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.614771,42.803228],[15.964893,42.586113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.065,8.955],[-140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.213745,51.676665],[3.609661,51.431418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.971109,43.525058],[-10.0625,43.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.735957,51.249131],[2.786875,51.741875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.3225,49.7225],[151.0675,47.08],[146,43.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.720913,44.727219],[14.020781,44.73082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.317813,62.34],[18.39375,61.965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.995,-54.7725],[-83.865,-54.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.6475,-5.7025],[-105,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[99.9475,-5.455],[99.9825,-8.4825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.43,51.631875],[4.146562,51.80043]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.77043,37.811298],[19.92,37.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.772578,64.575469],[23.174844,64.334297]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[106.07,77.15],[106.48125,77.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.5575,64.0725],[36.6125,64.4825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.5225,69.1375],[15.444375,68.808437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.39832,56.198828],[-2.332227,56.713535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.237656,41.527344],[2.8625,41.455],[2.535918,41.327461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146,43.2],[147.5675,41.945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.43,29.925],[129.2925,26.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.357454,37.90199],[12.455278,38.316953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.430313,49.543438],[-2.776172,49.213906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.6575,36.654063],[34.68875,36.30375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.324062,61.500937],[18.098125,61.650312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,60],[-10.13625,58.46375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.4725,-55.0925],[-63.52,-54.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.79875,10.6875],[-61.804063,11.961875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.824063,43.32125],[8.084434,42.953066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.223125,43.2575],[4.520625,43.125312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.96079,57.473796],[11.106746,57.850391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.451094,41.242969],[6.6775,40.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.4,9.1],[167.534844,19.455625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,5.0575],[-110.9525,0.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.089531,49.997148],[0.01625,50.233125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.855,24.085],[-35,25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.325,-11.39],[-15,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.9225,2.9275],[100.4675,2.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.835469,40.160469],[1.46,39.675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.399687,59.02],[23.172656,58.85125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.568218,57.012427],[11.44844,57.330281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.429609,45.708789],[-2.36625,45.32375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-50],[-140,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.0375,51.875],[6.5975,51.58],[6.6375,51.5725],[6.802656,51.447031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.832734,60.783594],[21.225645,60.79873]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.5875,60],[-38.1975,58.2675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-14.2725,38.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.041875,49.915625],[-140.3675,50.74]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-30],[60,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.183804,58.639092],[4.70625,58.048125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.771719,67.683125],[13.52375,68.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.38,65.7025],[36.416875,66.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.717148,55.296562],[13.361342,55.229045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.6325,-36.2225],[160.0025,-35.68625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.545,40.5825],[-31.9425,42.0725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-50],[-2.805,-47.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.4175,45.1275],[-160.0025,46.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.7125,37.845],[0.345,37.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.177266,42.62418],[3.27624,41.837959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.1775,49.955],[-18.16,49.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.088438,42.554688],[6.483359,42.673984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.60125,-15.06625],[100.02625,-9.998125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.964375,9.9975],[-82.22,9.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.34125,17.7725],[-75.855,16.94125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145,5.0575],[150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.4775,12.525],[110.8075,11.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.690073,66.231504],[-18.360742,66.294883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.5675,55.55],[3.265,54.91625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.56625,38.69125],[-74.5325,38.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.0575,8.69],[63.99,8.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.31625,-10.54875],[174.1025,-13.19375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.333612,44.573854],[12.666816,44.676299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.4475,12.2825],[110.332813,11.999063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20,-40],[30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.379772,65.345373],[-23.60375,65.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.281719,49.017773],[-4.88041,48.924609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.775117,38.854687],[12.015625,39.81875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.449375,57.009375],[17.4875,56.965],[17.573125,56.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.80375,35.74625],[-74.4575,35.792812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.9975,-35.12],[-35.33,-35.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.5,-21],[-176.57,-23.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.278125,36.711875],[-10.589688,36.696562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.075,-35.355],[164.825,-35.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.26,24.5925],[160,22.42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.9075,34.275],[-72.8975,32.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.751055,56.422891],[4.497813,56.225313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.625,36.775],[-12.229375,36.69125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.565,4.6175],[-155,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.986465,58.350725],[10.911819,58.086389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.5025,22.8425],[-87.8975,22.73125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.1625,35.6325],[130.1825,34.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.656562,34.800313],[26.648818,35.316318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.34875,34.09],[-15.38875,34.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.3225,31.47],[-77.0375,30.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.288516,36.661797],[-1.38125,36.43125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.555,-19.0775],[116.66625,-20.19875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.053223,43.477959],[9.141162,43.092314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.013125,19.969375],[-48.19125,20.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.935547,57.981719],[-1.704209,57.733945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,10],[-33.1475,10.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.864453,54.674297],[15.336846,54.795952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.85125,28.66625],[-92.41,28.88125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.4475,12.2825],[111.4775,12.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.3225,48.305],[-15.0425,47.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.4825,64.915],[6.41875,63.015625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.3175,52.7275],[4.976875,53.05875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.0775,-6.13],[-135,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.446875,64.02625],[21.86125,64.29375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.5725,40.0975],[-50,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.791382,50.254956],[-5.955107,50.582607]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.0425,21.095],[-175.06,25.22]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.355,50.485],[172.18,49.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[62.2925,2.325],[65.031875,5.0675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.3975,58.3625],[-160.845,58.3625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.955,29.55],[34.673125,28.549219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.39875,60.99625],[-63.185,61.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.597188,45.826875],[-3.23,45.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.3,-11],[116.725,-9.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.0575,34.145],[-12.7075,34.73625]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-70.29,-53.61],[-69.5075,-53.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.1025,20.075],[65.095,18.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.100937,35.027187],[130.16375,34.34375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.469062,65.465625],[-24.209141,64.978984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.36625,44.495],[-2.5575,44.16625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.335,-0.725],[126.6875,-0.8125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.1,33.2],[14.54,33.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.29375,55.98125],[19.27625,55.71875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.269375,30.914375],[124.8925,29.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,0],[60,3.29]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-50],[-114.8875,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.336846,54.795952],[14.682148,54.308906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.32125,27.41875],[-79.595,26.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2268,36.042238],[13.615547,36.486328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.384766,42.597266],[15.40959,42.1446]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.595,4.65],[-20,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,10],[-134.0725,5.9825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.8175,-30.89],[-10,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.46625,35.9325],[-3.1125,35.91125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.986562,34.41875],[-8.165,34.185],[-8.3925,34.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.5,-22.9475],[14.345,-22.9025],[13.0875,-23.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.336777,43.792803],[9.483052,43.441766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.7425,55.5625],[17.431328,55.567109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.57875,27.81125],[-90.4825,26.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[86.455,13.7725],[85.155,14.4225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.6525,44.705],[-60.2175,45.2825]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-111.295,74.145],[-117.76,72.905],[-122.995,70.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.7,5.9325],[-83.0325,6.6025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.384766,42.597266],[15.670596,42.432334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.70375,28.1025],[-78.1825,27.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.7625,30.4175],[-71.4575,30.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.9375,36.4925],[-129.91125,35.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,-25.2775],[-118.05,-22.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.99,-13.905],[179.91,-15.75],[179.7325,-18.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.851445,37.672402],[15.366363,37.294783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.104375,13.241875],[42.5775,13.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.39,21.3125],[-84.9725,21.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.36625,45.32375],[-2.615,45.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.3,35.9],[145.31,40.3625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.613828,41.268682],[17.309222,41.237849]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.098125,55.050625],[7.049219,54.647813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.5,8.6],[-79.2025,7.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.712278,57.941782],[7.257485,57.945977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.656172,36.203125],[-12.644375,35.865156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.0125,60.2375],[20.257012,60.082168]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.0675,-9.3725],[170.7975,-7.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.855,29.59625],[-17.12375,32.668125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.45,40.7325],[-136.4375,40.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.8875,-45.4025],[-120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-40],[60,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.5475,25.2875],[51.8875,25.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.568218,57.012427],[11.235203,56.705232]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.397709,44.838541],[13.017197,44.858936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.675,65.9025],[22.69,65.885],[22.81,65.745],[22.774375,65.679375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30,-50],[20,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.62125,37.23625],[7.835,36.9475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.6675,33.19],[-122.6425,32.8725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.037559,60.133594],[-1.2375,59.45125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.3625,66.0525],[10.7875,66.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.3375,52.54],[14.455547,53.705625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.559668,57.22002],[7.604336,56.875566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.27,35.79],[-72.744375,34.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.7075,34.73625],[-9.495625,35.18125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.07,47.45],[-60.2,47.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.67,45.2175],[-6.068125,47.966406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.429609,45.708789],[-1.3975,45.21625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.22,32.245],[-79.2325,31.6425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.6775,51.7775],[3.213745,51.676665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.141562,61.29375],[20.50375,61.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.0075,-20.69375],[64.029375,-14.03875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.0175,10.010625],[-34.425,8.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.3575,54.48],[1.51625,54.099375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.196406,42.474375],[-10.47,42.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.75875,47.51875],[-132.4125,47.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.639375,67.904766],[15.784375,68.288242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.393438,39.832773],[8.354375,39.50875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.36,44.515],[-12.3975,45.0675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.7725,-15.07],[54.685,-14.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.581563,66.439922],[-16.5125,66.3025],[-16.45,66.3025],[-16.581563,66.439922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.99,58.3675],[-158.4125,58.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.4275,19.825],[120,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.56875,56.308125],[5.925,56.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.48208,54.170957],[14.005637,54.352508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.436563,35.03625],[26.253931,35.308711]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.915,28.17],[-142.5275,27.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.711875,35.864063],[26.943438,35.452188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.2525,20.665],[-107.184375,19.263438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.845,14.46],[-67.68,14.0475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.6975,44.82],[-136.3275,44.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.903657,55.582739],[-4.850313,55.943906],[-4.35375,55.880625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.995391,50.711562],[-5.662578,50.626484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.260498,38.426631],[13.790879,38.328535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.87625,41.055],[-13.53,39.5225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.419287,55.636387],[16.476875,56.010977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.008339,57.770645],[10.322949,57.882881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.04248,35.979863],[-6.350391,35.909531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.9325,47.445],[153.5975,46.16875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.912393,41.787236],[17.110371,41.430056]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.0575,35.1025],[-65.8025,34.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.910476,36.686746],[26.530674,36.614142]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.442869,63.090898],[20.541406,62.844219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.64,37.465],[8.97,37.3475],[8.9375,37.3375],[8.5475,37.305],[8.3575,37.2825],[7.62125,37.23625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.725,-9.46],[115.614688,-9.172187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.3,-1.5],[107.50375,-1.32875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.9,53.37],[-137.21,57.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.4875,34.23125],[19.3725,32.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.3375,36.63],[-75.079219,35.722812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,14.9975],[-153.0025,15.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.697578,54.295391],[15.519507,54.514373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.785,31.735],[-14.6775,28.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.480055,36.448539],[24.131104,36.23646]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.66251,40.987446],[9.923516,41.146836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.2925,34.13875],[29.650625,33.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.6,37.35625],[-9.32584,37.236904]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,8.59125],[69.675,8.68125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.089531,40.917109],[12.115781,41.194063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.269375,30.914375],[123.66,31.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.630937,35.532813],[-13.745,35.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,38.7625],[150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.69,-0.6875],[107.50375,-1.32875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.911819,58.086389],[11.106746,57.850391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.01625,-25.2625],[-140,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.89,65.7975],[6.4675,66.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.375,-27.635],[-30,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.2725,5.455],[73.815,4.8575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.987852,58.151973],[9.516328,57.951445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.68875,64.63],[37.6675,65.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.67375,60.906875],[-3.78625,61.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.680195,57.877598],[19.964844,57.582031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.66251,40.987446],[9.897813,40.441094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[77.755,1.285],[78.8175,2.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.680488,40.028066],[12.338125,40.725938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.6725,49.6525],[-10.589375,49.12875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.779694,56.930338],[8.7675,56.9325],[8.7,56.9525],[8.7125,56.92],[8.779694,56.930338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.065625,18.979375],[-77.595781,18.90625],[-76.938672,18.803281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.969375,59.31625],[4.613437,59.383789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.5725,35.3825],[20.5975,35.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.4575,42.625],[-25.565,41.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-30],[-135,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.040312,49.085313],[-7.094375,48.813125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.046392,53.582031],[1.27,53.24875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.6725,-4.05],[40.3,-4.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.6,15.7025],[-88.645,15.9825],[-87.7975,16.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.7975,16.25],[-87.63,16.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.72625,-3.48375],[118.4525,-3.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.757305,35.227305],[25.614199,35.457861]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,9.715],[-110,1.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.447247,50.7914],[-1.833379,50.535977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-40],[57.2725,-43.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.718486,57.654951],[11.382346,57.877431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.54625,51.26125],[-176.7,51.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[101.7525,-27.4925],[105.525,-25.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.876875,-5.670625],[116.95,-5.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-50],[60,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.54,33.4325],[13.8,34.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-30],[-85,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.574375,41.149375],[8.04875,41.220156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.752168,41.683691],[8.657148,41.25707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.489414,43.210635],[8.812148,43.212773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.379629,56.242959],[7.446348,55.897129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.1475,48.725],[-10.589375,49.12875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.6,-19.6],[119.69,-17.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.942051,64.684297],[-13.92125,64.09875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.905,29.6475],[-160,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.8125,40.445],[-73.5375,40.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,48.2625],[-52.77875,46.7575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.1475,-30.015],[-84.61,-35.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.104453,56.332187],[4.185,56.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.0025,-5.055],[-90,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.152488,48.913396],[-3.131587,48.801069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.77,35.4225],[-8.61875,35.21625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.225,31.2825],[-74.18,30.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.549297,3.524844],[-10,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.115,62.4625],[7.315,65.2025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.768125,26.300625],[-85.762656,26.469375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.965,53.2725],[-30.0025,53.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.3,61.86],[-167.2475,61.8275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.125,-37.135],[20,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.66875,64.559375],[-22.861953,64.063906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.61,16.7575],[134.1225,16.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.1,41.8],[40.61125,42.206875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.578906,56.432969],[-2.332227,56.713535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.59125,37.86625],[124.1,38.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.2325,31.6425],[-79.48,32.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.52625,35.04875],[27.0275,35.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.5775,38.815],[14.269766,39.131094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,0],[70,4.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.7325,46.0525],[30.755,46.495],[30.9,46.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.674375,45.144375],[-8.023125,45.86625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.12375,32.668125],[-17.71375,29.43375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.970518,42.269365],[-9.48793,42.629805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.315,11.265],[-70.64,12.8425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.42125,-23.68375],[-130,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.5,-10],[153.8775,-8.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.285,33.18],[-17.85,32.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.8875,36.2875],[-73.4325,36.11625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53,67.65],[53.12,67.6975],[54.365,68.26],[54.7525,68.9675],[54.495,69.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-10],[-80.24625,-7.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.1375,37.105],[-135,35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.5925,43.65],[31.7,43.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.11,45.405],[-37.185,47.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.8625,61.22],[-1.725,61.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.518125,59.256875],[2.73375,59.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.675,19.8],[-67.031875,19.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.7575,58.68],[-151.58,56.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.1375,-5.9175],[-140,-5.1275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.943125,62.992031],[6.34,62.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-20],[4.225,-19.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.0275,40.535],[-73.335,40.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.767363,65.032998],[-24.209141,64.978984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.995,18.295],[107.67,18.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.489414,43.210635],[8.714106,43.588721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.068125,11.07125],[-61.308945,11.344648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.7875,15.79],[-86.7825,15.8375],[-86.735,16.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.94375,46.18625],[-7.4875,46.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.726816,36.743547],[25.358799,36.8823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.2525,16.8475],[-78.3725,16.205],[-76.590625,15.750625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.195742,52.796914],[-5.534102,52.231543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.6675,65.5425],[36.416875,66.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,2.175],[-40.2575,2.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.3775,25.62375],[34.9175,25.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.58,0],[152.13625,2.15875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.16875,37.699336],[-11.456875,38.337187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.764834,58.145391],[9.516328,57.951445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.065625,55.589805],[19.515936,55.559141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.8775,-50],[-80,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.947939,40.484336],[1.1425,40.844844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.255,-24.51],[-160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.790469,60.022109],[23.003477,59.784258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.58625,30.37],[-79.2325,31.6425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146,-16.7],[145.86,-16.17875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.18,49.805],[170.6675,43.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.2625,59.335],[-2.853438,59.061875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.526875,61.0825],[1.9275,61.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.272012,49.962236],[-1.839488,49.887781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.739375,34.824375],[24.635,34.76]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,19.7975],[120,22.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.5575,37.1],[-73.625,36.50125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.93125,-4.59],[117.72625,-3.48375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.36,-37.5625],[45,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.1475,55.765],[0.7825,55.9825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.127031,54.516719],[12.85625,54.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,16.14],[72.4,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.668047,59.100625],[20.9125,59.30625],[21.237109,59.49334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.8175,-31.815],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.5475,10.55],[-50.015,10.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.69375,66.265],[41.5975,67.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.326719,66.054297],[-21.363437,66.349375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.5625,10.0125],[-162.4725,7.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.8225,30.04],[-149.02625,29.11125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.975,66.92],[-18.7175,66.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.8225,25.0225],[128,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[87.4,19.625],[85.8975,16.1775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.535,11.77625],[44.943125,12.02375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.709375,46.48125],[-8.023125,45.86625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.9975,27.485],[-67.4425,27.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,28.485],[-140,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.86875,34.49875],[-57.793125,32.43375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.0825,12.465],[-110,12.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.7725,48.7325],[-125.03875,48.51125]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[108.02125,77.73125],[114.24125,76.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.19335,54.792202],[7.939844,54.86375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.099512,38.77126],[7.863125,38.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.618125,43.990098],[-8.2475,44.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.4225,42.4375],[-125.1025,44.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.7625,30.4175],[-70,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.902031,50.647344],[163.1,54.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.9025,0.385],[172.615,-0.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.0025,-33.86],[10.0025,-33.5725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.471309,53.733105],[6.371504,54.071631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.61,50.7925],[-19.2225,50.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.6725,10.4],[-99.9575,12.7375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.90625,24.33875],[-69.0075,20.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.46,-11.935],[127,-13.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.305,51.775],[-156.33125,53.83875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.33595,52.879058],[0.498425,53.23605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.4225,-3.255],[7.505,-9.41375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.0775,51.505],[0.3025,51.464375],[0.565547,51.468008],[1.057684,51.571407]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.723438,43.980312],[-5.783164,44.592305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.3775,35.9225],[12.375,35.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.072593,57.741187],[-1.935547,57.981719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.585,43.61],[36.9325,44.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.2625,32.46],[-122.6425,32.8725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.135,31.71],[-65.795,31.86],[-64.804219,32.365684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.6875,28.4925],[-79.32125,27.41875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.535,41.2625],[-170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-50],[-114.8875,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.988711,36.006094],[-5.32584,36.043621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.91125,35.5325],[-130.0025,34.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.6925,36.7475],[20.554375,36.50625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.36625,70.36875],[32.3825,70.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.986562,34.41875],[-8.345,34.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.9075,7.8],[-50.015,10.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,0],[-165.31,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.103281,36.156094],[-69.725,35.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.8925,33.1425],[-77.56,32.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,62.1],[-177.3025,62.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.345117,36.432734],[-6.515518,36.735889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9275,62.23],[5.115,62.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.126465,48.693008],[-2.104375,49.138437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.205,26.9725],[-170,25.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.2025,21.505],[-74.91,21.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.100625,36.533125],[-69.6875,36.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.272012,49.962236],[-2.430313,49.543438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.9975,-48.8175],[-64.7,-45.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.32,43.37],[-125.2,41.58]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.4375,43.0225],[28.633047,43.456328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.714106,43.588721],[8.439744,43.867473]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.480625,-5.53625],[168.43125,-2.879375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-27.9225],[-20,-29.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.8475,-3.19],[-89.1025,-0.0975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-40],[41.645,-40.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.82875,35.99375],[-73.83875,36.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.325,31.4175],[-78.5025,30.7125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.28625,9.99125],[104.89625,8.33125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-20],[-30,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.454375,49.680156],[-7.040312,49.085313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.19875,56.086875],[15.557676,56.00498]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.160495,60.369147],[20.578652,60.157383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.32,59.455],[-135.0275,58.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.852773,42.782852],[5.780332,42.32082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.5725,42.6125],[-62.795,41.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.57,38.6825],[6.2775,38.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.5125,25.44],[63.3,24.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.6375,58.2875],[150.31375,58.58375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.4075,8.4375],[-27.63,7.6775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,20],[-125.335,24.945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.85,65.03],[-31.82,66.9075],[-24.4825,68.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.075,2.7675],[73.045,1.8275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.285,-10.0325],[53.9175,-6.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,10],[-137.76,10.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.905,33.16],[34.31,33.4825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.949375,55.080625],[6.6575,54.469375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-106.345,0],[-110,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.0625,45.36125],[-47.12,47.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.02,1.035],[-175,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.349453,49.402109],[-5.281719,49.017773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.8225,41.9775],[-10.81,42.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.76875,63.21125],[-20.048411,62.415458]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.566875,60.87],[-6.1275,60.58875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.555,-19.0775],[117.86,-18.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75,-53],[-76.24125,-54.92875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.725,59.190313],[-3.296934,58.780742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,29.5775],[-58.995,28.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.36,42.1575],[-65.465,43.24375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.439609,44.759141],[35.9525,43.8675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,40],[-55,35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.534102,52.231543],[-5.2775,52.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.74125,42.389531],[-8.970518,42.269365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.036484,39.93668],[23.295,39.65625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.0875,32.5075],[28.595,32.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.39625,-24.735],[-158.2475,-21.79625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.155,38.4775],[-10.83375,38.58875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.605,38.145],[-69.68375,37.495937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.017197,44.858936],[13.062852,44.548828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.665,16.0075],[-79.68,14.2075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.64,2.9825],[119.5,1.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.150059,36.720225],[25.039025,36.476917]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.1,-35.2],[-47.2475,-35.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.5725,35.3825],[22.2825,35.64375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.1025,-6.2925],[106.8,-5.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.73,20.775],[-145,25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.635,23.535],[-75.7025,22.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.565,56.855],[-134.4725,56.1475],[-134.9375,55.745]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[98.58125,77.52875],[100.54125,77.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.497813,56.225313],[3.934063,55.691875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.33375,-11.75],[-169.32,-10.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.40125,70.75125],[32.67875,70.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.6425,32.8725],[-124.685,35.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.306733,35.501705],[25.639219,35.727187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.895313,42.259297],[4.415,42.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.872813,45.473125],[-4.079219,45.319395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.9975,-35.845],[-160,-32.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.2075,31.82],[-74.7475,31.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.208242,51.472422],[2.461475,51.732637]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.44,1.46],[-140,4.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.2225,-23.0625],[5.0225,-25.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.128359,58.375],[18.326152,57.925352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5,-35.385],[-5.39,-35.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.52,36.3575],[-126.1875,36.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.37,33.835],[33.11375,33.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.44957,36.637656],[-3.782344,36.6025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.53,42.17],[17.422959,41.843896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.5375,40.25],[-73.780625,40.06875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.22,9.9425],[-81.1525,9.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,10],[-26.85,12.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.825,31.17],[33.7425,31.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.156807,39.539702],[2.219375,39.184766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.105,70.56625],[22.505,70.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.1825,-19.785],[55.6425,-19.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.9625,59.29625],[3.620312,59.264062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.522705,53.559409],[6.068574,53.441016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.4875,14.65],[158.375,10.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.99625,10.04125],[-88.1375,9.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,0],[131.4,-3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[86.11,0],[80,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.146875,63.775625],[21.363828,63.562969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.713926,49.025977],[-6.160938,48.760937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.0025,-33.5725],[18,-35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175,15.17],[-170,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.23,20.6575],[-22.8525,20.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.614688,-9.172187],[116.06024,-7.879388]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.66,58.8675],[-171.665,56.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.4825,45.205],[-16.51,44.8475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.040312,49.085313],[-6.822188,49.379688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.700625,66.5775],[12.622598,66.124668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.680488,40.028066],[12.617344,40.505938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.475,27.5625],[-95.7975,27.605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,20],[140,22.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.8225,54.541875],[4.705625,53.99875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.6975,50.885],[-7.608437,51.464687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.791904,43.008428],[15.384766,42.597266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.56625,23.625312],[58.94375,24.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.1375,-33.4125],[-20,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75,-15.17],[70,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.25375,50.665625],[-5.817515,49.94198]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.615,41.4075],[140.205938,45.177344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.6325,-35.035],[-19.9975,-35.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,20],[-121.8875,18.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.25,-39.3025],[-56.97625,-43.865625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.238955,38.558301],[12.775117,38.854687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.4075,20.35],[-67.675,19.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.2825,51.206875],[-10.706875,50.58375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.405,40.07375],[-135.45,40.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.2025,17.2975],[-30,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.8325,60.0475],[-2.100625,59.70375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.959365,42.216797],[15.384766,42.597266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.74,49.755],[-136.4475,49.0325],[-132.75875,47.51875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.9975,-54.0925],[-96.5,-53.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.5425,50],[-133.975,48.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-117.1775,-7.2275],[-114.025,-6.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.67,-41.3025],[-62.87625,-41.89625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[81.76,12.6325],[83.9775,11.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.874719,35.952957],[15.205,36.0225],[15.936445,36.140889]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.3475,39.68],[-132.1175,40.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.04375,43.778125],[-2.95,44.3525],[-2.924375,44.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.6225,29.6425],[-160,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.12625,66.855],[12.51,67.036875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.375,34.005],[-72.515,32.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.648438,65.283398],[22.405938,65.110625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141,-38.7],[144.3,-39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.0025,-11.7875],[-128.7075,-11.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.036562,12.6975],[-59.6825,13.049688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.598438,46.093438],[-2.94707,46.582813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.3475,2.69],[-106.1175,3.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.3725,39.4925],[17.219824,39.057051]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,0],[3.395,1.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.31,-16.09],[137,-15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.306465,39.121387],[8.099512,38.77126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.028125,38.784062],[11.110156,39.516562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.470957,56.224805],[18.70125,56.45125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.555937,58.307812],[2.4625,58.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.0775,3.12],[56.17,6.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178,-40],[175,-42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.885273,53.643613],[-3.906172,53.379531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.694688,66.196875],[-19.7425,66.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.45,7.4575],[70.82,8.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-40],[52.1425,-42.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.38,35.9075],[33,35.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.9325,44.245],[37.4475,44.380938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.4125,-31.535],[57.365,-30.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[101.7525,-27.4925],[103.395,-28.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.425,-25.5325],[10.33,-26.5375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.817515,49.94198],[-6.100781,50.228047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.010176,62.546152],[18.317813,62.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.69875,54.31875],[-3.260771,53.982871]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.7,24.3],[-84.6375,24.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.79875,10.6875],[-61.308945,11.344648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.4725,32.915],[17.3,33.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.0025,42.47],[-160,41.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-50],[0.0025,-46.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.45,23.3475],[-75.7025,22.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.342695,59.654473],[21.649375,59.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.867539,43.705039],[-6.16,43.6375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.395625,50.685],[-7.98375,50.07125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.6875,36.445],[-69.725,35.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.034219,58.747344],[-6.22707,58.164531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.265,-60],[-65.17,-56.00125]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[99.89,76.0025],[98.8275,76.4025],[98.58125,77.52875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.1425,-42.2875],[55.11,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.3925,-26.9425],[-47.6575,-30.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.870625,38.90709],[7.584219,38.998438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.49375,41.54],[-69.33875,41.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.711875,35.864063],[27.044585,35.922881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-40],[10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.3125,41.4],[-154.85,41.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1,4],[-4,4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.0025,5.06],[-100,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-50],[5.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.213575,36.382847],[19.19,36.35625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.213575,36.382847],[20.185,36.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.140859,56.027031],[18.470957,56.224805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.14875,27.68125],[-76.325,28.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.7375,34.4625],[29.495,34.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.089062,58.249453],[-3.0646,57.780654]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.2575,64.5875],[-169.028437,64.741875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.402129,35.471797],[24.125891,35.763713]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.163438,28.516562],[-15.89625,28.360312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.951172,56.088125],[18.470957,56.224805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.182188,39.947227],[23.814453,39.851016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.505,13.7675],[-30,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.0975,73.5775],[-78.8,74.1775],[-89.06,74.31875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.345,41.585],[-128.6875,41.2425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.179063,33.616875],[30.0925,34.2325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.855,-22.275],[-98.7525,-20.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.579616,43.766857],[-7.410937,43.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.2975,23.6],[-67.6375,21.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-8.2825],[-121.2775,-8.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.73541,38.340186],[20.645,38.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-22.6275],[-164.255,-24.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.125,16.52],[-158.7025,16.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.1825,57.6275],[4.9975,57.20125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.2075,49.73],[157.615,48.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-30],[-30,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.087344,39.546016],[14.379375,39.819375]]}},{"type":"Feature","properties":{"pass":"malacca"},"geometry":{"type":"LineString","coordinates":[[103.6,1.1],[102.9675,1.58]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.425,20.07],[-80.8825,20.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.4725,51.485],[-168.08,51.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.24,-43.63],[-86.535,-40.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.5775,39.815],[17.284863,40.23209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.6925,10.2],[-28.4075,8.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.185,61.39],[-60.2225,66.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.91125,35.5325],[-133.1375,37.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-20],[76.9975,-17.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.061165,63.013625],[19.393125,62.802188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.78625,34.46375],[27.4525,34.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.81278,51.167213],[2.126753,51.171348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,0],[-1.7425,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.085498,38.851016],[9.17501,38.520723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.9575,34.52],[-67.82625,33.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.37082,38.597422],[15.5396,38.345166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12,68],[9.9175,66.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.379772,65.345373],[-23.352881,65.077998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.864453,54.674297],[14.43535,54.595088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.862277,55.907352],[15.19875,56.086875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.609102,53.816172],[0.021406,54.307031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146,-44],[150,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.4175,37.4675],[-9.985625,37.286875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.98,54.65],[-134,55],[-133.695,54.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.27,-39.3],[144,-42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.531406,53.828281],[1.88,54.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.45,45.0675],[36.7725,45.543437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.62,56.5025],[4.104453,56.332187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.464531,58.669543],[23.175,58.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.8925,57.655],[-162.0925,56.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.305,27.4825],[-63.095,28.3625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.015625,39.81875],[11.465625,40.441563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.9,52.6],[172.355,50.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.225,31.2825],[-73.855,31.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.226719,37.613281],[21.390781,37.295625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.11043,62.380625],[20.790234,62.103242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.9,65.6],[-24.69,65.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.735508,59.94582],[5.955,60.0375],[5.99,60.06],[6.025,60.08],[6.13,60.18875],[6.2025,60.2775],[6.2725,60.3325],[6.4075,60.39],[6.575,60.4425],[6.6225,60.44],[6.6375,60.3275],[6.545,60.1025],[6.5475,60.0725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.253931,35.308711],[26.648818,35.316318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.21,55.465],[-12.1375,52.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.005,37.77],[11.43373,37.622539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.984531,59.386875],[19.00625,58.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.3,35.9],[150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.4,-37.69875],[160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.344766,47.284002],[-3.3825,47.2575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.44,-17.9175],[116.555,-19.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.6775,-25.775],[-42.8525,-26.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.57,38.6825],[4.779531,38.952188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.7325,0],[65.02,-0.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.350391,35.909531],[-6.6075,35.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.9825,63.655],[-20.76875,63.21125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.649424,64.811309],[-13.3825,64.80875],[-13,65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.685,42.5925],[-35.11,45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.115,50.02],[157.2075,49.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.93998,56.931621],[-2.332227,56.713535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.75875,39.19],[-13.151875,39.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.181875,61.661875],[4.1,62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.0025,15.17],[-47.43,17.565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,16.8525],[130,14.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.83375,38.58875],[-10.286133,38.606543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,28.2375],[-150.02125,29.221875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.4075,19.615],[-133.1575,20.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.55,7.305],[-88.91,5.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.930312,-39.90625],[-51.625,-38.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.5325,16.2325],[-58.675,14.8375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.2625,39.667153],[24.953335,39.817231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.555,33.6425],[-7.825,34.05875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.619668,44.030625],[13.784238,43.718418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.255,-32.225],[-49.5,-30.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.634863,37.840791],[11.932227,38.128867]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.592935,57.691311],[10.008339,57.770645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,0],[86.11,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.42875,11.495],[119.90125,14.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.42875,11.495],[119.94,12.895],[119.915,13.8625],[119.90125,14.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.9675,7.3125],[120.46,8.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,20],[-151.255,21.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.668396,54.57032],[8.380234,54.517422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.47,-25.7775],[70,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.02625,-9.998125],[105.09625,-9.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-112.9475,17.1925],[-114.09875,20.05625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.33,36.0725],[-11.3625,36.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.600625,30.1325],[-72.81,30.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.27625,55.71875],[19.097383,55.425762]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-20],[-96.27,-20.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.680195,57.877598],[20.019414,57.933047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.98375,22.9925],[117.76,21.98625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.9725,18.0425],[-75.565,18.588125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.72,7.9],[-79.948125,7.06875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.3625,29.6575],[-169.125,29.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.355,34.3775],[-74.9525,33.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10,-50],[0,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.701875,35.807187],[22.447139,36.088213]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.6675,45.24125],[-5.61125,44.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.5675,-36.9675],[160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.573125,56.775],[17.969731,56.628496]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.352881,65.077998],[-23.60375,65.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.279155,39.716597],[17.950078,39.889063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.9475,26.41625],[53.21375,26.34875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.0775,71.24],[-153.9575,71.98375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.69,40.9975],[-73.0275,40.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.115,43.261992],[7.521152,43.106621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.935122,37.151133],[11.550898,37.330234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.0025,52.69],[-41.8975,51.98]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.688661,50.350463],[0.275746,50.442839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.01375,-15.15625],[-6.619375,-16.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.322344,38.101406],[0.5375,38.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36,-24],[41.7,-15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36,-24],[36,-20],[41.7,-15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.363906,37.928438],[8.616875,37.915625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[103.945,0.0575],[105.0625,-2.17],[105.6875,-2.345],[106.1,-3],[106.8,-5.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.295,40.44125],[-71.1175,39.8125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.36,42.1575],[-68.445,41.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.9275,46.1525],[143.09,45.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.5325,38.02125],[135.455,42.2375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.342695,59.654473],[21.237109,59.49334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.06375,38.045],[8.363906,37.928438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.6975,42.775],[170.6675,43.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.9975,-35.025],[-15.385,-35.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.40125,70.75125],[32.0375,70.63125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.7925,35.7625],[-123.28625,37.22375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.4575,38.685],[7.7825,38.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43,-26],[40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.986875,38.405938],[10.464746,38.51334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.5825,-24.855],[-140,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.69124,59.906797],[19.735938,59.440313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.707686,57.088086],[20.117129,56.855566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.4075,40.7425],[5.564375,41.342695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.75,-55.43],[-47.3525,-52.7575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,13.895],[-124.1275,14.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.036333,37.603433],[12.181152,37.325801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.2475,55.4325],[-44.3275,54.5125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.95125,36.225],[28.283672,36.377031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-10],[-25,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.98,66.4175],[-14.462969,66.379375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.74875,-19.9075],[159.975,-15.495],[159.505,-11.18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.68,14.0475],[-67.185,14.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.324492,36.270234],[-7.288867,35.930859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.775,58.3375],[-0.11625,58.309375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.905,55.305],[1.58,55.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.191484,61.644063],[17.1125,61.7225],[17.2,61.715],[17.191484,61.644063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-40],[-30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.275,-7.25625],[113,-7.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.3375,-8.3725],[-152.6125,-7.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.382188,65.660313],[-21.326719,66.054297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.089531,40.917109],[12.406016,40.887422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.065625,55.589805],[19.766875,55.74875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.13625,-21.5175],[114.5,-20.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.335,19.9075],[38.6425,21.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,10],[65.037969,10.012969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.22707,58.164531],[-5.738125,58.746562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.808125,35.133125],[-74.4,35.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155,35.385],[-150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8,3],[2.42625,4.97875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.67375,38.82625],[-11.245,38.830313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.835474,55.509087],[16.126771,55.551044]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.924194,39.296875],[23.87,39.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.24,38.3275],[-26.425,37.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.196689,54.343059],[7.857422,54.187529]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.300833,63.439908],[20.710234,63.392363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-40],[-25,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,15],[-130,11.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.6425,58.3675],[-165.59,56.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.975,48.96],[-132.75875,47.51875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.528906,50.685781],[-6.4225,51.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.915,28.17],[-141.7975,28.3025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,-19],[7.25,-15.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.0625,-7.185],[-31.5125,-8.11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.4125,-24.6775],[0,-27.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.488379,36.032012],[28.283672,36.377031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.0025,36.325],[-20.08125,34.969688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.82,58.72],[13.1975,58.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.6425,-16.635],[153.7475,-13.1275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.2225,66.865],[-71.635,72.3625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.111875,41.577813],[8.356279,41.171138]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.5575,-17.795],[0,-14.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,20],[140.010625,17.688125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,10],[-125,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-30],[-95,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.105825,51.965063],[2.461475,51.732637]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.92,32.83375],[30.38875,32.23625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.113934,37.874624],[17.111562,38.624531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.988867,54.780352],[12.961738,55.108965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-30],[-135,-30.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.1475,34.3375],[21.47,34.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.8975,-33.15],[-94.4175,-30.0825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.4525,-3.19],[118.02,-2.6825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.9025,32.4175],[-13.0575,34.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.543809,58.56166],[17.874526,58.542886]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.17375,-45.68875],[-50,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.805,35.4525],[-74.4575,35.792812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,30],[-55.3475,30.0875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.9625,37.095],[-11.64625,37.066875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.796074,42.131953],[17.16127,42.462773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.985,64.58],[4.89,65.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.874727,54.636172],[-5.633505,54.731068]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.2,33.025],[16.1975,33.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.41,28.88125],[-93.21625,29.19125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.636563,56.349375],[-7.156641,56.687109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.99,52.4875],[-130,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.345,34.3],[-8.8225,34.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.75,0.8],[172.73,1.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.7975,43.0875],[32.46,42.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.559629,35.929512],[14.874719,35.952957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.3125,-33.9525],[-47.355,-32.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.7975,43.825],[-3.04375,43.778125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.48186,36.060669],[25.09355,36.067437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.9254,39.568506],[25.2625,39.667153]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[146.4375,19.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.37,69.995],[57.55,70.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.43875,51.8225],[-6.949141,51.602773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.78375,12.53],[-79.999688,10.354375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.08,21.84],[91.821875,22.303125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.714255,50.318742],[-4.360816,50.226732]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.168137,42.247499],[16.524257,42.029749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.73,1.07],[172.915625,1.430625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.995444,53.292515],[-5.859038,53.012542]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.24625,-15.27875],[173.12875,-13.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.539735,26.185],[-92.006563,26.254375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.169438,36.370593],[21.663691,36.420527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.9,28.285],[-89.494375,28.701875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.39,41.7275],[-169.525,41.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.979445,55.601803],[10.95052,55.873606]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.6075,18.9025],[120,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.014063,59.174375],[23.172656,58.85125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.29,27.3],[123.195,27.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.894189,42.729214],[17.851562,42.47875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.465,17.62375],[-85.899375,21.717266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.765,-14.63],[-30,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.43375,39.995],[-69.08875,39.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.190925,56.319414],[16.158611,55.906924]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.512065,43.115015],[16.6975,43.1675],[16.7075,43.1825],[16.512065,43.115015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.332246,41.00998],[1.114253,40.711815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.023125,45.86625],[-7.035312,46.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.83125,64.0325],[-14.2625,63.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.46,39.1825],[-70.83625,38.815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.8375,57.162813],[5.764375,56.762187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.792734,43.166094],[4.520625,43.125312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-50],[-30,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.94375,46.18625],[-7.83,46.3275],[-7.709375,46.48125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.855,34.50625],[32.364395,34.57127]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.7475,-13.1275],[153.0975,-13.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.8725,-17.2675],[162.365,-17.76]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.51,0.345],[-89.8575,0.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.08375,47.000156],[-5.0425,46.6375],[-4.829688,46.004688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.4375,-37.635],[100,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.237109,59.49334],[21.581289,59.174766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.7825,38.66],[7.56625,38.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.73541,38.340186],[21.02543,38.445742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.871875,35.83375],[-11.7125,36.11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.5775,-7.375],[80,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.63,21.8],[91.3325,21.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.77,60.145],[-140.3775,59.305],[-137.5125,57.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.695,-7.2925],[116.83,-6.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.029453,55.885625],[11.725667,56.097224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.665,36.025],[27.584275,36.436831]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.1675,-28.27],[-20.6275,-29.4075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-10],[-130.0025,-11.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.788125,41.56875],[17.613828,41.268682]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.107246,56.027568],[-1.955,56.259375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.334453,52.254629],[-6.693281,51.971836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.615273,61.027617],[19.527812,60.725469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.566875,60.87],[-6.3025,60.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.09,33.1625],[-21.535,33.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40,-40],[35.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.0875,-20.03],[-10.795,-20.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.475259,22.085903],[-89.8,22.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.817515,49.94198],[-5.52375,50.09125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.725,50.285],[-12.4775,50.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.88,54.01],[2.133906,53.819219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.3025,31.105],[-64.8925,30.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.7975,60.946875],[4.146172,60.864141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.997742,51.438762],[3.213745,51.676665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.68875,36.30375],[34.753047,35.780938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.141562,61.29375],[20.682969,61.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.343838,55.146855],[15.034449,55.423906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,34],[13.2575,35.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.13,37.830625],[7.505937,37.529688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.975,31.6325],[-73.036875,30.944375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55,-35.385],[60,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.21,57.7225],[-135.8375,56.74]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.0025,52.1875],[-22.4075,52.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.8,-5.25],[-32.5075,-3.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.617344,57.609609],[17.878408,57.549116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.0025,-5.055],[-90,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.330625,42.590312],[3.967344,42.223594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,0],[92.5075,-2.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149,-43],[146,-44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.929375,41.290625],[6.451094,41.242969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.613437,59.383789],[3.9625,59.29625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.59375,50.1575],[159.1075,48.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.891563,18.311563],[-66.5925,17.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.3475,61.125],[-146.95,60.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.655,63.4775],[-16.225,63.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.155781,40.845312],[25.303721,40.320674]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.2525,16.215],[40.7025,16.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.585,6.26],[114.3725,6.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.251458,43.390162],[10.269326,43.036865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.145,55.545],[142.9375,55.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9825,60.489453],[4.707583,60.778877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.19,7.2425],[-170,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.7425,53.1325],[141.53125,52.8375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.1625,-36.1575],[36.39,-33.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.847383,40.304961],[23.036484,39.93668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.8,-29.6],[-74.255,-24.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.283398,60.16582],[25.551523,60.138984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.867539,43.705039],[-6.579616,43.766857]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.3625,-10.0275],[-150,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.4425,8.8975],[-81.08375,8.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.543535,55.029609],[16.659565,55.258401]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.943711,56.542969],[19.147813,56.902109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.14,22.9075],[65.725,22.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.62,-33.275],[12.5,-28.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.476719,58.596914],[-2.166709,58.630734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.74,40.645],[4.94125,41.256875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.257798,53.639539],[-2.984102,53.374102],[-2.3075,53.475],[-2.2975,53.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.493164,59.836953],[4.613437,59.383789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.48186,36.060669],[24.948025,35.713745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.0025,34.9275],[-129.2525,35.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.04375,65.665937],[-20.652344,65.973594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,30],[-133.2075,33.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.008125,26.146875],[-130,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.885273,49.620723],[-0.224844,49.425376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,10],[160,8.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-174,-3.8325],[-175.0975,-4.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.3575,29.595],[32.63125,29.70375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.583125,60.046875],[3.854609,60.086406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.0475,20.7875],[-67.6375,21.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.9525,43.8675],[36.3975,44.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.960415,54.927198],[11.169886,55.165555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.58375,34.216875],[-72.2875,34.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.85,32.15],[-19.96,29.978125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-40],[70.0025,-36.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.614688,-9.172187],[113.47,-21.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.89,-45.405],[-90,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.835469,40.160469],[1.429688,40.173281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.7475,-23.5425],[-120,-24.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-60],[-24.375,-55.1025],[-20,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.375,35.925],[12.756484,35.875937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.21375,58.65375],[-1.778125,58.673125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.035,35.92],[123.12,35.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.8875,28.225],[-92.538125,27.859375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.6,24.3],[63.3,24.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.2475,-8.7],[106.66875,-12.7925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.2525,20.665],[-104.7,18.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.35,30.05],[130.9,31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.89875,21.4575],[38.4975,21.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.782803,50.104521],[-4.964746,49.878513]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.5325,-23.505],[167.9125,-23.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.026172,36.29752],[13.403125,36.260625],[13.73126,35.998975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.1125,9.1325],[160,8.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.897364,56.449147],[20.867578,56.756875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.357454,37.90199],[12.432461,37.567847]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.095,24.40125],[-82.7,24.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.305,2.175],[-104.3,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.73875,48.4325],[-122.451875,47.8675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.7025,57.825],[-17.06,57.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.827188,60.22875],[28.203906,60.118125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.89,49.391719],[-2.088066,49.74123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.635605,36.824463],[13.360547,36.944023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,-5.0575],[-166.6,-3.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.7325,-35.2075],[-49.7775,-36.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.185,1.95],[53.0775,3.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.7825,55.9825],[1.245,56.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.94125,41.256875],[5.05,40.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,13.365],[-26.2025,17.2975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.90436,57.051143],[7.915801,56.669648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.910625,35.455469],[26.018335,35.684702]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.055625,38.621875],[10.464746,38.51334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.688125,35.751563],[-6.8275,35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.14457,39.892959],[18.896309,39.95124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.435,8.465],[-137.76,10.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.75431,42.72792],[8.363936,42.587884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.17,-56.00125],[-64.7975,-55.9375],[-64.22125,-55.82625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.003477,59.784258],[22.796553,59.466914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.8575,0.7225],[-90,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,20],[-30,20.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.01625,50.233125],[0.275746,50.442839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.3475,7.3275],[68.9625,5.7925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.8175,46.5675],[-167.3375,47.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.0025,-43.805],[70,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.288867,35.930859],[-7.719063,35.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.7175,51.5175],[-8.338203,51.584414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.15,65.9625],[-171.7125,67.2175],[-179.4475,69.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.48793,42.629805],[-9.301797,42.146035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.9675,14.5825],[120.63,14.445],[119.90125,14.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.7975,43.0875],[31.7,43.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.9825,31.1075],[-40,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.7275,60.8925],[-27.505,62.74]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.7175,64.530723],[21.86125,64.29375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.834141,57.728828],[21.096387,57.439023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.73126,35.998975],[14.2268,36.042238]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.97625,35.36375],[-140,39.5925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.4475,50.47625],[-16.1775,49.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.6,20.9325],[-85.899375,21.717266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.649375,57.014063],[-5.75125,57.02125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-106.8325,-3.2075],[-105.37,-2.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.789692,44.880322],[14.526071,45.198754]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.1825,12.66],[70,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.72402,54.964635],[16.06113,54.763171]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.083315,56.214521],[17.42,56.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.312812,63.477187],[-19.72375,63.4375],[-19.41,63.3925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.766875,55.74875],[19.27625,55.71875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-31.8375],[50,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.7525,34.08],[-137.7775,32.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.76875,-18.77625],[178.525,-18.294375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.745,39.37625],[2.219375,39.184766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.875,55.8575],[9.9625,55.85],[10.116628,55.70395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.770117,38.031641],[20.73541,38.340186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[99.9475,-5.455],[104,-7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.8,13.305],[-93.97375,12.928125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.84,51.7475],[-158.305,51.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.295,42.205],[36.3925,41.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-30],[80,-21.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.615,74.7825],[9.175,74.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.52625,35.04875],[27.73,35.22625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.921875,42.835938],[16.004674,43.208229]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.155,-25.4225],[160.0175,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.75125,28.85],[-84.6525,27.5825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.85,-29.3325],[61.1075,-28.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0175,-30],[163.2525,-26.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.83125,64.0325],[-14.302969,64.491406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.5975,32.0975],[-128.525,31.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,35.385],[-160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.432461,37.567847],[12.181152,37.325801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.85,3.8975],[-165,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.115,62.4625],[4.1,62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.3625,-10.0275],[-144.62,-6.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.2725,73.7425],[76.2275,73.7175],[78.425,73.23],[78.8625,72.585],[80.735,72.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-14.8875],[0,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.9125,-32.2825],[-54.615,-35.24875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.9975,34.3825],[164.325,36.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.561875,39.82],[3.485586,39.055078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.86,33.33],[-17,33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.077656,41.655078],[11.075752,42.085078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.126279,56.452363],[19.831406,56.232656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,30],[150,38.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.8775,2.9175],[-41.485,2.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.8,58.44],[1.555937,58.307812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.842695,39.815234],[14.087344,39.546016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.02543,38.445742],[21.132402,38.087119]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.995391,46.2175],[-2.597188,45.826875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.68375,37.495937],[-69.876484,37.227344]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-96.415,74.2975],[-96.075,71.8125],[-99.1875,70.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141,-38.7],[144.27,-39.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.450625,57.80125],[21.55375,57.949766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.9,-1.4],[-48,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.8025,34.1425],[-66.515,35.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171,-46],[169.5,-47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.427188,21.252187],[123.505,25.56]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.285313,50.158047],[0.995137,50.41293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.0025,46.72],[-40,48.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.0375,56.485],[-11.893438,58.392813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.89875,45.1325],[-5.868203,45.435391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.58,42.44],[-168.3475,41.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-20],[-86.3375,-16.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.925,18.69],[58.9975,19.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.429063,34.71375],[33.173674,34.625574]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.6675,19.4225],[116.6375,18.1675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.197656,42.566328],[4.895313,42.259297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.4275,42.895625],[33.8475,43.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.1275,14.35],[-120,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.8475,44.794375],[-5.783164,44.592305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13,65.32375],[-13,65.9225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.5375,19.9875],[-23.23,20.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.17125,35.970469],[-9.395,35.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-40],[80.0025,-34.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.491523,56.585137],[11.525957,56.332773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.5375,14.85],[-68.315,15.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,30],[-174.28,34.6525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.0025,42.7075],[-40.0025,46.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.875781,55.545547],[17.249531,55.384531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.164375,5.336875],[-11.51375,5.51625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.82,24.4325],[-164.245,25.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.52,27.66],[49.255,27.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.9925,37.91],[-10.613125,37.707813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.49,69.9125],[33.565,69.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.1825,43.66],[-76.39,44.1075],[-73.54375,45.50875],[-73.04,46.12],[-70.8875,46.9175],[-68.73,48.7025],[-65.48875,49.79375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.72875,71.015],[23.443125,71.11375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.1975,37.1025],[125.5,37.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.035,9.7125],[-93.21,10.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.691875,39.080313],[17.4625,38.922813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.6175,42.7975],[-47.4925,42.8075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.1,-19.1475],[-100,-16.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.965,55.0575],[4.252344,55.362188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.325767,51.642944],[1.542988,51.866641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-40],[-166.1175,-36.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.994258,43.911279],[-8.279375,43.810625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.366875,32.474688],[16.4725,32.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.554375,36.50625],[18.925,36.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.11125,53.231875],[-9.390234,53.119766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.8125,48.97],[-10.589375,49.12875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.2025,7.665],[-78,3.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-40],[179.5825,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.873555,42.995273],[4.58,42.51375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.164375,5.336875],[-9.1325,4.3175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.155,57.743437],[21.403125,57.536953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.635,6.4175],[130,9.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.8975,30.345],[122.225,29.8375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.703306,36.368428],[25.806328,36.032734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.17,54.125],[1.51625,54.099375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.595,-45.7275],[-60.5425,-45.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.600625,61.94375],[18.01418,61.979727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.639375,67.904766],[14.390703,67.332656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.7,-5.85],[121,-5.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.973813,36.431958],[23.245981,36.202173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.6125,34.7425],[-67.0575,35.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.136162,62.23126],[21.133125,61.823125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.9875,1.0075],[107.3,-1.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.068574,53.441016],[6.735059,53.634062]]}},{"type":"Feature","properties":{"pass":"bering"},"geometry":{"type":"LineString","coordinates":[[-169.15,65.9625],[-169.028437,64.741875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109,16.1],[111.83125,16.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,41.4325],[-140.0025,45.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.27918,46.081191],[-1.16,46.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.753125,40.67],[4.06875,40.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.559844,40.921289],[2.535918,41.327461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.061875,-11.35375],[116.725,-9.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.66,30.03],[150,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.5225,58.1325],[150.9,58.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.97375,12.465],[-54.11,14.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.6125,63.6925],[-164.5275,63.25],[-165.0025,62.6625],[-165.64,62.7925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.058884,57.836154],[9.011016,57.479687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.0025,34.83],[-53.6,33.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.87625,-41.89625],[-63.9,-43.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,40],[-130.3475,39.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.7675,27.9775],[-84.6525,27.5825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.8425,18.9575],[72.8,18.855],[72.4,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.722383,36.033086],[-3.46625,35.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.635117,43.933633],[14.771665,43.637942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.118125,-18.09],[168.321875,-17.78],[169.265,-17.07625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.039025,36.476917],[24.791707,36.625627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.78,69.30625],[15.001777,69.098027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.91875,36.6425],[30.99,36.340625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.262812,60.569375],[-1.037559,60.133594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.936484,40.904687],[2.128066,41.129287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.9975,-53.66],[-40,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.623086,40.538965],[18.271719,41.101719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.419526,59.931455],[19.69124,59.906797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.5225,-26.7625],[0.0025,-25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.80375,36.799375],[-73.815,38.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.41375,40.909375],[8.356279,41.171138]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,43.6375],[-18.2025,42.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.771665,43.637942],[14.507051,43.373496]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.691743,57.919163],[6.121537,57.878751]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.665,16.0075],[-79.2525,16.8475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.072593,57.741187],[-1.704209,57.733945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.39875,51.28125],[141.53125,52.8375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.29,30.2325],[-85.775,29.8375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.795,41.53],[-64.6325,41.2225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.257012,60.082168],[20.2725,60.25],[20.255,60.3275],[20.06875,60.39125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172,-40.5],[172.545,-40.0325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.6,-6.3],[122.8025,-6.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.9475,50.94],[143.4325,54.575],[142.33,55.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.5,-20.9],[161.92875,-20.61625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.847197,47.9571],[-4.471982,48.234314],[-4.973813,48.334272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.28,40.2975],[-141.545,41.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.066029,50.901753],[1.494547,50.852914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.3125,41.4],[-150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.8,-5.25],[-31.5125,-8.11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164,53.8],[-163.255,51.6825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.435,36.83],[-40,37.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.055625,38.621875],[9.499775,38.82457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.4,17],[119.565,18.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.0825,35.3475],[-16.82875,34.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.498425,53.23605],[0.205,53.5025],[-0.290234,53.687109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.1,-3.7],[123.7375,-2.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.256563,35.358438],[28.05875,35.611875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.61875,33.57875],[27.978125,33.243125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.825639,55.203441],[-5.633505,54.731068]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.117031,50.880625],[-8.135,50.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-148.82,21.2525],[-145,25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.793129,59.024679],[10.368342,58.619362]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.060703,57.296289],[17.969731,56.628496]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.619668,44.030625],[13.4125,44.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.085117,39.67123],[7.660469,39.537188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.706875,50.58375],[-11.24,50.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141,-38.7],[140,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.8675,0.015],[3.395,1.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.185,14.27],[-66.8325,14.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.615,-35.0175],[-13.4825,-33.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.415,27.2325],[-68.515,27.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,0],[-154.565,4.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.248164,42.088457],[8.111875,41.577813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90.103125,-19.976875],[96.2075,-24.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.374531,39.867656],[13.245625,39.653125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.179063,33.616875],[31.37,33.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.958438,40.086875],[-148.9275,41.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.019263,43.120522],[10.269326,43.036865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.32,51.9625],[-20.0025,52.1875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.2625,-34.0625],[-8.93,-31.1625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.296922,53.03798],[4.638936,53.120352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.6175,61.94875],[-7.0275,62.43125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.902031,50.647344],[155.3225,49.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.0825,64.69875],[-24.209141,64.978984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.175,39.3825],[-30.0225,38.948437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.86,-33.4125],[10.0025,-33.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.3375,47.0575],[-165.6225,50.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.863437,47.920781],[-7.01,47.501562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.921318,52.701387],[-5.56,52.805469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.255,-32.225],[-51.8,-32.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.075,22.2],[-135,25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.1325,66.32],[14.0075,66.2875],[13.64,66.24],[12.964219,66.197344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36,-24],[43,-26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.7,-45.7225],[-61.595,-45.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.31375,58.58375],[150.9,58.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.589375,49.12875],[-9.04,49.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.22125,-55.82625],[-61.1925,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.091133,58.451396],[17.543809,58.56166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.150937,15.625312],[-70.68,15.01625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.316875,26.375],[-79.8,26.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,50],[-162.795,50.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.111875,69.78125],[46.655,69.8425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.1675,50.4075],[-11.725,50.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.93,-31.1625],[-10,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.193125,30.3525],[-77.8875,30.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.93,47.8675],[-15.0425,47.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.89,26.7925],[-79.91125,25.885625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.04418,57.309346],[19.147813,56.902109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.649277,55.753359],[20.585,55.504375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.8375,16.7075],[-164.775,14.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.0025,33.34],[-55.86875,34.49875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.010625,17.688125],[140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.5275,-18.02],[169.265,-17.07625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.8,-20.2],[-71,-18.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.452166,46.863257],[-2.934687,46.844551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.5625,40.49],[-28.585,41.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.4725,28.105],[-88.0275,28.115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.4575,39.45],[-20.73,39.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.46,-20.405],[156.0425,-19.1775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[87.08,14.7425],[88.9725,13.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.492402,40.297148],[-69.43375,39.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.535,47.885],[-10.4625,46.945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.174844,64.334297],[22.9325,64.130938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.28,52.05],[-50,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94.68,8.81],[95.2425,10.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.38,-2.7475],[107.3,-1.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.160938,48.760937],[-6.458203,48.838672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.0925,49.3875],[140.6125,46.6725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.997742,51.438762],[2.735957,51.249131]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.609102,53.816172],[0.906953,54.030547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.971714,36.178628],[27.206715,36.450522]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-5.0025],[70,-7.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.635,72.175],[-142.3375,72.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,48.695],[-31.7825,48.3975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.758359,55.537734],[18.57375,55.78625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.715781,19.805156],[-66.373125,19.325625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.4,9.1],[165.6725,9.2025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.8175,-27.3375],[-20,-27.9225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.680625,30.52875],[-68.5575,30.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.5775,38.815],[14.0425,38.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.494375,28.701875],[-88.93,28.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.500703,55.30668],[18.239062,55.553359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.415,27.7025],[-92.006563,26.254375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.538477,40.746328],[13.529766,40.492578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.179648,53.560078],[0.1075,53.57],[-0.290234,53.687109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.091133,58.451396],[17.03,58.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.2825,32.6875],[121.7775,32.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.9475,26.41625],[56.354375,26.44875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.1125,16.5075],[118.1625,16.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.2225,-8.8],[-160,-8.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.1125,45.4025],[-139.74,49.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.771719,67.683125],[13.508125,67.472813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.948643,51.215752],[-6.136875,51.501875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-12.1625],[91.525,-11.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.055937,-10.021562],[-99.295,-9.31]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-108.895,74.6],[-111.295,74.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.011875,35.281875],[-9.495625,35.18125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.11,-45.405],[40,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-30],[-105,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.2975,28.7475],[-142.7725,30.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.130405,43.734478],[8.413125,43.543437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,0],[-141.44,1.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.8525,-26.0525],[-41.25,-26.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.243032,50.629766],[1.494547,50.852914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.1175,-36.4175],[-165,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.46,18.4125],[109,16.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.404375,38.217422],[0.192188,38.465625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.08375,47.000156],[-4.945703,47.458438]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[113.8925,75.2475],[119.08375,75.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.94,29.2925],[-78.24,28.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0025,-35.68625],[160.4,-35.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.61875,33.57875],[27.5675,33.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.9975,-17.14],[80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.7625,7.2875],[-29.915,4.93125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.928394,51.919619],[2.155,51.765],[2.461475,51.732637]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.669512,57.304258],[17.864209,57.012236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.5775,47.505],[-5.648125,45.58625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.39,31.7275],[32.119062,31.647031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.11625,58.309375],[0.163125,58.008125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.505422,39.828574],[24.461777,39.558867]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.380596,64.274795],[22.594375,63.986855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,60],[-44.2,58.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.3575,-30.6625],[108.265,-31.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,49.71],[-20,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.37375,57.31625],[24.017187,57.086719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.25,40.6],[143.3,41.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.444408,37.090765],[25.972529,37.031776]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.9,52.6],[164.7325,51.9225],[158.6275,50.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.3225,49.7225],[156.28,49.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.203906,60.118125],[27.460625,60.16875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-10],[-1.09375,-11.13375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-10],[-120,-8.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.77,35.4225],[-8.458906,35.434766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.97,38.0375],[-71.235,37.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.41,35.285],[27.73,35.22625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.650625,33.94],[28.975,33.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.7475,-22.30125],[112.6875,-21.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.700625,13.5],[145.2325,13.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.3925,15.63],[-69.8475,15.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.8025,48.875],[-30.055938,50.082188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.644219,43.927656],[-9.971109,43.525058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.935122,37.151133],[11.191396,37.289531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.5125,-16.3075],[145.86,-16.17875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.505422,39.828574],[24.9254,39.568506]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.429609,45.708789],[-1.6525,45.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.605,48.555],[-130,48.56]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.516328,57.951445],[9.592935,57.691311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.435,10.0325],[-170,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.62,-6.0075],[-144.4475,-5.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.166472,51.147981],[-4.995391,50.711562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.6875,-0.8125],[128.235,-1.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9825,60.489453],[4.616113,60.295938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.55,42.75625],[14.791904,43.008428]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.735,31.91],[-72.305,31.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.3225,48.305],[-13.1475,48.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.986562,34.41875],[-8.179141,34.739766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.004844,36.635937],[-2.419822,36.391848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.4475,44.380938],[36.439609,44.759141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.547187,39.359844],[23.46458,39.10314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.45,-2.5875],[70,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.972529,37.031776],[26.171924,37.298304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.836484,55.227539],[18.779966,54.881255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.6,-3.445],[-168.505,-8.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.740781,58.415156],[4.70625,58.048125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.84375,40.83],[-10.196406,42.474375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.338125,53.749688],[-10.5,54.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.675,61.6875],[-5.105,61.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.40375,32.73125],[14.92,32.9225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.49457,55.8925],[6.10375,55.97625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.945,37.99],[-12.16875,37.699336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.524448,66.182422],[-23.919844,65.875391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.474375,34.946875],[30.82875,35.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.874719,35.952957],[15.450625,36.23875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.21375,58.65375],[-2.166709,58.630734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.3475,30.0875],[-50,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.302891,50.098242],[-1.184526,49.875571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.8,-0.9],[-84.675,-4.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.671875,38.979023],[24.547754,39.230442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.237109,59.49334],[21.833203,59.214102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35,29.515],[34.95,29.4575],[34.673125,28.549219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.444844,60.483906],[28.5525,60.6125],[28.7425,60.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.967148,54.389336],[-3.660864,54.007737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.969731,56.628496],[17.864209,57.012236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.107188,58.580234],[21.222227,58.222451]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.5475,53.17875],[-4.976504,53.224507]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.682012,57.129824],[19.147813,56.902109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.038979,43.900977],[9.336777,43.792803]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.108125,49.92875],[-10.6925,49.91375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.97375,21.07375],[-16.69,24.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.225,59.805],[-167.82,59.18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.61875,35.21625],[-9.011875,35.281875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-13.08],[-126.6975,-16.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.847197,47.9571],[-5.080781,47.680156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.5725,26.155],[-69.685,27.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.095879,58.674238],[10.687562,58.415442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[175.2,-36.6475],[175.2,-35.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.7375,14.5125],[-69.2975,13.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.4575,40.55125],[-69.33875,41.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.732891,55.796875],[17.015801,55.898398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.0525,39.725586],[23.924194,39.296875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.077656,53.644063],[-5.81623,53.720801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.48625,40.09375],[19.305,40.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.219375,39.184766],[2.87,39.055234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.637969,38.376406],[-71.952969,38.052109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.262402,50.295737],[-0.50989,50.131948]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-10],[-110,-4.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.56,32.17],[-77.3225,31.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.534766,43.69332],[13.844531,43.389062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.444408,37.090765],[26.171924,37.298304]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.9275,-2.9675],[-100.76,-0.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.014922,61.642578],[18.605,61.5825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.458203,48.838672],[-5.975874,49.366826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.861699,36.770942],[-8.221875,36.569375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.8175,-31.815],[174,-34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.955,-54.6525],[-64.7,-54.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.835,37.735],[-33.3675,37.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.96,0],[-21.78,-1.8075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.1625,-36.1575],[40.0025,-36.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.8475,29.3325],[-78.515,29.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.02625,38.419375],[3.3925,38.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.0975,-4.96],[-180,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,60],[-6.54,60.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.81875,31.25625],[25.75,32.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.874049,37.28481],[23.882515,37.562214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.778125,66.475469],[-15.285625,66.604375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.64,12.8425],[-69.895488,12.938877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[98.7225,-28.7925],[95,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.4925,42.8075],[-45.32,45.2175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.42625,4.97875],[3.77,1.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.455278,38.316953],[12.040469,38.464844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.036152,57.56498],[17.435977,57.930264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.73,35.22625],[27.53875,35.65125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.525,-18.294375],[176.9,-18.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.235,34.0925],[-30.0025,33.36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.915391,49.654951],[-5.975874,49.366826]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.0125,5.2375],[-4,4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.565,41.125],[-27.31,40.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.943711,56.542969],[18.951172,56.088125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.6775,-3.9375],[-105.6475,-5.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.2475,51.8],[156.902031,50.647344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.508125,67.472813],[13.78875,67.39125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.055938,50.082188],[-20.51,50.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.0925,34.2325],[29.7375,34.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.056875,-34.52125],[22,-35],[18,-35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.865938,37.32],[5.33,37.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.665,56.6975],[-178,58]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,0],[-171.02,1.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.315,37.5225],[-36.6375,37.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.317969,58.094687],[4.0325,57.9025],[3.145,57.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.73,0],[150,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.48625,39.831094],[0.565,40.01],[0.5025,40.05125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.806875,59.87625],[25.435552,59.908784]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.931406,36.316367],[-4.53168,36.183516]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.364395,34.57127],[32.909455,34.52664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.269326,43.036865],[9.823545,42.913235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.465,28.225],[-74.1075,28.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-21.41],[77.6,-22.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.482807,54.540205],[10.97533,54.54129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.618125,43.990098],[-9.02,43.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.74,43.8825],[30.04,43.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.509331,43.617627],[-5.867539,43.705039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.34,53.5],[3.024492,53.529102]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.704336,48.739219],[-2.2925,48.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.921318,52.701387],[-6.038772,52.23241]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.804619,52.865981],[1.793633,52.388354]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.854425,35.840965],[28.3475,35.77125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.94707,46.582813],[-2.557842,46.563525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.315,-54.1125],[-36.2875,-53.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.435,62.24375],[5.655,62.52875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.670117,47.37918],[-6.915,46.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.8725,-10.035],[-130,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.575,54.365625],[3.345664,53.816563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.020625,36.225234],[26.032949,36.54707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.574375,56.152187],[-6.57,56.36],[-6.469844,56.578125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.50375,-1.32875],[109.38,-2.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.432461,37.567847],[12.814531,37.374473]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.917637,56.007363],[6.710469,55.529062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,32.955],[-51.7,32.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.1325,57.6],[-6.839688,57.517383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,5.0575],[-167.19,7.2425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.967344,42.223594],[4.895313,42.259297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,20],[65.1025,20.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-50],[-24.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.45,-3.435],[125.3225,-4.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.876387,38.050391],[22.029609,38.320234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.210313,60.347227],[25.973203,60.058301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.74,40.645],[5.05,40.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.004674,43.208229],[15.835365,43.583118]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.684297,70.773828],[23.105,70.56625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.65,-43.75],[65.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.769551,38.558916],[8.515,38.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.014922,61.642578],[18.972812,61.342813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9975,57.20125],[4.751055,56.422891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.695264,37.793544],[24.335775,37.929713]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.4575,35.792812],[-73.83875,36.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.724219,48.938906],[-7.094375,48.813125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.6925,36.7475],[20.994258,36.679492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.141519,44.765156],[140.40125,45.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.6225,24.685],[-87.8975,22.73125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.036809,36.497406],[22.548184,36.386191]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.167744,59.819575],[23.883651,59.737272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.031494,40.980557],[10.295,41.312383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.26875,58.15],[23.613184,57.938828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.51,50.53],[-20.9425,50.9825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.8075,11.2625],[110.332813,11.999063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.7475,39.545],[4.9575,39.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.613828,41.268682],[17.4375,41.1325],[17.434701,41.129234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,14.785],[125.7,13.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.11,-45.405],[120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.339375,42.061875],[4.995625,41.708594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,3.29],[60,4.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.416001,50.48667],[-3.215,50.21625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48,0],[-51.9,5.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.964502,40.340308],[-68.705,39.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.39042,59.948574],[22.342695,59.654473]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.7,-15],[43,-12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.1875,36.48],[-123.429375,37.475625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.49,56.635],[1.745,56.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10,-50],[10,-40.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.5975,65.685],[-23.919844,65.875391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.110156,39.516562],[10.079297,39.135859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.73,-8.7575],[70,-7.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.6525,45.83],[-1.995391,46.2175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.135,31.3875],[126.705,32.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.735059,53.634062],[6.979961,53.339355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94.315625,-41.379375],[94.93,-41.2575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.9825,63.655],[-22.217946,63.72204]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40,-40],[45.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.712278,57.941782],[7.419902,57.585527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.1675,50.4075],[-16.4475,50.47625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.6775,-3.9375],[-110,-4.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.391406,59.783828],[26.323008,60.104219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.51,67.036875],[12.700625,66.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.76,21.98625],[114.194531,21.738906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.95,59.05875],[20.867754,58.728691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.065625,18.979375],[-75.095,19.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.7775,32.415],[-140,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.131587,48.801069],[-3.125723,49.297363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.673125,28.549219],[34.498125,28.1075],[34.40375,27.70625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.047529,39.195288],[25.41489,39.184761]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.89,-45.405],[-10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.4625,27.3375],[-76.03,27.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.834141,57.728828],[21.155,57.743437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.90625,39.69],[-9.852578,39.129922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.9,46.25],[31.86,46.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25,-5.0575],[-28.65,-1.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.863638,60.867437],[19.585,60.409688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-174,-3.8325],[-170,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.332813,11.999063],[110.1,12.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.791382,50.254956],[-5.25375,50.665625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[149.7025,-39.6125],[147.3025,-39.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.160938,48.760937],[-6.300605,48.218477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.455625,29.054375],[-93.8625,28.825],[-92.8875,28.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.969731,56.628496],[17.418945,55.960781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.203784,55.319097],[5.614844,55.403125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.854425,35.840965],[28.05875,35.611875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.779966,54.881255],[19.093408,55.023052]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.3725,36.8875],[-23.85875,36.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.87125,40.810625],[25.625,40.64875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.299349,58.879789],[5.473301,58.69998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,39.5925],[-139.958438,40.086875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.205,-10.5825],[145.7625,-12.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.385,32.965],[26.1475,33.2975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,39.25875],[-60.5025,39.2375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,20],[126.8225,19.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.3775,35.085],[-77.0325,33.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.234932,36.621201],[-8.65875,36.380625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.49,33.125],[125.6,34.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.453618,44.371019],[14.635117,43.933633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.1825,44.86],[166.6975,42.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,0],[152.58,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.27,53.24875],[1.536094,53.157656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.401875,70.000625],[30.990781,70.305625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.5175,53.3425],[-37.115,53.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.655,62.52875],[6.41875,63.015625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.3,-24.3],[-43.25,-23.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.085,60.3675],[23.0575,60.3525],[23.0125,60.3025],[22.945,60.2575],[22.8725,60.155],[22.790469,60.022109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.255,-24.09],[-75.2925,-20.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.991055,57.008027],[7.277881,56.896787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.2725,73.7425],[73.985,72.545],[72.4025,71.3475],[73.5025,70.9075],[73.3275,69.6625],[73.81,68.435],[72.4475,66.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.5075,50.9875],[-130,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.140859,56.027031],[17.986406,55.811875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-51.1075],[-79.9975,-52.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.8175,29.055],[-81.170625,30.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.851445,37.672402],[15.645,37.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.8925,34.3675],[-118.465,33.6375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.93998,56.931621],[-1.634492,57.1775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.233125,37.010625],[21.345664,36.706875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,-50],[-55.17375,-45.68875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.884375,39.855625],[-10.923906,40.437031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.1975,-28.2975],[-10,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.2,63.6],[-52.77,63.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.277383,41.321865],[9.565913,41.265188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.998125,36.25625],[18.250312,36.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.270781,41.757656],[16.524257,42.029749]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.55375,57.949766],[21.702676,57.681094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.2625,52.295938],[3.240156,52.755781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.8,-5.25],[-37.795,-3.2525],[-38.16625,-3.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.7625,44.2825],[-65.465,43.24375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,0],[-108.535,1.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.81,30.16],[-73.085,30.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,60],[-35.25,55.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.100625,35.21],[33.738594,34.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.924785,51.556335],[-3.689297,51.3425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.126406,56.421094],[-6.469844,56.578125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.81,17.97],[-76.86,17.915],[-75.9725,18.0425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.0975,27.5825],[-79.89,26.7925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.964746,49.878513],[-4.693389,49.700889]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-68,-52.4],[-68.5,-52.47],[-68.915,-52.415],[-69.3975,-52.41],[-69.7175,-52.5975],[-70.27,-52.7075],[-70.4525,-52.755],[-70.57,-52.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.535918,41.327461],[2.80375,41.35375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.11,-45.405],[8.595,-41.5725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.5925,17.3],[-67.08,16.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110,-50],[115.1125,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.6475,-8.5625],[-100,-8.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.80375,36.799375],[-74.43125,36.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.163125,58.008125],[0.4825,58.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.6,-19.6],[118.12875,-17.94875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.676641,54.962285],[12.56418,54.674063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.775,39.24],[5.3175,39.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.704219,40.423906],[10.4175,40.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.738594,34.45875],[34.03,34.321875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.6375,26.81625],[-76.94375,27.12375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.452188,41.625078],[8.752168,41.683691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.995625,41.708594],[4.365,41.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.0025,46.0375],[-160.0025,42.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.115,43.261992],[6.912383,43.041563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.89,-45.405],[-50,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.0225,40.365],[-124.98,40.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.59,34.65],[20.2275,34.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.09625,-9.38],[105.545,-9.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.75875,37.58],[10.240937,37.558594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.36,50.8725],[4.272773,51.318066],[3.967188,51.406328],[3.609661,51.431418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.493164,59.836953],[4.195,59.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.594201,54.944301],[14.019648,54.751348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.818125,50.191875],[-10.6925,49.91375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.1025,32.31],[-77.56,32.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.464746,38.51334],[10.234531,38.099219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-10],[64.029375,-14.03875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.7125,1.7375],[-42.8775,2.9175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.5575,16.1475],[-71.13875,16.43875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.4575,38.685],[6.666875,38.215156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.8,-20.2],[-74.255,-24.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.1325,22.01],[-69.2975,23.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.45,-6.5025],[-10,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.965,70.355],[63.14125,72.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,0],[-98.8475,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.4575,17.5925],[-170,18.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.0025,42.47],[-160.58,42.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.33,19.1275],[-67.0375,19.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.9975,-36.6825],[-170,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.20875,64.4825],[-22.861953,64.063906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.720913,44.727219],[13.863359,44.43959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.363906,37.928438],[8.5325,38.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.794634,56.712373],[6.677749,56.38271]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.82,24.4325],[-159.255,21.8275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.2575,2.47],[-40.7825,3.0725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.976504,53.224507],[-5.195742,52.796914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.42375,61.82875],[19.501523,61.532109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.2975,1.2025],[-78,3.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.255938,63.260625],[19.061165,63.013625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.286133,38.606543],[-10.1125,38.8075],[-10.0875,39.06375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.3825,65.3725],[-23.60375,65.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.181094,35.863906],[-7.827407,35.890791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.103291,42.465767],[10.788789,42.213477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.704336,48.739219],[-2.533433,49.108145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.0375,56.485],[-15.775,57.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.5025,-41.6775],[50,-41.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.191543,43.407358],[8.489414,43.210635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.856875,40.78875],[5.975,40.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55,45],[-54,46.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.9975,-33.2625],[-29.9975,-33.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.73125,58.2925],[-5.3925,58.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-16.8],[-101.8375,-11.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.113934,37.874624],[15.851445,37.672402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.415,27.7025],[-94.4925,26.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[63.155,20.0625],[58.9975,19.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.041094,59.009687],[5.183804,58.639092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.680488,40.028066],[13.245625,39.653125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.807234,38.195508],[25.736152,38.705385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.196875,59.211094],[19.00625,58.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-40],[-150,-38.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.925,48.325],[160.23875,48.07625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.483052,43.441766],[9.053223,43.477959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.2075,17.3475],[-164.775,14.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.619805,48.723728],[-5.713926,49.025977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.499775,38.82457],[9.17501,38.520723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.3375,-35.07],[-160,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.7725,40.4875],[-69.492402,40.297148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.60375,65.23],[-23.767363,65.032998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.250625,-27.075],[160.0025,-24.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.823545,42.913235],[9.530459,43.106787]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.59231,39.925566],[25.553795,39.514287]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.717148,55.296562],[14.18752,55.196726]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.8075,-12.935],[-20,-14.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.88375,-9.961875],[67.5975,-10.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-10],[-168.505,-8.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[61.555,23.4575],[64.14,22.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.85,33.135],[-72.515,32.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,40],[-169.525,41.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.5425,30.215],[131.43,29.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.87,26.185],[-89.4625,25.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.314297,38.348574],[-9.366953,38.602578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.581563,66.439922],[-16.3875,66.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.4825,24.7875],[-24.36875,25.85875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6775,40.925],[7.574375,41.149375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.8125,48.97],[-8.705,49.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.895488,12.938877],[-65.625,12.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.92125,21.76375],[-120,23.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.05125,52.47875],[-57,54.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.996875,69.668125],[18.725,70.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.45,-3.435],[126.5525,-2.6025],[126.831719,-2.3925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.1975,-28.2975],[-19.545,-29.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.5,-53.6475],[-150,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.176094,58.115781],[19.712422,58.267852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.62,0],[53.185,1.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.1025,58.29875],[-7.91375,57.78375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.0425,58.1525],[-134.7025,57.4475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.155,-25.4225],[168.4775,-28.56]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.71,55.0025],[-25.0025,55.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.5625,30.35],[129.22,30.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.0275,-29.0475],[168.0625,-29.075],[168.4775,-28.56]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.315547,58.931875],[21.581289,59.174766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.27,44.4575],[-10.22375,43.8675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5825,-40],[179.5925,-40.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,26.1575],[-60.62,25.605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-1.92],[-159.135,-0.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.499375,57.448125],[6.74793,57.527598]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.8,34.425],[13.5475,34.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.600625,61.94375],[17.3475,61.895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.93998,56.931621],[-1.677383,57.45605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.095625,28.45875],[124.8925,29.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43,69],[47.8825,68.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,-50],[155.465,-45.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.1325,53.50625],[1.046392,53.582031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.5425,30.01],[-60.225,29.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.919844,40.300645],[13.842695,39.815234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.398281,57.002461],[19.707686,57.088086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.5,-28.125],[12.06,-28.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,15.48],[-144.5925,15.5725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.1725,38.3225],[122.59125,37.86625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.6,0],[77.755,1.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.25,-39.3025],[-57.1,-38.25],[-56.1625,-37.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.0025,34.83],[-50.0025,34.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.245,38.830313],[-10.83375,38.58875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.0025,43.6175],[-50.0025,46.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.245,55.3475],[-7.9775,55.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.4175,37.4675],[-10.844531,37.245937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.975,31.6325],[-72.63625,31.319375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.609102,53.816172],[0.457852,53.575371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.965,55.0575],[4.8225,54.541875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.85875,32.6075],[-75.4475,32.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.935547,57.981719],[-1.643477,58.374727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.725667,56.097224],[11.950625,56.411104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.23125,7.17625],[82.152565,6.877741],[82.054713,6.498376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.29,27.3],[124.785,28.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.061406,38.540312],[1.385,38.1625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.260625,69.6675],[15.9425,69.5775],[15.001777,69.098027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.446875,41.2025],[-71.69,40.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.31,40.2825],[-27.7975,40.0475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.961738,55.108965],[12.676641,54.962285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.9525,33.6],[-74.85875,32.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.958438,40.086875],[-150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.778281,37.650781],[6.865938,37.32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.525,-11.6],[93.7125,-13.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.559347,36.195459],[23.788047,36.38876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.6425,-51.9175],[-83.455,-54.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.855,24.085],[-30,25.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.496826,55.929531],[14.443027,55.467617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,21.49],[-50,23.1975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.8925,30.34],[-64.6625,30.0875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.820312,37.349688],[20.6925,36.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.8,-5.2],[110.6975,-3.5975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.1225,50.7975],[-5.955107,50.582607]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.035,22.0825],[-33.855,24.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.008437,42.025],[5.339375,42.061875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,40],[-130,39.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.33,25.5875],[134.2475,26.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.585,6.26],[120.05,8.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.4225,-11.09],[160,-10.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-148.9975,59.27125],[-146.77,60.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.106563,28.959063],[-16.163438,28.516562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.5125,-8.11],[-30,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.196875,59.211094],[18.984531,59.386875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.623047,54.214453],[7.061797,54.235117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.7,35.9],[34.9925,35.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.6,26.3],[50.98,27.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.865938,37.32],[7.505937,37.529688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.11,-45.405],[50,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.7825,-5.0725],[123.4975,-5.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.8875,-52.2],[-49.9975,-52.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.6625,30.0875],[-65.7725,30.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.365,41.3],[3.875,41.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.835,39.23],[-30.0225,38.948437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.74,-31.3225],[-49.575,-32.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.404375,38.217422],[-0.203203,37.980781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.116628,55.70395],[10.3775,55.63],[10.628242,55.61668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.666875,38.215156],[7.223164,37.666406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.0625,1.134375],[172.915625,1.430625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.11625,58.309375],[0.215,58.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.379602,40.247499],[24.812754,40.071875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.8,28.195],[-69.415,27.2325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.67,43.835],[-10.27,44.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.215,50],[-153.455,48.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.635,-5.135],[153.135,-2.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.0675,13.6825],[-73.7775,13.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.226172,40.772656],[3.514375,40.472812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.679375,38.454336],[14.5775,38.815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.87625,18.49625],[-68.9,19.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.850234,54.665078],[19.523477,54.868477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.945,13.0875],[-59.6825,13.049688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.2625,44.83],[-66.7625,44.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-30],[-115,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,0],[70,-5.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.0125,5.295],[130.3775,4.7675],[133.285,3.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.406562,41.101562],[11.031494,40.980557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.719883,62.298301],[18.317813,62.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.86,27.655],[-90.38,28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.800391,60.92625],[18.958636,60.503345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.945,37.99],[-14.41375,37.29375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.0975,11.2525],[-160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.7875,66.1],[12.12625,66.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.4125,28.2225],[-89.86,27.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.865312,37.523438],[-72.07125,36.53875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.6025,20.1575],[-158.2125,21.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.097383,55.425762],[18.836484,55.227539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.687562,58.415442],[10.911819,58.086389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.543809,58.56166],[17.73792,58.188291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.155,-5.56875],[119.151875,-5.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.7325,54.19625],[-166.8025,54.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.7025,16.0625],[39.55,15.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.095,28.3625],[-61.34,28.5375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.125,27.6425],[-63.095,28.3625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.585,38.76],[18.9325,38.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.72375,33.689375],[-7.825,34.05875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.3675,43.995],[-9.536953,43.473828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.595,32.64],[27.385,32.965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.76,37.95875],[-123.429375,37.475625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.095,56.954062],[-6.999766,57.248438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.43686,54.020796],[11.474169,54.531771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.4125,47.2775],[-130.92625,45.68375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.876875,-5.670625],[113.2575,-6.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.752969,61.821328],[20.366641,61.700234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.585313,63.03],[19.84269,63.271816]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,5.0575],[-141.065,8.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.72,30.13],[-85.775,29.8375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,39.25875],[-60.0025,33.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.605,31.905],[-16.106563,28.959063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.833203,59.214102],[21.581289,59.174766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.379375,39.819375],[13.919844,40.300645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.685,27.185],[-69.415,27.2325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.00125,62.650625],[18.99875,62.33875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.165,57.6125],[-1.366055,57.377656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.041562,34.546563],[29.650625,33.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.452166,46.863257],[-1.995391,46.2175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.276172,54.441563],[-5.380625,54.685947]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.84,15.6],[-99.579688,15.480937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.106875,70.955625],[29.145,71.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.0025,45.4575],[-140.0025,46.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.245,38.830313],[-10.884375,39.855625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.37375,57.31625],[23.905249,57.467534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,10],[69.675,8.68125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.144531,38.889063],[12.989531,39.316641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.0025,-43.455],[80,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.6625,-15.8025],[163.78,-16.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.14457,39.892959],[18.656709,39.660527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.815,64.3925],[9.515937,63.846875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.7,-15],[42,-23],[43,-26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.309222,41.237849],[17.166875,41.685156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.945,-24.1825],[77.6,-22.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.2775,65.28875],[-13,65.32375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.160495,60.369147],[21.412104,60.162671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.5,26.5],[128.7825,26.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-40],[-25,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.18375,36.947969],[2.974531,37.313125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.934687,46.844551],[-2.94707,46.582813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.69,41.66125],[7.5825,41.595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.12707,57.238789],[8.122251,56.883525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.105,34.235],[-144.97625,35.36375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[61.1075,-28.9525],[64.47,-25.7775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.766562,20.939375],[-72.6475,20.5425],[-72.045625,20.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.126758,56.210586],[12.416682,56.219017]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.452798,37.190425],[13.944824,36.998223]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.7625,-4.29],[-140,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,0],[80.695,2.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.405,54.065],[0.609102,53.816172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.744297,41.561094],[12.043033,41.62684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.589375,49.12875],[-12.605,49.32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.535,11.77625],[44.995,10.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,50],[-125.7725,48.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.2625,39.667153],[25.59231,39.925566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.1,-3.7],[125.3625,-0.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.495,57.79],[-7.1025,58.29875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.7275,60.8275],[1.17,60.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5,-5.0575],[-5.53,-5.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.8875,-45.4025],[-120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.115,55.835],[7.006055,55.484766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.975874,49.366826],[-5.610078,49.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.71125,42.24875],[-129.345,41.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.065,41.4825],[-69.33875,41.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.793125,32.43375],[-60,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.668203,64.983066],[24.23625,65.063438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141,-38.7],[144,-42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.715,36.6275],[-3.146289,36.571445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.156807,39.539702],[2.671133,39.425312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.175,53.3075],[-34.3425,54.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.4775,19.8875],[-66.373125,19.325625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.3825,50.315],[172.18,49.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.011016,57.479687],[8.749521,57.29083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.0825,35.3475],[-20.08125,34.969688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.5625,-12.31125],[6.365,-14.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.3075,26.3575],[-73.95625,26.42125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.660864,54.007737],[-3.885273,53.643613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.7725,45.543437],[36.8075,46.1975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.1325,-5.9225],[-104.6075,-4.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.766875,55.74875],[20.03,55.9425],[20.176953,56.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,43.6375],[-19.96625,47.293125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.81043,55.711328],[7.935493,55.269111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.360816,50.226732],[-4.782803,50.104521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.2025,42.495],[-17.3175,41.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.809609,42.782812],[-9.764063,43.115938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.595,32.64],[28.24875,33.07125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.622686,54.63365],[14.005637,54.352508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.8375,74.155],[79.885,73.2025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.704375,-16.459375],[116.725,-9.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.710469,55.529062],[6.203784,55.319097]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.958636,60.503345],[18.423047,60.707695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.305,-32.485],[-47.055,-32.4075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.76,29.2825],[-178.5,28.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.205938,45.177344],[140.40125,45.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[83.39,17.6225],[83.6575,17.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.86,36.9125],[-71.48375,36.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.735,72.2725],[82.4675,71.9825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.2875,26.58125],[-81.52,25.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.0975,20.3525],[-92.325,21.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.6,24.3],[65.725,22.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.081875,66.418125],[-23.524448,66.182422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.063125,14.12125],[-61.5375,14.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.314375,35.810312],[13.73126,35.998975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,30],[164.415,24.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.4375,33.8725],[-38.27,31.8825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165,35.385],[164.325,36.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88.5525,20.3125],[91.08,21.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.633662,55.371553],[-6.296563,55.430781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.195,-52.635],[-75.56875,-52.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.603267,55.799884],[-1.14125,55.37],[-0.778315,54.922671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.38,37.57625],[-9.32584,37.236904]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.105,37.215],[0.94,36.9575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.025,31.185],[-62.3025,31.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.93,47.8675],[-13.7025,48.115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.1175,39.8125],[-71.0325,39.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.055,-32.4075],[-47.7675,-32.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.695264,37.793544],[24.631413,38.327471]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-27.9925],[-28.1675,-28.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.53,70.55],[26.46,70.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.135,11.6075],[43.1175,11.615],[43.535,11.77625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.346875,34.8],[34.98,34.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.704219,40.423906],[10.4025,40.23375],[9.961719,40.053281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.251514,41.357402],[11.437969,41.627891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.1,24.7],[51.9225,25.265],[51.8875,25.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.5,-10],[152.5925,-11.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.3825,4.435],[-92.015,4.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.58625,30.37],[-78.8475,29.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.4625,57.633437],[20.834141,57.728828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.554133,55.233171],[12.763845,55.636349]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.5225,-35.635],[134.2175,-35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.74,-34.63],[165.52,-34.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.43125,36.0775],[-74.80375,35.74625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.876875,-5.670625],[116.275,-7.25625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.919844,65.875391],[-24.3625,66.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.57625,58.60875],[-7.1025,58.29875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.84,-10.0075],[159.4275,-10.103125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.1175,19.73],[37.8925,20.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.9075,34.275],[-73.808125,35.133125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.841563,34.8775],[24.121406,35.087266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.788047,36.38876],[23.861299,36.672075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.82875,34.0025],[-17.285,33.18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-112.55,12.905],[-116.62,13.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.72,42.5525],[-158.4675,41.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-177.3025,62.835],[-173.66,58.8675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.769551,38.558916],[8.5325,38.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.4475,18.5625],[-158.2125,21.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.515,27.395],[-66.95875,22.11375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.697578,54.295391],[15.375,54.2175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.710234,63.392363],[21.04875,63.173906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.006055,55.484766],[6.949375,55.080625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.505,47.8],[-5.429043,48.05752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.1375,52.5675],[-10.765,51.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.7575,70.0375],[17.565,70.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.895,68.985],[15.444375,68.808437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.790879,38.328535],[14.0425,38.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118,-35.5],[120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.333612,44.573854],[12.68001,44.979209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[87.08,14.7425],[86.455,13.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.068125,11.07125],[-55.5475,10.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.00241,36.943411],[25.090411,37.203141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.3525,26.8925],[-74.3075,26.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178.5,28.5],[-173.205,26.9725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,20],[-110,15.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.955,-0.83],[50,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.476719,58.596914],[-2.25375,58.47125],[-1.964453,58.246875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.528906,50.685781],[-6.6975,50.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.9,60.7375],[2.93375,60.48375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.429609,45.708789],[-2.1075,45.7175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.7475,66.245],[-20.382344,66.157656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.2725,24.53],[145,25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.475259,22.085903],[-86.805,22.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.5025,48.2675],[-125.060625,46.1975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.0025,52.495],[-51.5875,52.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.870938,42.779531],[8.08125,42.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.2975,47.225],[-5.505,47.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-50],[-40,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40,-40],[40,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.4325,28.92],[-84.6525,27.5825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,-50],[-51.8875,-52.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.977891,59.996338],[20.578652,60.157383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.0025,36.05],[-44.979375,35.428125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.8,-27.15],[153.4,-24.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,-30.0925],[-131.54,-28.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.0975,39.6775],[-30,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.774492,52.210547],[-5.686904,52.46791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.1125,53.2375],[-4.089213,53.258459]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,10],[-99.99,10.6625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.15,-35.9575],[160.0025,-36.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,28.6725],[-60,29.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.6,20.9325],[-83.0375,16.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.89875,46.202969],[-130.92625,45.68375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.68,1.57375],[47.80625,0.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.011563,41.696562],[-10.375,41.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.9075,-8.97625],[136.8775,-9.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.417383,59.887586],[24.167744,59.819575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.3025,-10.025],[170.00375,-9.99375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.844609,55.601484],[10.116628,55.70395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.6,-6.3],[121.7,-5.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.62,18.905],[-92.0975,20.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.974531,37.313125],[2.67875,37.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[92.8425,16.32],[94.87,15.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.004844,36.635937],[-1.666875,36.456875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.793129,59.024679],[10.687562,58.415442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.365,-17.76],[161.92875,-20.61625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.481719,63.691406],[-23.01,63.77625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.4825,-33.785],[-16.63,-33.6625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.025,-23.155],[-4.4125,-24.6775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.675,6.41],[-85.74,5.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.862277,55.907352],[15.034449,55.423906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.85,-10.775],[177.595,-11.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-51.1075],[-75.56875,-52.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.332969,60.713437],[2.93375,60.48375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,20.71],[-140.73,20.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.5675,50.2275],[1.285313,50.158047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.6625,-15.8025],[162.3125,-12.8525],[160.4225,-11.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-56.8825,-45.7375],[-55.17375,-45.68875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.1625,-23.83],[167.693906,-23.070781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.73541,38.340186],[20.794766,38.623437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.0025,43.635],[-150.0025,42.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.1475,35.9375],[-68.03,35.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.431328,55.567109],[17.500703,55.30668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.3075,7.36],[-134.0725,5.9825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.8225,-16.9675],[-20,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.222227,58.222451],[21.55375,57.949766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.103281,36.156094],[-70.86,36.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.17501,38.520723],[9.68375,38.41625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.066875,34.80875],[26.648818,35.316318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.4775,-12.6],[-136.34,-13.8075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-30],[-105,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.953335,39.817231],[24.9254,39.568506]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.600625,37.03375],[-9.112578,37.612578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.969731,56.628496],[18.70125,56.45125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.245,38.830313],[-11.2325,39.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.686284,58.244041],[8.987852,58.151973]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.255,51.6825],[-162.795,50.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.32125,60.575859],[19.306719,60.864062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.44957,36.637656],[-3.146289,36.571445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.5925,15.5725],[-145.4,15.565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.02,40.200625],[2.156807,39.539702]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.780625,40.06875],[-72.91625,39.27875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.435,32.565],[-18.855,29.59625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30,-50],[25.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.19,36.35625],[17.998125,36.25625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-13.08],[-130,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.240156,52.755781],[3.575,52.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.32125,43.865],[-2.5575,44.16625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.24875,33.07125],[27.978125,33.243125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-30],[169.995,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.245,25.99],[-158.261014,21.467326]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.4525,12.2325],[-57.97375,12.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.98375,50.07125],[-8.4725,50.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.1525,-20.6175],[116.44,-17.9175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.6275,50.97],[156.902031,50.647344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.288867,35.930859],[-6.665703,36.064629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48,0],[-43.04,-0.021875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,39.5925],[-139.683125,39.82625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.545,-29.57],[-16.24,-30.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.23125,7.17625],[83.9775,11.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.95375,38.6975],[122.1725,38.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.70125,56.45125],[18.943711,56.542969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.056875,-34.52125],[36.39,-33.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.06024,-7.879388],[116.0475,-7.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.22,26.185],[-90.927813,26.094062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.716416,35.907412],[-6.3075,35.62875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.7,24.3],[-82.4775,23.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.2425,25.885],[35.3775,25.62375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.389609,56.83502],[18.706289,56.817539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.9225,5.9775],[-27.10125,2.60125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.744531,58.765469],[-2.514229,59.012822]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.5875,25.85125],[-69.1325,22.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.935,-17.1075],[56.545,-18.795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.454375,-7.94875],[125.41875,-8.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.667188,60.285273],[28.203906,60.118125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-117.1775,-7.2275],[-115,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.165471,50.419958],[-1.9246,50.200186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.974285,51.728042],[-7.43875,51.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.46,70.995],[26.040469,70.966875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.693389,49.700889],[-5.100801,49.464824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.85,12.26],[-27.6925,10.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.3925,34.0025],[-8.72375,33.689375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.967148,54.389336],[-4.2375,54.432734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.155625,46.25125],[-20,43.6375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.2425,64.1425],[7.3,63.349844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50.94],[-20.9425,50.9825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.2475,61.8275],[-168,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.43875,51.8225],[-6.990234,52.043125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.7,35.9],[35.619375,36.385625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.795,-20.845],[-10,-21.3425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.9975,0],[143.1975,3.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.88,-56.355],[-66.58,-56.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.1325,4.3175],[-7.549297,3.524844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-17.4525],[-110,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-30],[-39.8175,-26.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.5,-33.5],[26.056875,-34.52125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.01,43.5525],[139.0175,44.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.40375,27.70625],[34.5275,26.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.81,29.28],[-72.14375,27.81375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.0375,19.0125],[-67.87625,18.49625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,-60],[-61.1925,-60]]}},{"type":"Feature","properties":{"pass":"panama"},"geometry":{"type":"LineString","coordinates":[[-79.868437,9.378438],[-79.8625,9.185],[-79.57125,8.948125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.270781,41.757656],[15.9325,41.615],[16.324414,41.463242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-10],[-147.51,-12.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.5075,-54.28],[-36.315,-54.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.835365,43.583118],[15.480953,43.776353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.704336,48.739219],[-2.126465,48.693008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.6625,59.246797],[18.984531,59.386875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.31,39.12375],[15.204447,38.802058]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144,-42],[146,-44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.85,32.15],[-18.855,29.59625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.635,54.5],[2.32,55.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68,-52.4],[-60.421875,-46.995625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-30],[85,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.565879,57.725234],[-2.359727,58.123125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73,17.3],[-69.75,17.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.6275,50.97],[157.59375,50.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.335775,37.929713],[24.214436,37.616389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.6225,29.6425],[-159.905,29.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.590479,42.619701],[17.894189,42.729214]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.150937,15.625312],[-73.32125,14.91875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.1825,71.015],[-147.8125,71.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.015625,39.81875],[11.110156,39.516562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.451094,41.242969],[5.856875,40.78875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.41875,24.78375],[-72.90625,24.33875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.175,30.388125],[-79.285,29.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.588633,58.0579],[10.322949,57.882881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.840806,41.531836],[10.295,41.312383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.512065,43.115015],[16.773467,42.591909]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[175,-42],[175.5375,-42.975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.055,49.1625],[141.0925,49.3875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.1975,4.085],[-88.6925,0.9225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.0575,33.215],[130.16375,34.34375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.5575,44.16625],[-2.924375,44.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.0525,39.725586],[23.6625,39.605625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.943711,56.542969],[19.29252,56.583906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.46,18.4125],[108.6075,20.3025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.5625,30.35],[130.9,31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.395,13.5775],[-94.8,13.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.06,-28.455],[10.33,-26.5375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.6075,-4.66],[-102.9275,-2.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90.0025,-16.0975],[90.103125,-19.976875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.6125,4.46],[1.7075,4.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.8175,28.43],[-78.70375,28.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.58,-25.73],[0,-22.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.37,42.73625],[5.601875,42.577109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6075,39.489375],[6.305,39.3975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.87,-50.86],[-60,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.969731,56.628496],[17.083315,56.214521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.17,-38.3125],[-90,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115.2,27.5],[-117.3,32.7],[-117.77,32.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.1075,28.365],[-74.07,27.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.181094,35.863906],[-8.608438,35.794063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.00375,40.836758],[-9.82375,39.937188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.52,-34.9125],[-149.9975,-34.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[46.655,69.8425],[51.445,70]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.52334,36.170601],[24.480055,36.448539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.975,40.3075],[6.215,39.643125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.6575,47.515],[-19.96625,47.293125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.443125,71.11375],[26.3,71.2675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,27.2825],[-50,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.561875,39.82],[3.7875,39.9825],[3.247812,40.450625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.32125,14.91875],[-71.7375,14.5125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.08,14.5875],[67.1825,12.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.01,32.825],[34.721875,32.858125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.509063,41.307187],[11.811123,41.008486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.385695,61.204697],[20.867422,61.060391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.150381,51.951289],[1.542988,51.866641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.3475,-5.405],[98.87,-8.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.768828,20.000156],[-72.045625,20.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.66125,49.7325],[-18.16,49.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.051172,36.245078],[-9.17125,35.970469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.6925,0.9225],[-89.51,0.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75.11,-45.4025],[80,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.475,42.7],[30.7975,43.0875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-20],[-111.5675,-18.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.9,31.3],[122.18,33.0425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.56,34.145],[30.631641,34.477109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.9,19.75],[-68.4075,20.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.6625,39.605625],[23.924194,39.296875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.6925,26.185],[-90.927813,26.094062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.3,46.1],[-60.2175,45.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,20],[128.3,24.99875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,40],[-123.76,37.95875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.248164,42.088457],[7.938437,42.10125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.26375,58.895],[20.39668,58.633281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.25041,52.986816],[1.793633,52.388354]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.0425,38.8225],[13.608438,38.824062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,3.2875],[-95.795,4.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.061797,54.235117],[7.073384,53.77512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.862468,50.634133],[1.066029,50.901753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.322344,38.101406],[0.7125,37.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.765,17.15],[-159.125,16.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-30],[91.44,-31.565]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.76,10.0175],[-136.5425,12.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.38,-2.7475],[106.8,-5.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.428633,53.868867],[9.78625,53.55875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.75,32.2],[29.36,31.79875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.8,26.3],[-77.8625,27.08375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,32.2775],[-60,31.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.969263,59.470547],[23.592334,59.543623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.315215,38.888848],[24.671875,38.979023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.768125,26.300625],[-86.6425,25.1675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.390781,37.295625],[21.573867,36.835508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-179.4475,69.1425],[-180,70]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.223164,37.666406],[6.778281,37.650781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.4025,66.3825],[6.4675,66.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.6775,-22.28],[173.285,-20.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.025,-18.945],[167.97625,-18.43625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.841563,34.8775],[25.2,34.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-32.38],[-110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.7575,44.095],[-68.36,42.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.78125,27.62625],[-85.14,26.99875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.5025,60.78],[-4.67375,60.906875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.4475,42.0725],[-147.515,42.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.655,13.9775],[-79.999688,10.354375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.357578,36.687515],[23.984683,36.948062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.24,50.82],[-12.4775,50.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.322227,54.133262],[5.3775,54.4475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,3.29],[60.5275,3.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.24,-43.63],[-80,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.682148,54.308906],[14.423984,54.004385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.995391,50.711562],[-5.439922,51.202578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.345,41.585],[-129.94125,41.35125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.749147,57.717465],[10.322949,57.882881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-40],[50,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.6675,69.9125],[66.425,69.285],[68.2675,68.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.54625,51.26125],[-171.9325,52.6775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,20],[167.534844,19.455625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.619375,36.385625],[34.68875,36.30375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.59,36.469063],[-10.589688,36.696562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-26.3975],[100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.24,70.805],[-17.4575,69.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.4,35.395],[-74.38,34.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.3875,66.055],[41.93,67.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-50],[-124.8875,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-40],[-159.9975,-35.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.130405,43.734478],[8.439744,43.867473]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.275,29.6875],[-78.8475,29.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.14,42.396406],[28.975938,42.526211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.535918,41.327461],[3.007187,41.191328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.04332,37.265273],[23.441687,37.458124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75,-25.2775],[77.6,-22.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.34125,50.19],[-2.165471,50.419958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.8525,31.2475],[-30,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.1475,49.97],[141.225,50.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.336777,43.792803],[9.053223,43.477959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.725,70.31],[18.73125,70.863125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.72875,60.3875],[-64.5,61.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.7825,3.0725],[-40,4.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.134531,39.588672],[1.835469,40.160469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.87875,36.89625],[-11.64625,37.066875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.82625,33.4675],[-69.09,33.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.7025,48.115],[-12.355,48.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.6675,43.295],[172.6375,43.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-14.8775],[-136.34,-13.8075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95,-35.385],[-100.040937,-39.951563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.4175,34.1625],[139.64375,34.46125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.235039,44.361328],[-9.069531,44.692969],[-8.851875,44.96625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.930508,52.306133],[2.549375,52.57625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.7175,-20.5025],[159.46,-20.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.1,28.7475],[-94.4175,28.0825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.637832,49.762754],[-3.83916,49.41332]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.9475,7.9525],[110.2025,10.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.865488,51.606768],[-5.493437,51.875522]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.2325,13.6075],[148.2475,14.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.179141,34.739766],[-8.142504,34.804087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.127988,52.351133],[3.2625,52.295938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.330625,42.590312],[4.873555,42.995273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.3775,46.48],[-13.9875,45.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.697578,54.295391],[15.8825,54.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.34125,-0.325],[120.7725,-0.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0025,-36.2875],[158.55,-36.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-30],[-43.78,-30.2675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.329941,40.571616],[18.271719,41.101719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.035,64.5325],[9.2425,64.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.6375,57.03375],[6.794634,56.712373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.7775,13.5075],[-69.895488,12.938877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.5,-20],[-39.6975,-23.75625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.39,-33.925],[40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.5425,-45.73],[-58.875,-45.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.83125,64.0325],[-15.10125,64.086875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-40],[-164.0875,-36.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.975938,42.526211],[29.065,42.0475],[29.0675,42.02],[29.0925,41.685],[29.0975,41.6375],[29.115,41.4175],[29.180273,41.264727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-30],[-110,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.420952,37.83022],[26.400735,37.541272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.379375,39.819375],[14.362632,39.363623]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,30.805],[-40,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135,5.0575],[134.2875,5.76875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.121406,35.087266],[24.635,34.76]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.36,31.79875],[28.595,32.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.3475,2.69],[-110,9.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.69875,40.73625],[11.406562,41.101562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.008465,59.705375],[18.984531,59.386875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.790234,62.103242],[20.31875,62.093125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.0225,18.04],[-18,18.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,20],[138.67,18.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.6975,-13.26],[152.72,-13.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.683125,39.82625],[-139.958438,40.086875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.905,54.005],[150.6375,58.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-40],[47.36,-37.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.585148,31.861387],[31.619247,31.847697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.45,-6.5025],[-10,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.755,44.0175],[-8.57,46.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.093125,64.510938],[22.380596,64.274795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.608594,59.370469],[23.399687,59.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,31.785],[-60,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.616875,37.915625],[7.75875,37.58]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.4075,-5.4525],[116.876875,-5.670625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.512266,21.273633],[-159.905,29.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.6825,3.9525],[127.3925,2.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.102083,38.035994],[-9.345625,37.890625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.574688,-7.068437],[124.8775,-6.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.89875,27.65875],[-96.06,27.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.8025,-11.2725],[153.84,-10.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.149774,53.588088],[-4.485823,53.499235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.006875,36.433125],[15.485625,36.366875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.3825,70.505],[33.49,69.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.25,41.9],[143.3,41.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-50],[60,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.7,-54.555],[-63.52,-54.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.92,32.9225],[15.2,33.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.4575,47.3225],[-122.39875,47.6025],[-122.451875,47.8675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.385488,39.396094],[0.241406,39.104531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.654375,40.162188],[4.74,40.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.17125,35.970469],[-11.871875,35.83375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.683516,65.004453],[21.465,65.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.7425,66.855],[-20.8175,66.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.3075,12.9575],[-105.5,18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.115781,41.194063],[11.811123,41.008486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.111562,38.624531],[16.609629,38.297812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.094375,48.813125],[-6.882812,48.511875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.94,39.1325],[150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.355,48.0175],[-10.535,47.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.093699,59.458062],[20.26375,58.895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.82,-14.3375],[-110,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.0025,34.9275],[-130,31.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.159688,37.335313],[-11.760625,37.49875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.727852,54.496992],[-9.40625,54.746875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,20],[-168.6025,20.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.52,27.665],[121.965,28.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.526992,43.320381],[15.480953,43.776353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.237656,41.527344],[2.80375,41.35375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,13.33],[-140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.2175,65.03],[-14.1875,65.025],[-13.915938,65.016406],[-13.855,65.0025],[-13.649424,64.811309]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.3625,36.1],[-11.7125,36.11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.9925,11.49],[-87.6,12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,15.6],[-110.0825,12.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.970518,42.269365],[-9.301797,42.146035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.3975,45.21625],[-1.501875,44.645625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146,-16.7],[146.8825,-16.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,-15.17],[-110,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.09,59.315],[13.5675,58.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.87875,21.59],[-85.695,21.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-5.1275],[-137.395,-4.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.01,63.77625],[-23.5,64.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,-60],[-44.75,-55.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.8225,38.75],[-66.515,35.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.120417,54.936321],[-5.107577,55.306505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.2525,28.0125],[-73.195,27.37375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.250312,36.785],[18.273047,37.273672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.2125,19.2425],[-73.768828,20.000156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-179.275,24.2525],[-176.8625,23.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.432461,37.567847],[12.036333,37.603433]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.24,3.8525],[-90.595,3.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,10],[148.2475,14.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.276875,47.64625],[-5.505,47.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.129075,43.962122],[14.771665,43.637942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.821562,64.618437],[11.1475,64.525],[11.2,64.5025],[11.38,64.47],[11.435,64.455],[11.3425,64.56],[11.20625,64.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.360938,37.926563],[-73.80375,36.799375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.595,3.3125],[-92.015,4.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.103125,40.953125],[8.04875,41.220156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.895,40.96],[-34.8625,42.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.09875,40.50125],[139.4,41.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.064385,43.102422],[28.14,42.396406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.951172,56.088125],[18.956563,55.702969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,-19],[8.5625,-12.31125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.916875,44.328125],[-9.02,43.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.382188,65.660313],[-21.67,65.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-30],[75,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.415,37.5],[6.778281,37.650781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.695,21.9425],[-85.899375,21.717266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5925,-40.2725],[-180,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.8325,-34.53],[4.105,-34.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.488677,54.022837],[8.836846,53.857148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.32125,60.575859],[19.585,60.409688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.282207,57.45085],[8.749521,57.29083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.9675,26.5525],[-94.5675,26.1625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.525,10.60125],[-75.0675,13.6825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.990781,70.305625],[31.36625,70.36875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.1925,-35.5825],[113.6275,-35.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.5275,27.6125],[-141.7975,28.3025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-10],[-28.7725,-8.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.29,40.215],[5.4075,40.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.934531,57.566284],[8.12707,57.238789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.602749,37.437231],[25.07004,37.507314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-0.465],[-99.6725,-0.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.451475,55.546858],[15.034449,55.423906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.864043,44.238911],[14.750116,44.564231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.765,60.5425],[-146.95,60.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.388594,57.067383],[8.122251,56.883525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.975,48.96],[-131.605,48.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.9,19.75],[-67.33,19.1275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.862277,55.907352],[15.208984,55.821055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.11,-45.405],[30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.2625,17.2925],[116.6375,18.1675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.8375,18.4025],[-75.34125,17.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.83875,36.345],[-73.80375,36.799375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.068125,47.966406],[-5.872583,48.592964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.089531,40.917109],[11.811123,41.008486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.95,-5.4],[117.72625,-3.48375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.5575,37.1],[-72.5725,36.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.461641,41.581094],[17.166875,41.685156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.585313,41.249688],[18.97,41.323906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-40],[60.0025,-43.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.79,-10.5],[159.4275,-10.103125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.84269,63.271816],[20.442869,63.090898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.8625,61.22],[1.181875,61.661875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.025,-18.945],[167.693906,-23.070781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.25,-3],[-80.0425,-3.0925],[-79.85,-2.4425],[-79.8375,-2.3125],[-79.8825,-2.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.2475,32.4425],[-50,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.122656,56.799727],[17.373462,57.437144]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.255,20.27],[-30,20.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.9825,31.1075],[-40,30.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.369375,36.840937],[10.927529,37.445293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.146289,36.571445],[-2.419822,36.391848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.7425,25.6475],[140,22.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,60],[-40.0025,57.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.773281,57.108672],[10.914292,56.707234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.8925,29.085],[125.5275,28.3875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.67,-12.165],[136.84625,-11.78375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.07004,37.507314],[25.090411,37.203141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.9,46.25],[30.532812,45.211875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.728438,35.881563],[29.488379,36.032012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.25,40.6],[141.25,41.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.57,40.5725],[0.947939,40.484336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.9,52.6],[165.2475,50.8725],[159.1075,48.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.921806,37.203799],[26.444408,37.090765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.616113,60.295938],[4.840937,60.062812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.0175,-10.0225],[-30,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136,0],[130,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.508301,42.19166],[7.5825,41.595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.63875,21.88],[-74.305,21.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.20625,64.84],[10.821562,64.618437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.6,33.9125],[-52.5575,32.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.97375,21.07375],[-23,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.5125,25.44],[56.354375,26.44875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.86,55.245],[-5.107577,55.306505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.95,54.8775],[142.04,55.18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.96499,55.151123],[16.241221,55.024209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.01,5.3675],[127.585,2.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.251458,43.390162],[9.863027,43.62499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.8225,35.7175],[13.73126,35.998975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.3025,60.0825],[-56.5925,60.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.964453,58.246875],[-1.643477,58.374727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.038125,40.661875],[-73.8125,40.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.4875,34.23125],[18.9725,34.42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.41875,24.78375],[-73.5225,23.49875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.770117,38.031641],[20.641094,37.697031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.3125,34.9625],[147.6675,37.8475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.6225,24.685],[-91.1775,25.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.15,-35.9575],[160.4,-35.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.999297,47.852695],[-3.942187,47.478906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.863638,60.867437],[20.242031,60.869062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.831406,56.232656],[19.766875,55.74875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.195,-14.81],[146.58625,-16.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.6,42.465],[7.508301,42.19166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.795,42.045],[132.1725,42.24625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.37,26.58],[53.21375,26.34875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.692092,40.695101],[18.623086,40.538965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.9775,63.335],[4.1,62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.014063,59.174375],[22.796553,59.466914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.764063,43.115938],[-9.5,43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.666055,38.239648],[11.632383,38.555742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.64,62.7925],[-166.5275,62.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.366953,38.602578],[-9.629463,38.542939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.76875,63.21125],[-22.481719,63.691406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.614771,42.803228],[16.004674,43.208229]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.314542,45.632634],[13.609922,45.69873],[13.382898,45.325483]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.916875,44.328125],[-8.730781,44.616484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,-50],[-44.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.3125,-27.1975],[70,-25.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.605,37.325],[2.105,37.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.8175,42.4975],[37.96375,42.2375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.9925,-35.3775],[-45.1925,-35.1675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.56,54.2725],[-162.095,54.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.458096,-7.128027],[69.88375,-9.961875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90.103125,-19.976875],[82.7425,-20.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.84,44.29],[-6.22375,44.644375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.1975,-9.8075],[-100.055937,-10.021562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.325,27.1375],[-79.595,26.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.617344,57.609609],[17.435977,57.930264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.70625,41.54375],[-71.10375,41.37125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.6575,35.5325],[34.93625,35.5225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.8,61.9075],[18.317813,62.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.945703,47.458438],[-4.847197,47.9571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-50],[-86.45,-53.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.2725,-43.055],[55.11,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.715,-14.445],[-144.105,-16.05375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.3025,22.55],[-50,21.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.325,25.04],[-81.1125,24.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.721875,32.858125],[35.0275,32.8475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.775,57.51],[-16.5175,57.9475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.5325,16.235],[-58.675,14.8375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.6175,52.545],[-149.78625,52.37875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.64,66.385],[-20.8175,66.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.515937,63.846875],[9.739375,64.00625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.5075,-6.465],[125.7875,-5.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.395,-26.595],[-28.1675,-28.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.17,28.2725],[-69.0025,29.07375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.29625,-34.67125],[165.74,-34.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.870625,38.90709],[8.099512,38.77126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.574375,41.149375],[7.5675,40.84125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.322187,4.794844],[45.68,1.57375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.3825,70.6675],[-133.3475,69.6225],[-135.6325,70.315],[-139.14,70.7125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.7825,38.66],[8.099512,38.77126]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.6,-19.6],[116.66625,-20.19875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.01875,56.948125],[3.6375,58.14125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.670859,65.557656],[-13,65.9225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.46458,39.10314],[23.71625,39.02375],[24.095647,38.93687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.4175,-30.0825],[-100,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.675,-4.125],[-85.2675,-4.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.09397,60.176763],[19.585,60.409688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.6025,20.1575],[-164.4475,18.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110,-50],[105.1125,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.795,36.12],[-126.1875,36.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.187949,50.424773],[-1.302891,50.098242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.093699,59.458062],[20.668047,59.100625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-101.995,68.09],[-101.61,68.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.705,19.78],[120,19.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.99875,37.631875],[3.280156,37.515937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.39,41.41],[36.3925,41.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.447247,50.7914],[-0.914634,50.762358]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.305,-32.485],[-46.3125,-33.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-50],[-134.8875,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.9025,35.64],[17.853125,35.741719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.12,35.5675],[123.9775,35.4225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.413242,37.735093],[25.481746,38.133721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.83,33.92],[-14.7575,31.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.215,20.0575],[131.8275,18.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-32.085],[90,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.2625,26.2625],[-86.9825,25.2375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.738478,55.100254],[10.979445,55.601803]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.0625,45.36125],[-40.0025,46.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[84.28,-15.88],[86.99,-17.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.245,35.9275],[-12.656172,36.203125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.6325,71.455],[130.4075,72.38],[130.85,74.06375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.85605,38.739146],[14.5775,38.815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.8875,-52.2],[-56.6975,-57.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.559922,60.111641],[18.6275,60.16],[18.860273,60.326094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.824063,43.32125],[7.521152,43.106621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-177.48,30],[-174.28,34.6525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.56875,-52.73],[-75.96375,-52.84625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.464531,58.669543],[23.613184,57.938828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.094375,39.663594],[9.84875,39.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.793125,32.43375],[-60,32.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.6525,0],[-171.02,1.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.7725,30.08],[-67.3475,29.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.745469,32.9625],[29.650625,33.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.325,53.585],[-152.455,53.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.174857,43.541549],[-3.456484,43.544141],[-3.879692,43.568643]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.4625,38.922813],[17.540937,39.187188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.63125,-51.48],[-51.8875,-52.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.043033,41.62684],[12.346079,41.339282]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.14,22.9075],[61.6525,21.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.748981,57.371318],[11.568218,57.012427]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.8225,38.75],[-64.37,33.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.936484,40.904687],[2.345554,40.599189]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.8225,33.4875],[-8.8225,34.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.52,-40.57],[160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.363828,63.562969],[21.00875,63.57625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.525,31.6975],[-130,31.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.055,8.175],[65.031875,5.0675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-103.445,-1.85],[-100.76,-0.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.5025,40.05125],[0.913906,39.953828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.065625,55.181445],[17.644219,54.943906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.39875,51.28125],[141.225,50.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-20],[-90,-14.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.505937,37.529688],[9.64,37.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.037969,10.012969],[70,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.92,50.7175],[-16.61,50.7925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.325,52.028437],[2.628906,52.187148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.6875,33.2125],[-8.72375,33.689375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.405938,65.110625],[22.3375,65.38],[22.239863,65.526875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.065625,55.589805],[20.649277,55.753359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[81,13],[81.76,12.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,31.34],[-130,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.125,-36.1925],[162.15,-35.9575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.004674,43.208229],[16.278228,43.464146]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.16127,42.462773],[17.53,42.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.357454,37.90199],[12.036333,37.603433]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.013125,19.969375],[-55.65375,20.055625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.272207,57.5154],[8.12707,57.238789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.945,58.24],[2.4625,58.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.031494,40.980557],[10.792813,40.715937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.5625,40.49],[-30,40.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.1925,-35.1675],[-46.3125,-33.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.2075,20.84],[-45.0625,25.33625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.3125,32.5675],[-126.5975,32.0975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.17,64.80375],[8.4825,64.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.276875,47.64625],[-5.08375,47.000156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95,-35.385],[100,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.27375,58.90625],[5.299349,58.879789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.395,35.7025],[-12.1425,35.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.215,48.8],[164.1825,44.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.973813,48.334272],[-5.104897,47.958721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.801758,39.217891],[20.051699,38.925605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.4475,18.5625],[-161.865,17.5725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.106875,51.918594],[-6.136875,51.501875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.745,-43.645],[80.0025,-43.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.1375,-33.4125],[-26.9975,-33.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.92125,64.09875],[-14.2125,64.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.51625,54.099375],[0.906953,54.030547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.6825,3.9525],[125.5,1.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.6,24.3],[64.14,22.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.528125,70.348125],[20.962656,70.722344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,-50],[135.1025,-45.3925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.1475,55.765],[0.905,55.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.055,33.32125],[139.955,34.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.6175,41.455],[160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.7,43.3525],[32.89625,42.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.995,37.92875],[-32.360937,37.845938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.710234,63.392363],[21.00875,63.57625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4,4],[-2.37,1.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.7,24.3],[-81.82375,24.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.390703,67.332656],[13.965,67.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.28,30.0125],[-69.0025,29.07375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.959365,42.216797],[15.40959,42.1446]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.600625,61.94375],[17.625806,61.556221]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.67875,-34.1675],[152.835,-33.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-18],[53.355,-15.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.3,27.8],[121.965,28.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.85875,36.415],[-22.3425,34.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15,-25.2775],[-18.1975,-28.2975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.470625,61.478125],[4.740021,61.920164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.360938,37.926563],[-74.11,39.02625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.02,64.93],[-13.649424,64.811309]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.827422,43.645742],[7.515754,43.396252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-30],[95,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[89.5125,-19.5375],[90.103125,-19.976875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,60],[-13.3575,62.6875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.12875,62.07125],[-7.6175,61.94875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.955,16.075],[-112.56,16.2225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.618125,43.990098],[-7.994258,43.911279]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.685,25.8625],[-84.07875,25.73375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.470937,28.197734],[-15.069297,28.329922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.5675,40.84125],[7.638906,39.812305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.001875,11.0075],[-12.6975,4.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.973813,48.334272],[-5.289603,48.464297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.54,-34.385],[152.67875,-34.1675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.86,-51.435],[-79.9975,-47.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.2825,37.3],[6.508125,37.379063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.965,52.305],[10.0325,52.31],[10.3925,52.23375],[10.675,52.4925],[10.5025,53.3725],[9.78625,53.55875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.986875,38.405938],[11.3775,38.485],[11.632383,38.555742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.52,20.51],[-168.6025,20.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.419287,55.636387],[16.126771,55.551044]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.17,-24.42],[-90,-29.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.24,3.8525],[-85.74,5.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.3,-2.9075],[5.4225,-3.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.241406,39.104531],[0.451387,38.769238]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.495,69.52],[56.98,69.3775],[57.37,69.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.036809,36.497406],[22.447139,36.088213]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.4625,46.945],[-13.5375,45.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.14875,65.464375],[-22.81125,65.15875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.850156,46.472109],[-1.995391,46.2175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-40],[-120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.3825,-21.52625],[114.5,-20.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.6975,44.82],[-133.819375,43.974375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.530248,42.472596],[15.384766,42.597266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.9175,-3.21375],[-33.8,-5.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.253931,35.308711],[26.47418,35.538633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.505,62.74],[-26.15,63.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.380938,66.065625],[-18.360742,66.294883]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.113934,37.874624],[16.1775,37.7825],[16.3275,37.75],[16.48125,37.713437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[148.2475,14.5325],[150,15.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.887881,56.8654],[11.568218,57.012427]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.415,-11.665],[75,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.61,16.7575],[135,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-10],[-150,-6.9825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.788105,57.365605],[20.651816,56.985137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-30],[104.2425,-34.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9275,62.23],[5.435,62.24375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.3325,21.3375],[89.7275,18.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.716875,26.199375],[-77.035,25.848125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.352656,53.157656],[5.154155,53.500967]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.7375,32.765],[32.5425,32.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-10],[-161.2225,-8.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.6275,56.0325],[-3.240352,56.036367],[-2.795625,56.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.06875,60.39125],[19.863638,60.867437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.995,28.7725],[-58.73,28.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-27.855],[-126.1475,-26.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.447247,50.7914],[-1.29,50.71],[-1.28,50.73],[-1.447247,50.7914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23,65],[23.378438,65.001875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.60125,38.8825],[6.1475,38.84125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.2225,-23.0625],[4.225,-19.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.130405,43.734478],[8.191543,43.407358]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.401875,70.000625],[31.36625,70.36875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.82,59.18],[-168.575,59.0425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.495222,51.13941],[1.576936,51.453381]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,15.5225],[-150,14.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.197656,42.566328],[5.601875,42.577109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.7725,50.9625],[-10.706875,50.58375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.622598,66.124668],[12.364375,66.279375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.94,36.9575],[1.51625,36.93125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.94375,24.045],[57.5125,25.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.54625,51.26125],[-172.8775,47.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2275,37.05875],[14.48125,36.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.68,34.8975],[17.853125,35.741719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.594201,54.944301],[15.0402,54.91689]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.874526,58.542886],[17.73792,58.188291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.55,-29.575],[-89.1475,-30.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[151.5,-34],[152.835,-33.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.121537,57.878751],[6.480518,57.788066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.410937,43.8925],[-7.23375,44.276875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.605,63.0875],[21.3825,63.115],[21.2325,63.12],[21.04875,63.173906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.703125,58.797187],[5.183804,58.639092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,0],[-120,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[93.7125,-13.86],[94.97625,-15.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.0025,-34.7975],[83.62,-33.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.84875,41.52625],[3.237656,41.527344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.7425,66.855],[-18.975,66.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.0375,18.24],[-42.27,20.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.7325,46.0525],[30.9,46.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.744492,38.927461],[20.355,39.115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23,65],[22.648438,65.283398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.707935,60.35106],[21.649375,59.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.615,41.4075],[136.2575,42.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.2225,65.70125],[24.473359,65.570117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.165,34.625],[-73.9075,34.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.2575,-6.325],[113.00375,-6.29125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.4575,39.45],[-25.273438,37.940313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.104897,47.958721],[-5.276875,47.64625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.196689,54.343059],[7.782939,54.533564]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.949141,51.602773],[-6.6975,50.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.285,31.3975],[-40.5725,30.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.129458,43.589639],[13.844531,43.389062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.671875,38.979023],[25.047529,39.195288]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.07,55.575],[5.3225,55.644063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.281719,49.017773],[-5.713926,49.025977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.4775,12.525],[115.045,13.36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.7725,45.543437],[37.61875,46.8175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.945,37.99],[-14.484375,38.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.63,30.1175],[-70,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.66125,49.7325],[-20,49.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.9275,54.4625],[8.668396,54.57032]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.64625,37.066875],[-11.159688,37.335313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.151875,39.17],[-13.755,38.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.915,-38.485],[-50.62,-39.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.535918,41.327461],[2.893906,40.936875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.2875,69.5025],[16.98625,69.51875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.24,3.8525],[-89.595,2.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.7725,45.543437],[37.6025,45.8275],[37.61875,46.8175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.4375,19.215],[146.1125,20.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.844531,37.245937],[-10.9,37.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.149961,52.716133],[4.38042,52.485508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.631413,38.327471],[24.898643,38.091514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[107.28625,9.99125],[110.1,12.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.11771,39.019907],[25.736152,38.705385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,20],[-120,23.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.17,6.6375],[70,6.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.79,26.775],[-75.625,26.23875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,40],[-49.4175,40.6525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.8725,27.0475],[-159.6225,29.6425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.682012,57.129824],[18.706289,56.817539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-50],[-120,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.685,18.405],[-180,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.792813,40.715937],[10.704219,40.423906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.47,37.3125],[-0.1375,37.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.415,71.4275],[-161.77,71.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.25,-33],[151.5,-34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.42125,45.9625],[-60.68,45.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.604922,42.797344],[3.792734,43.166094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.515754,43.396252],[7.824063,43.32125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.13625,2.15875],[155.04625,5.08875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.73,-0.0575],[119.5,1.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.53875,35.65125],[27.318728,35.996227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.26125,-34.13875],[13.9075,-32.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.76918,54.977891],[14.019648,54.751348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155,-35.385],[-154.52,-34.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-8.2825],[-120,-0.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.23,21.7875],[-71.9175,22.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.745,35.06],[-14.08,34.49375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.345,40.035],[-59.4475,39.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.4875,34.23125],[20.1475,34.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.0875,43.1875],[-10.495,43.601875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[77.6,-22.5425],[80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.638906,39.812305],[7.7475,39.785],[7.8025,39.79],[7.965,39.8025],[8.085117,39.67123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.6275,4.78625],[125.7675,5.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.541406,62.844219],[20.755,62.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.141162,43.092314],[9.483052,43.441766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.3,24.99875],[128,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.5,61.1],[-75,63.2],[-78.78125,62.4725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.796553,59.466914],[23.172656,58.85125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.84875,-23.14125],[58.0075,-20.69375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.696914,50.83457],[0.862468,50.634133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.125,44.55],[-7.814375,44.189375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[147.375,16.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.52,20.51],[-166.115,24.1175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.172656,54.618281],[6.034062,54.128125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.0025,52.1875],[-20.0025,56.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.538125,27.859375],[-92.4725,28.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.21375,26.34875],[52.9975,26.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.564375,41.342695],[5.856875,40.78875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.600938,12.615312],[43.535,11.77625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.6525,59.1525],[9.6125,59.125],[9.965891,58.906169]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.336777,43.792803],[9.755635,43.946704]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.232188,54.404375],[-0.033281,54.138125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.827344,51.908281],[-5.493437,51.875522]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.726816,36.743547],[25.703306,36.368428]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.4825,53.255],[8.487441,53.562617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.86,-31.24],[-135,-30.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.23,-4.63],[125.1,-3.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.295,-7.16],[5.2,-3.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-1.55],[92.5075,-2.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.4875,46.875],[-7.709375,46.48125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.435552,59.908784],[25.551523,60.138984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.9425,36.128438],[33,35.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.087813,49.715625],[-7.454375,49.680156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.296563,55.430781],[-6.075,55.2975],[-5.825639,55.203441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.776875,16.00125],[-84.438458,16.042692],[-84.788125,16.06375],[-85.309687,16.095625],[-85.565652,16.111383],[-85.914375,16.133125],[-86.3275,16.16],[-86.735,16.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,-5.0575],[-133.8525,-3.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.6375,21.2875],[-67.35875,21.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.465,43.24375],[-64.2,42.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.74,43.8825],[29.535625,42.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.11625,58.309375],[0.4825,58.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.671724,55.080054],[11.8725,54.725],[11.814375,54.605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-10],[91.525,-11.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.48,38.1025],[119.3925,37.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.65,30.7075],[-30,30.9025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.84875,24.55625],[-81.1125,24.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.74875,-19.9075],[160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.23,23.1125],[113.24,23.1],[114.194531,21.738906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.684297,70.773828],[23.443125,71.11375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.196875,59.211094],[19.284688,58.859375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-40],[0.0025,-35.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.9475,26.41625],[53.37,26.58]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.72375,33.689375],[-8.345,34.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.121406,35.087266],[23.837963,35.114116]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-10],[-180,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,10],[-180,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.13,37.830625],[8.363906,37.928438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.3,46.1],[-60.68,45.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.005,62.3675],[-20,61.2325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.625,-35.5625],[135.5225,-35.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.833696,37.470029],[-1.566758,36.880391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.237109,59.49334],[20.95,59.05875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.625,26.23875],[-75.1225,26.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.255,51.6825],[-161.84,51.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.772578,64.575469],[23.4625,64.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.2225,66.865],[-57.9575,71.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.355,56.495],[-30,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.832734,60.783594],[20.47125,60.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.610156,47.673828],[-6.670117,47.37918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.416875,54.525937],[19.850234,54.665078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.925938,70.0675],[20.962656,70.722344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.6125,28.69],[-127.8325,30.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.739375,50.261875],[-7.656875,49.909922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.63,38.10875],[8.06375,38.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.2525,66.925],[-16.3875,66.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.324492,36.270234],[-7.221523,36.770952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.2,47.75],[-65.48875,49.79375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.175,74.4675],[4.1525,70.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.215,42.3025],[-11.235,42.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110.0475,9.980625],[-115,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9575,39.3825],[5.3175,39.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.9075,-8.97625],[132,-8.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,20],[167.534844,19.455625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.445,15.645],[59.9125,10.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.92,32.83375],[28.24875,33.07125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.255,-19.0425],[177.76875,-18.77625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.073125,63.019375],[-20.005,62.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-30],[-90,-29.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.137793,52.579573],[1.804619,52.865981]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.73,10.8925],[-75.9375,11.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.695059,44.061152],[12.939199,44.269688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.5725,30.625],[-40,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.447498,55.371414],[-5.825639,55.203441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.8475,43.0575],[35.9525,43.8675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.415713,38.840752],[26.152444,38.613633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.032949,36.54707],[25.726816,36.743547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.598486,44.278232],[8.130405,43.734478]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.57,-23.235],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.68957,59.970225],[24.417383,59.887586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.37375,36.395],[16.006875,36.433125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.423984,54.004385],[14.455547,53.705625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.614844,55.403125],[5.49457,55.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.204438,53.83895],[6.034062,54.128125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.6175,61.94875],[-6.566875,60.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.50168,36.626758],[-8.65875,36.380625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.55,-19.85],[58.0075,-20.69375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.3075,28.9425],[-95.1,28.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-20],[-110,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.09,57.773125],[23.613184,57.938828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.8525,25.8675],[-84.4325,25.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.545,-40.0325],[171.1375,-39.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.419902,57.585527],[7.559668,57.22002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-10],[0,-12.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.204447,38.802058],[14.997987,38.455532]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1,62],[4.740021,61.920164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.253931,35.308711],[25.757305,35.227305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.481853,38.631372],[20.73541,38.340186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.815,62.5475],[-7.0275,62.43125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.5975,55.2975],[-131.82,55.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.087227,47.464883],[-2.93498,47.150312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,25.2775],[-133.35,26.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.435,28.425],[-79.6875,28.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.5075,-6.465],[129.1475,-6.0325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.2225,-31.54375],[156.55,-31.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.177578,49.34814],[-4.583213,49.079404]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.576936,51.453381],[1.81278,51.167213]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.9725,35.53625],[13.73126,35.998975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.6375,62.635],[19.479375,62.294375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.735508,59.94582],[5.483418,60.107104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-30],[-10,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.81623,53.720801],[-5.527939,53.538066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.302568,38.575815],[24.095647,38.93687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.565,-51.945],[-74.1825,-52.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.7775,32.885],[122.9,31.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.964502,40.340308],[-69.08875,39.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.354573,61.169585],[17.513984,60.741211]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.437812,44.098438],[-5.723438,43.980312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.56625,38.445],[7.63,38.10875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.111875,69.78125],[43,69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.489199,56.099004],[6.677749,56.38271]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.2975,63.71],[-23.01,63.77625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.7975,60.946875],[3.332969,60.713437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.782939,54.533564],[7.935493,55.269111]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.83375,51.64625],[-10.139375,51.521875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.79125,38.62375],[19.487891,39.278262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-30],[85,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.508125,37.379063],[6.865938,37.32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.09,38.07],[-134.8175,38.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.35,26.835],[-137.4775,27.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.065625,18.979375],[-80.425,20.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.778125,58.673125],[-1.8675,58.9925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,5.0575],[-120,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.9,31],[128.9,31.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.084219,58.238926],[9.764834,58.145391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.807234,38.195508],[25.481746,38.133721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,15.17],[-124.1275,14.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.446875,41.2025],[-71.295,40.44125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.74,-31.3675],[9.9975,-29.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.645937,61.87375],[-6.72,61.57875],[-6.566875,60.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.535,41.2625],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.5975,60.555],[21.160495,60.369147]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.105,34.43],[33.738594,34.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.0025,-25],[-3.205,-23.3975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.873555,42.995273],[5.148335,42.885435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.6075,58.2025],[16.835,58.0625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.28207,54.708984],[12.098691,54.491074]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.512266,21.273633],[-153.96,23.6475],[-153.635,23.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.675,14.8375],[-55.46125,15.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.745234,39.090742],[26.585,39.1675],[26.4175,39.375],[26.3175,39.425],[25.998682,39.514512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.2875,26.58125],[-82.6625,26.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.272012,49.962236],[-2.598662,49.992534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.94125,41.35125],[-130.835,40.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.405,40.07375],[-134.8175,38.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.815,4.8575],[72.954531,4.022656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.286719,37.064297],[-9.985625,37.286875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.64375,35.8],[0.51875,36.50375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.27875,41.4425],[6.451094,41.242969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.5,27.7],[-114.4,31.36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.6675,19.4425],[120,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.8925,46.81],[-14.6725,47.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.235,-1.3325],[130,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.666816,44.676299],[13.062852,44.548828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.6375,36.4125],[30.91875,36.6425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[63.99,8.5675],[65.037969,10.012969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.53,39.5225],[-13.75875,39.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.52334,36.170601],[24.131104,36.23646]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.532812,45.211875],[30.28,44.34625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.11625,34.40625],[27.78625,34.46375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.6275,34.2425],[21.47,34.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-10],[-98.025,-10.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.082495,36.676348],[14.382109,36.584688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.432834,54.658691],[16.06113,54.763171]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.89875,46.202969],[-125.5,48.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.594201,54.944301],[14.864453,54.674297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.46,39.675],[1.432139,39.310298]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18,-35],[13.9075,-32.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-10],[-132.6775,-10.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.205,-23.3975],[-10,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.776404,37.322181],[15.851445,37.672402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.73,35.22625],[28.256563,35.358438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.379602,40.247499],[24.182188,39.947227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.319315,55.488536],[7.498594,54.987734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.32,40.8775],[139.4,41.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.865488,51.606768],[-6.136875,51.501875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.2625,52.295938],[3.488633,52.013296]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.643477,58.374727],[-1.356133,58.670469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.57,46.186875],[-2.557842,46.563525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.9425,36.128438],[34.405,35.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.9375,-18.285],[48.1,-26.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.79167,55.028234],[9.591016,55.487578],[9.844609,55.601484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.720547,56.398438],[-6.506875,55.907187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.84,15.6],[-99.9,16.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.9,20.27625],[-73.768828,20.000156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.418008,56.664336],[10.16,56.71],[9.8675,56.6475],[9.8025,56.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.13,-56.015],[-66.58,-56.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.096719,34.26375],[35.4075,34.509375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.61375,-9.98375],[142.1325,-10.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.101801,19.972452],[-65.4775,19.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.800312,43.855781],[-1.916992,43.469033]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.630937,35.532813],[-13.50625,36.0425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.078438,42.0925],[-9.809609,42.782812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.44,25.6625],[52.9975,26.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.5125,30.065],[-156.57,29.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.197656,40.590156],[11.465625,40.441563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.6425,37.765],[-123.6025,38.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.679688,38.073906],[-9.581953,37.762852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.26142,44.988687],[14.020781,44.73082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.5375,20.5325],[-92.74875,22.244375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.335775,37.929713],[24.131563,38.157969],[23.928164,38.313437],[23.635312,38.454062],[23.38334,38.609902],[22.993203,38.830684]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.8375,38.6025],[-74.5325,38.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.681875,59.484375],[26.648672,59.604062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.1775,34.5275],[124.3175,33.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.371504,54.071631],[6.790234,53.982109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-37.315,37.5225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.9,52.6],[160.925,48.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.9,37.7],[-123.76,37.95875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.405,35.8525],[34.753047,35.780938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.910476,36.686746],[26.74957,36.893555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.63,16.96],[-87.5625,17.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.2275,21.7875],[-71.9175,22.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5,-35.385],[5.395,-35.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.6275,4.78625],[125.6825,3.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.5725,42.6125],[-55,45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.0025,34.0075],[-50,32.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-30],[-95,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.964502,40.340308],[-68.64,40.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.083315,56.214521],[16.769199,56.145088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-15.9275],[-156.305,-16.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85,-15.17],[-80,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-40],[-10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.182188,39.947227],[24.0525,39.725586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.252344,55.362188],[4.223594,54.010781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.616875,37.915625],[9.879062,38.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,60],[-39.0175,62.9475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.654141,-14.443984],[-165.06,-15.171563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.076138,39.862085],[25.59231,39.925566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,10],[-180,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.22,30.4775],[130.9,31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,10],[-180,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.51,44.8475],[-15.92,45.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.193125,30.3525],[-76.835,30.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.574063,54.429688],[5.698438,54.094687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.27125,58.27125],[-1.267969,57.714297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.31875,62.093125],[20.366641,61.700234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-4.4625],[-114.025,-6.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.67875,37.9675],[18.585,38.76]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[151.14,41.9725],[150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.33822,56.091329],[10.777886,56.109766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75.3,9.7],[73,15.3],[72.4,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.758359,55.537734],[19.097383,55.425762]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.600625,61.94375],[17.719883,62.298301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.934531,57.566284],[7.559668,57.22002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.847993,36.641846],[14.955469,36.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.4975,21.355],[35.3775,25.62375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.395,13.5775],[-93.97375,12.928125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.577188,39.564063],[19.343398,39.702012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.255625,38.57625],[-123.96875,38.284375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.192188,38.465625],[0.451387,38.769238]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.21,55.465],[-14.0375,56.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.19875,40.162734],[2.15375,39.811406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.9725,-24.4025],[59.49,-29.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.1325,12.6525],[-112.55,12.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.179121,39.955371],[5.775,39.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.5325,0],[65.02,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.695625,38.028125],[13.790879,38.328535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155,-35.385],[-155.3375,-35.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.04625,5.08875],[150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.341704,49.829033],[-5.610078,49.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.31,33.4825],[35.035,33.97625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.3525,-52.7575],[-50,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.08125,61.92875],[5.070625,62.185625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.9,31.3],[123.269375,30.914375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.6375,43.86],[-3.949375,43.999375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.100732,38.490039],[25.315215,38.888848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14,65.975],[-13,66.2425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.507051,43.373496],[14.346814,43.727184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.061165,63.013625],[19.00125,62.650625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.475,42.7],[32.46,42.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.146875,63.775625],[21.86875,63.69375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.04625,-10.92375],[129.4925,-10.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,13.965],[130,9.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.261014,21.467326],[-157.896563,21.191875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.4875,40.44],[19.046445,40.513301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,10],[63.99,8.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.762656,26.469375],[-85.78125,27.62625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,40],[-50.0025,36.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.625,36.43125],[30.91875,36.6425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.275918,61.147715],[18.700071,61.24363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.04332,37.265273],[23.314688,36.95625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.770625,34.485],[32.105,34.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.174857,43.541549],[-3.04375,43.778125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.535,-40.075],[-88.17,-38.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.9125,23.80125],[-73.5225,23.49875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.965891,58.906169],[10.266152,59.013701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.481746,38.133721],[25.091484,37.840859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-30],[-110,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.272207,57.5154],[8.482715,57.360273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,15.6],[-111.955,16.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.295,-9.31],[-95.0025,-5.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.635117,43.933633],[14.346814,43.727184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.455625,29.054375],[-93.716875,29.488125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.225,50.14],[141.0925,49.3875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.0025,27.1475],[-86.768125,26.300625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.3125,-33.9525],[-47.2475,-35.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.105,59.78375],[2.6825,59.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.9875,45.7225],[-15.4825,45.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.3,-23.5],[-39.6975,-23.75625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.66,58.8675],[-168.735,59.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.8375,38.6025],[-74.56625,38.69125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.056216,54.759629],[-0.718125,54.610547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.2625,-7.2125],[120.945,-7.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.46627,36.936104],[-9.234932,36.621201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-10],[-12.5275,-10.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.91875,32.03125],[-77.3225,31.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.8825,-16.935],[149.4325,-18.7475],[153.3825,-23.82375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.8875,36.2875],[-72.5825,36.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.051699,38.925605],[20.0475,38.4725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.939199,44.269688],[13.246099,44.256753]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.480322,36.283815],[14.874719,35.952957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.586084,60.382939],[26.210313,60.347227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.046392,53.582031],[1.765,53.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.15375,39.811406],[2.156807,39.539702]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,30],[136.6425,30.4275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.082495,36.676348],[14.2268,36.042238]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.230312,54.725938],[-165.8,55.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.862468,50.634133],[0.995137,50.41293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.3575,62.6875],[-8.12875,62.07125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.8025,-6.09],[123.7825,-5.0725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.5,71.63875],[29.145,71.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.4225,-4.95],[137,-9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.5275,-18.02],[171.805625,-18.205625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.7025,3.805],[119.64,2.9825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-106.1175,3.93],[-105.0025,5.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25,-25.2775],[-22.8175,-27.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.73375,37.345],[17.34,37.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.315,-39.7075],[41.645,-40.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-50],[-10,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.376821,41.597085],[9.840806,41.531836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.1675,66.99375],[41.93,67.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.5975,-20.05],[-6.1525,-17.26375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.818125,50.191875],[-11.108125,49.92875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.28875,33.04125],[-15.86,33.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.26,30.3725],[-79.275,29.6875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.6,33.9125],[-57.793125,32.43375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.76375,56.775625],[19.831406,56.232656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.3725,36.8875],[-22.4875,36.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.216087,56.758495],[11.950625,56.411104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.9,46.25],[33.9575,44.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.85,3.8975],[-165.31,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.643446,35.63584],[23.89373,35.965781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.6125,34.7425],[-67.9575,34.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.181152,37.325801],[11.935122,37.151133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.133906,53.819219],[2.44,53.84375],[3.345664,53.816563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[83.62,-33.935],[87.385,-32.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-109.8325,21.395],[-107.184375,19.263438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.8775,0.89],[-31.3,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.6175,61.94875],[-6.645937,61.87375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.3,35.9],[142,38],[142.25,40.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.25,40.6],[145.31,40.3625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.1125,23.3],[-64.6475,24.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.6575,-30.435],[-48.74,-31.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.73375,63.275],[19.061165,63.013625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.5225,43.755],[-131.785,42.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.6325,61.8825],[-166.3,61.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.6025,37.0125],[-14.41375,37.29375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.50375,61.21],[19.863638,60.867437]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-104.945,74.32],[-111.295,74.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.095,75.49],[17.2425,75.245],[17.605,74.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.4125,-3.7075],[113.93125,-4.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.859038,53.012542],[-5.56,52.805469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.045,2.995],[-120,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.649375,59.885],[21.366875,59.841875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.87625,18.49625],[-66.530625,18.64625],[-66.111719,18.575273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.173555,40.243291],[13.374531,39.867656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.4,15.565],[-150,15.5225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.1075,10.5775],[-89.5975,10.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.634346,41.310195],[16.324414,41.463242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.057578,62.840937],[20.442869,63.090898]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.530459,43.106787],[9.483052,43.441766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-50],[-144.8875,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.1,13],[121.42875,11.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.543535,55.029609],[17.065625,55.181445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.6525,42.17],[41.155,42.17625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.665,40.5875],[-10.805,40.535],[-10.923906,40.437031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.778281,37.650781],[6.05,37.3975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.925,43.928242],[13.784238,43.718418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.32625,68.454063],[14.06,68.78625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.1625,-36.1575],[26.056875,-34.52125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.453618,44.371019],[14.357129,44.037832]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,13.2675],[-38.2575,11.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.031494,40.980557],[10.553125,41.41875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.894749,36.008716],[23.271992,35.712578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.542344,48.407207],[-5.619805,48.723728]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65,-35.385],[70,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.930508,52.306133],[3.105825,51.965063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.373125,19.325625],[-66.111719,18.575273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.628906,52.187148],[3.105825,51.965063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.73792,58.188291],[17.867734,57.827891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.82,22.8825],[-107.4,23.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-10],[-117.1775,-7.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.4325,36.11625],[-73.27,35.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-7.345],[70,-9.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,28.0325],[-140,28.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.3375,-35.07],[-154.52,-34.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9575,39.3825],[5.179121,39.955371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.585742,40.782461],[1.624375,40.47625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.74,-31.3675],[10,-31.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.750116,44.564231],[14.453618,44.371019]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.021406,54.307031],[0.4925,54.0925],[0.906953,54.030547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-5.0025],[71.1475,-6.0675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.24125,31.978437],[34.5275,32.501875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.94125,41.256875],[4.995625,41.708594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.335,25.0775],[-77.62,25.20875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.357454,37.90199],[11.932227,38.128867]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.906953,54.030547],[1.17,54.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.07,8.1075],[-106.1175,3.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[102.09,9.03],[102.6075,7.8125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.7075,41.12],[39.45,41.425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.47418,35.538633],[26.238047,35.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-10],[80,-12.815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.825,8.84875],[65.0575,8.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.3175,39.1025],[4.779531,38.952188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.680625,44.978125],[-2.615,45.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.508125,67.472813],[13.891875,67.750625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.03125,40.54625],[23.8325,40.5175],[23.885,40.4925],[24.03125,40.54625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.399375,65.4575],[22.977471,65.441455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.864043,44.238911],[15.129075,43.962122]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.48875,49.79375],[-63.355,48.9275],[-64.4575,47.2375],[-64.35,46.655],[-62.42125,45.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.615,-35.24875],[-51.255,-32.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.46249,50.480791],[-3.48334,50.045639]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.2625,26.2625],[-86.768125,26.300625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.8225,35.7175],[14.314375,35.810312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.6575,35.5325],[35.7,35.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.2975,34.25],[27.095,34.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.2,63.6],[-54.2,69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.0925,34.2325],[29.650625,33.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.8825,54.555],[15.519507,54.514373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.839688,57.517383],[-6.649375,57.014063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,9.7525],[-78.0325,9.5375],[-77.0775,8.615],[-75.73,10.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.32125,60.575859],[19.527812,60.725469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.126279,56.452363],[20.176953,56.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,-10],[-136.34,-13.8075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.833203,59.214102],[21.641016,58.810508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-40],[62.8325,-37.3875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[112.625,-21.5975],[113.47,-21.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.97,57.0675],[10.465518,56.974839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.8175,-30.89],[-10,-31.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-118.05,-22.065],[-120,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-50],[-34.915,-55.0675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.9275,61.2875],[1.181875,61.661875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.861943,53.343584],[4.95375,53.8075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.21875,32.92875],[128.0575,33.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.02,1.035],[-170,2.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.4,13],[103.12,10.21875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.515,27.395],[-67.9975,27.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.74957,36.893555],[26.444408,37.090765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.619375,36.385625],[34.6575,36.654063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.67875,-34.1675],[160.0025,-34.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.4325,-39.1675],[148.3,-38.4],[150.109375,-37.7925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.366055,57.377656],[-0.86207,57.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.527939,53.538066],[-5.543809,53.938398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.077656,41.655078],[11.437969,41.627891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.1075,35.2325],[-75.3775,35.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.65,-1.3675],[-30,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.605,61.5825],[18.324062,61.500937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.1775,25.6275],[-87.5025,22.8425]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-89.06,74.31875],[-92.685,74.3425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.776211,49.78832],[-2.598662,49.992534]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.225645,60.79873],[20.867422,61.060391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.343398,39.702012],[19.1475,40.194375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,20],[-114.09875,20.05625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.2525,-26.235],[163.98,-24.2175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.613125,37.707813],[-10.435,37.9125],[-10.053438,38.313437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.5425,32.4375],[32.119062,31.647031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.494023,37.61957],[-0.035312,37.537031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.665703,36.064629],[-6.688125,35.751563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.296563,55.430781],[-6.010781,55.513438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.081094,57.984375],[4.6675,57.016875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.27709,61.27605],[19.501523,61.532109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.09375,7.11125],[166.2575,7.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.995391,50.711562],[-5.25375,50.665625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.5325,0],[67,-2.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.24,70.805],[-8.6875,70.7575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.919531,40.625625],[7.5675,40.84125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,10],[-40,13.2675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.88625,28.0375],[-74.465,28.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.400735,37.541272],[26.444408,37.090765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.63,56.625],[-17.06,57.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[89.3275,8.965],[81.9,5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.2575,11.83],[-36.0175,10.010625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[79.545,2.6075],[81.9,5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.827482,36.412427],[26.910476,36.686746]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,20],[-140,20.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.17,-56.00125],[-66.13,-56.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.634387,53.48209],[-3.660864,54.007737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9175,66.1725],[8.1175,66.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.75457,40.789453],[24.954062,40.591328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.542344,48.407207],[-5.762246,48.171055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.527939,53.538066],[-5.859038,53.012542]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.818125,50.191875],[-11.725,50.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.256563,35.358438],[29.041562,34.546563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.02,-56.065],[-67.88,-56.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.181152,37.325801],[12.385,37.165],[12.667563,36.93707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.675723,57.520352],[7.559668,57.22002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.22,32.245],[-79.48,32.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.4925,29.805],[-69.935,28.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.991055,57.008027],[6.74793,57.527598]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.0725,58.7325],[-158.74,57.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.739375,50.261875],[-6.671084,49.779092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.195,27.03],[-88.73125,28.20875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.446875,41.2025],[-71.69375,40.45375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.69,-17.065],[122.061875,-11.35375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.465625,40.441563],[11.751953,40.351387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.1825,-52.8225],[-75.195,-52.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.790234,62.103242],[20.682969,61.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.2675,32.30875],[-74.225,31.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.3825,21.575],[-108.82,22.8825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,28.0325],[-140.915,28.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.085,35.4625],[-125.795,36.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.6925,42.355],[-70.19125,42.10375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.482715,57.360273],[8.749521,57.29083]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.418945,55.960781],[17.768457,55.970605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,20],[-179.275,24.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.793633,52.388354],[2.1525,52.260234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.431328,55.567109],[17.768457,55.970605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.0025,-36.6225],[70,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.0925,56.73],[-165.2525,56.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.0025,24.6925],[-150,26.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.84625,-11.78375],[131.8,-10.5]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[119.08375,75.635],[124.3575,74.58],[130.85,74.06375]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[80.8375,74.155],[88.36,76.065],[96.92625,77.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.66251,40.987446],[9.896992,40.836719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.8175,27.5325],[-72.33,26.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.496826,55.929531],[14.365,55.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.406515,40.720172],[24.379602,40.247499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94.97625,-15.1475],[90.103125,-19.976875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.055937,-10.021562],[-100,-8.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.2625,63.765],[-13.9575,63.79625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.625,40.64875],[25.303721,40.320674]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[58.0075,-20.69375],[54.9725,-24.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.3675,59.0125],[-0.301875,58.63625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.1775,-33.0675],[10.0025,-33.5725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.585742,40.782461],[0.947939,40.484336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.250312,36.785],[20.554375,36.50625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.375,47.145352],[-2.0825,47.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-50],[-97.635,-52.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.51875,36.50375],[1.948125,36.88875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.08125,56.24375],[6.489199,56.099004]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.835,39.23],[-32.360937,37.845938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.99,36.340625],[30.905,35.94]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.828125,50.955625],[-4.166472,51.147981]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.075752,42.085078],[10.748457,41.876426]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.17501,38.520723],[8.616875,37.915625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.879062,38.0525],[9.68375,38.41625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.667563,36.93707],[12.520449,37.301445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.461641,41.581094],[17.309222,41.237849]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.014922,61.642578],[19.27709,61.27605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,32.97],[-30,30.9025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.1975,58.83],[12.9025,58.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.154155,53.500967],[4.861943,53.343584]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.7475,-20.37],[10.73,-22.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.875781,55.545547],[17.065625,55.181445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.68,14.2075],[-79.78375,12.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.462969,66.379375],[-14.295,66.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.691743,57.919163],[5.1825,57.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.524257,42.029749],[16.655576,41.640464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.825,8.84875],[70,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.6425,63.6225],[9.934941,63.381724]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.7025,16.0625],[38.1175,19.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.180596,59.44479],[23.014063,59.174375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.89,-45.405],[-10,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.957869,58.265466],[6.121537,57.878751]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.848125,70.810313],[31.40125,70.75125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.055,-10.0375],[64.4525,-10.0325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.429375,37.475625],[-122.9,37.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.211406,55.83875],[10.95052,55.873606]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.363437,66.349375],[-21.1075,66.74125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.79,56.91],[4.02375,57.048125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-10],[-10,-12.895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.525,-16.085],[148.4125,-13.8675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.60125,35.39],[12.375,35.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.686284,58.244041],[9.21811,58.473256]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.356279,41.171138],[8.452188,41.625078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.65,47.25],[154.355,47.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-40],[50,-37.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.815,38.0625],[-74.360938,37.926563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.470957,56.224805],[17.969731,56.628496]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-104.945,74.32],[-105.4375,74.62],[-104.805,75.75],[-107.585,77.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.151875,39.17],[-12.71625,39.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.78,-30.2675],[-45.63,-30.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.714106,43.588721],[9.038979,43.900977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.836875,35.58125],[-13.13,35.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[56.545,-18.795],[57.55,-19.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.285,18.84375],[-62.664375,17.281875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.860312,54.820225],[16.432834,54.658691]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.965,67.1025],[13.34125,66.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-17.8225],[179.7325,-18.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.0125,64.135],[-0.9775,63.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.65375,68.94],[14.32625,68.454063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5,-5.0575],[-10,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.84,3.6725],[-7.549297,3.524844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.2525,16.215],[41.41,15.96],[42.053125,14.906875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.101406,56.646094],[-5.720547,56.398438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.035,64.5325],[9.17,64.80375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.622598,66.124668],[12.2575,65.63625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[87.41,-17.5475],[89.5125,-19.5375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31,33.95],[31.37,33.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.723438,43.980312],[-5.509331,43.617627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.374941,42.33957],[18.366875,41.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137.1625,-9.81375],[136.8775,-9.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.8775,-9.695],[135.7725,-8.975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.19,36.35625],[18.925,36.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.1375,27.8],[-94.415,27.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.4975,13.5],[-61.5375,14.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.005625,28.862813],[48.84,29.960469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.9225,29.2875],[-150.09375,30.035625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.3375,37.81125],[10.240937,37.558594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.85,33.665],[129.100937,35.027187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.725,24.49],[128.3,24.99875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.031875,5.0675],[62.9075,7.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.48334,50.045639],[-3.77498,50.063242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.007187,41.191328],[2.893906,40.936875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85.155,14.4225],[82,16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.1475,38.84125],[6.5125,38.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3975,38.3775],[4.02625,38.419375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.863638,60.867437],[19.615273,61.027617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.72375,22.13875],[120,22.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-30],[-174.455,-24.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.5275,62.9775],[-167.2475,61.8275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.283926,41.33125],[2.535918,41.327461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.5,-30.5],[-49.575,-32.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.0825,15.2525],[65.08,14.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.14,23.20375],[-73.58625,21.51375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-20],[-25,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.04,49.3675],[-8.705,49.365]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.752969,61.821328],[19.734531,61.2575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.796074,42.131953],[16.483247,42.322456]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.1975,28.7275],[-73.2525,28.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.411563,71.279375],[20.725,70.63125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-25.8475],[-30,-27.9925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.21,6.97],[157.4675,7.516875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.5475,43.29375],[4.817695,43.257109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.566484,29.254062],[-16.106563,28.959063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.1,12.7],[-87.8325,13.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.762187,64.915625],[23,65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.7175,-0.7275],[-141.33,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-31.01],[-8.93,-31.1625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[97,13.7875],[97,16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.3325,26.7375],[-79.316875,26.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-10],[86.76,-13.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.0875,39.06375],[-10.00375,40.836758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[78.061875,7.21125],[77,8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,20],[-129.45,19.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.173555,40.243291],[12.680488,40.028066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.47125,60.665],[20.578652,60.157383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.6075,-4.66],[-105.37,-2.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.6775,38.6025],[27.1525,38.45]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.8,-12.2],[128.4,-14.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.1,12.2],[110.0875,11.8675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.245,41.615],[-11.68125,41.27125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.455,44.1025],[-127.71125,42.24875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.582109,50.710166],[-0.271973,50.628486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75,-35.385],[70,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.206715,36.450522],[26.827482,36.412427]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.208984,55.821055],[15.034449,55.423906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.854425,35.840965],[27.318728,35.996227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.416001,50.48667],[-2.165471,50.419958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88.9725,13.265],[92.9775,10.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.0175,62.9475],[-36.85,65.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.495,69.52],[54.385,69.75625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.814453,39.851016],[23.453954,39.883619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.41875,54.29625],[19.6575,54.4075],[19.850234,54.665078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.637969,38.376406],[-70.83625,38.815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.1625,16.9075],[118.555,17.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.8125,-17.359727],[-149.55,-17.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.69375,59.2625],[5.440156,59.17311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115.44,0],[-110.9525,0.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.6125,-24.89],[-30,-25.8475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.278125,36.711875],[-10.9,36.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.59,34.65],[18.0825,35.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.6,-46],[170,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.047529,39.195288],[25.2625,39.667153]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.71375,30.91],[123.269375,30.914375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.29125,17.36875],[-50.013125,19.969375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[62.6075,16.5525],[64.735,14.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.845,37.68],[-68.3725,37.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-22.4575,42.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.305,31.505],[-72.13,31.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.665,7.935],[-137.3075,7.36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.620312,59.264062],[4.703125,58.797187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.965,-32.1375],[7.1775,-33.0675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.441687,37.458124],[23.874049,37.28481]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.28,44.34625],[29.79625,44.13625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.72125,10.76],[107.28625,9.99125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.10375,41.37125],[-70.1475,40.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.52,25.04],[-81.82375,24.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.896309,39.95124],[18.623086,40.538965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75,-15.17],[76.9975,-17.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.93625,35.5225],[35.45,35.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.160495,60.369147],[20.47125,60.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-50],[105.1125,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.865312,37.523438],[-72.5575,37.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.778315,54.922671],[-1.230293,54.959705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.02125,29.221875],[-150.67,29.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.042178,50.586245],[-0.271973,50.628486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.76125,45.06125],[29.9825,45.18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.5725,43.8875],[37.4475,44.380938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.865,39.54],[-30.6425,39.4075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.388594,57.067383],[8.482715,57.360273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.795781,41.606641],[11.077656,41.655078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.806523,54.399775],[11.474169,54.531771]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105.5275,-35.8725],[-100.040937,-39.951563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0025,-44.37],[165.6,-46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.765,37.9725],[7.223164,37.666406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.481746,38.133721],[25.605781,38.426162]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.915625,-10.021875],[53.355,-15.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.57875,27.81125],[-91.7325,27.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.835,40.89],[-132.339375,42.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.844531,43.389062],[13.784238,43.718418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[56.3525,5.8975],[58.89,1.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.6875,36.445],[-69.2375,36.1525],[-68.03,35.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.1425,0],[-28.65,-1.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.894749,36.008716],[23.245981,36.202173]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.00125,35.73],[-9.395,35.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.22375,43.8675],[-10.154512,43.383896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.085,30.175],[-73.91875,30.246875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.500449,38.29293],[13.238955,38.558301]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.86,33.33],[-15.0825,33.72],[-14.78,34.35],[-14.08,34.49375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.9975,-52.4325],[-50,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.11625,34.40625],[27.9775,34.6775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.9975,57.20125],[5.2525,57.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.675,-12.69],[141.32875,-12.59625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.98,42.2625],[-150.0025,42.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.46,61.4425],[7.4175,61.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.5125,57.8775],[-137.21,57.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.4625,46.945],[-10.405,46.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.08,-39.15],[-147.4925,-40.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.30375,59.695503],[23.003477,59.784258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.78125,62.4725],[-79.82,64.93],[-79.5425,66.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.655,59.815],[-92.925,60.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.61125,42.206875],[38.81125,42.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.1325,-34.5325],[111.6625,-33.6775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.254312,53.060234],[3.34,53.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.186611,42.07395],[10.131699,41.730029]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.72,42.5525],[-160.0025,42.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.24625,-12.33],[-4.26,-10.0325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.0175,22.14],[-51.3025,22.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.215,42.3025],[-11.68125,41.27125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.3425,33.0425],[135.07,33.19125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.9725,35.53625],[12.756484,35.875937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.680625,44.978125],[-2.36625,45.32375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-12.5025],[0,-14.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.625806,61.556221],[17.95625,61.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.08125,34.969688],[-18.195,33.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.8925,34.3675],[-121.54557,34.599387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.332813,11.999063],[110.0875,11.8675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.925582,36.401348],[20.554375,36.50625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.573125,56.775],[17.864209,57.012236]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.58625,30.37],[-79.26,30.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.5175,33.935],[-69.805,34.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.056216,54.759629],[-0.778315,54.922671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.9625,37.095],[-11.760625,37.49875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,21.29],[-150.0025,24.6925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,48.695],[-28.8025,48.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[56.354375,26.44875],[55.475,25.785],[55.15,25.56875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-109.8325,21.395],[-109.7,22.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.899375,21.717266],[-83.0375,16.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.543809,53.938398],[-5.81623,53.720801]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.165,53.38],[-40.0025,53.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.95625,61.345],[18.275918,61.147715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.0875,-20.03],[-20,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.615547,36.486328],[13.635605,36.824463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.0875,59.405],[5.69375,59.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.1025,-45.3925],[130,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[47.04375,-1.28625],[47.80625,0.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.324414,41.463242],[16.270781,41.757656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.64,37.465],[10.240937,37.558594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.906172,53.379531],[-4.149774,53.588088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.69875,54.31875],[-3.660864,54.007737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.09355,36.067437],[24.66959,35.871655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70,-60],[-80,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.136162,62.23126],[21.2175,62.36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155,5.0575],[-150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,13.62],[-51.665,15.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.16,58.649062],[-5.738125,58.746562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.6725,47.0525],[-14.3775,46.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-20],[-95,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-40],[-4.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.427188,21.252187],[121.4625,21.815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.9,-20.27],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-10],[-105.6475,-5.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.415,41.74],[-168.7525,41.3975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.0075,20.8025],[-69.1325,22.01]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113,-23.5],[114.13625,-21.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.585,2.8875],[128.15,2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.66125,49.7325],[-16.8875,48.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.09875,36.04375],[17.998125,36.25625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.115,53.365],[-38.165,53.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,2.7425],[-36.455,6.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.094375,48.813125],[-8.8125,48.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.685,27.185],[-69.8,28.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.185,1.95],[56.3525,5.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.585742,40.782461],[1.825,40.678594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.291563,68.2],[12.771719,67.683125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.63,30.1175],[-70.4925,29.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.9525,29.1675],[-91.30375,28.42125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.751953,40.351387],[11.69875,40.73625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,32.955],[-50,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[105.545,-9.3325],[110.2475,-8.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.7725,34.595],[-30.0025,34.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.395664,37.676875],[15.366363,37.294783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.6175,52.545],[-150.8425,53.4725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.13875,16.43875],[-69.39625,17.56125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.0025,55.1925],[-25.2475,55.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.0275,62.43125],[-6.707656,62.230937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.1125,-45.4025],[100,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.06,68.78625],[13.805,69.11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.455,53.06],[-152.8425,51.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.1475,-21.2175],[-2.645,-20.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.398516,51.237422],[2.208242,51.472422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.4025,13.72125],[-67.68,14.0475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.366363,37.294783],[15.76832,37.284453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.6,-46],[171,-42],[172,-40.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.485,42.68625],[35.295,42.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[77.755,1.285],[76.4825,2.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.98625,54.46125],[-165.230312,54.725938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.155,57.743437],[21.096387,57.439023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.180273,41.264727],[33.4275,42.895625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.41,63.3925],[-16.6725,63.7675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.08125,56.24375],[5.925,56.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.54,70.88],[-147.1825,71.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.8025,34.1425],[-64.37,33.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.84946,41.877839],[9.376821,41.597085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.6675,39.105],[18.2475,39.29],[17.94125,39.160625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.532946,50.24703],[-1.839488,49.887781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-20],[-165.06,-15.171563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.83375,51.64625],[-9.687598,51.32625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.6125,63.6925],[-161.945,63.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.512065,43.115015],[16.288393,42.803041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.176094,58.115781],[19.680195,57.877598]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.3025,22.55],[-50,23.1975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-40.5575],[160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.68875,36.30375],[33.9425,36.128438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.00375,-6.29125],[112.175,-6.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.7525,41.3975],[-170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.855,16.94125],[-76.590625,15.750625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178,58],[-179.9075,54.605],[-177.293437,54.639375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.098125,61.650312],[18.275918,61.147715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.035,34.800625],[21.5725,35.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9975,-29.9975],[5.8925,-30.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[92.5075,-2.5425],[96.715,-4.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.51875,30.995625],[-67.4025,30.0475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.8,26.3],[-79.316875,26.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,25.9325],[-30,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.41875,-8.205],[125.7,-8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.645,-40.035],[40,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.6725,49.6525],[-12.021875,49.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.316113,57.824902],[8.272207,57.5154]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.745,25.145],[121.6675,25.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.789219,39.659375],[0.797266,39.375654]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.117656,58.577188],[20.39668,58.633281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.0875,32.5075],[28.92,32.83375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.9975,-33.2625],[-30,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.100625,59.299062],[2.3475,58.94125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.5475,45.8175],[-28.8025,48.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.645,5.8575],[-84.1975,4.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.405,46.1925],[-9.385,46.7575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.2625,39.667153],[25.41489,39.184761]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.8525,-14.8625],[84.195,-14.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.919531,40.625625],[7.638906,39.812305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.82625,33.4675],[-67.51875,30.995625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[98.7225,-28.7925],[95.5475,-30.0825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.8625,42.34],[-37.685,42.5925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.020625,15.224375],[-135.84,14.3175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.345554,40.599189],[1.825,40.678594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.255,59.3125],[2.105,59.78375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.9375,36.4925],[-130,37.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.750116,44.564231],[15.02625,44.53125],[15.32875,44.3025],[14.864043,44.238911]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.0675,36.44875],[129.3,37.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.8,-19.3425],[178.9,-20.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.1825,34.97],[129.100937,35.027187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.528043,59.2655],[10.266152,59.013701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.075391,57.080576],[12.216087,56.758495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.870625,38.90709],[7.7825,38.66]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.8825,40.165],[150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.0025,46.5575],[-50.0025,47.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.484375,38.125],[-14.93125,37.3425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.15,64.27125],[-167.3125,63.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-106.1175,3.93],[-105.305,2.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.27,31.8825],[-32.55375,32.79625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,-5.0575],[-150,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.285,-20.7875],[177.76875,-18.77625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.0025,15.4975],[-154.685,15.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.0525,27.7925],[-73.195,27.37375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.3,-39],[146.04,-39.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.655,37.74],[-25.9275,37.90625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.519375,39.689141],[4.939375,39.874063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.7775,-31.9325],[-160,-32.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-50],[-80.715,-50.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.33,55.055],[142.04,55.18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.189727,57.350195],[11.382346,57.877431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.874049,37.28481],[24.168114,37.267]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,48.245],[-150.0025,43.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.305,-17.445],[-95,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,40],[-129.0225,40.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.857422,54.187529],[7.72515,53.843041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.279375,43.810625],[-8.618125,43.990098]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.819375,43.974375],[-132.1425,44.9775],[-130.92625,45.68375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-40],[90,-32.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.2575,42.0275],[140.205938,45.177344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.75125,28.85],[-86.31,28.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.35,66.365625],[-17.119157,66.387944]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.179648,53.560078],[-0.2,53.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34,-26],[36,-24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.7475,45.7025],[140.205938,45.177344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.8,26.4],[-79.89,26.7925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.625806,61.556221],[17.898516,61.085391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.7075,63.03],[-4.0125,64.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146,43.2],[145.9725,47.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75,-35.385],[80,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.72,64.3375],[-21.7275,64.3475],[-21.971631,64.211053],[-22.427988,64.244668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,51.3],[-180,62.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94.97625,-15.1475],[100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.67875,37.9675],[16.8625,38.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.398281,57.002461],[19.76375,56.775625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[77.6925,0],[72.458096,-7.128027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.443027,55.467617],[13.717148,55.296562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115,-15.17],[-120,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.8425,53.4725],[-151.58,56.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.923047,57.673516],[-3.525625,57.746875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.915,-38.485],[-50,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.36875,65.796875],[-20.652344,65.973594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.04375,65.665937],[-21.032969,66.305312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.1475,40.194375],[19.14457,39.892959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.45,40.7325],[-137.9025,41.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.82,8.365],[70,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.09375,30.035625],[-156.5125,30.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.041094,59.009687],[5.440156,59.17311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.215,70.4425],[21.528125,70.348125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.497386,42.746442],[10.407744,42.386943]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.255,20.27],[-33.855,24.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.514375,40.472812],[3.765,40.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,0],[-115.44,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.5875,52.28],[-50,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.68,14.2075],[-80.5,14.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.492402,40.297148],[-70.46,39.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174,-34],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.68375,38.41625],[10.0225,38.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.885,25],[-86.6425,25.1675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-3.09],[0,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.5,64.3],[-165.4275,64.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.753125,19.26875],[-66.111719,18.575273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.3,-39],[144.9,-38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.180596,59.44479],[23.003477,59.784258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[96.4025,14.15],[97,13.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.68,14.0475],[-61.804063,11.961875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.693906,-23.070781],[166.7075,-23.945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.7825,48.3975],[-30.055938,50.082188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.8775,-33.13],[40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.9475,26.41625],[54.44,25.6625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.08125,61.92875],[4.740021,61.920164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.33,55.055],[141.95,54.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[102.6075,7.8125],[104.89625,8.33125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.300605,48.218477],[-6.068125,47.966406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.6425,51.4775],[-5.865488,51.606768]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.86207,57.175],[-0.5,57.125],[2.01875,56.948125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.94875,41.3],[4.365,41.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.7775,32.885],[122.18,33.0425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.374531,39.867656],[13.842695,39.815234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.7575,13.495],[-65.625,12.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[42.9075,11.66],[43.535,11.77625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.61875,39.029219],[0.385488,39.396094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.7975,-7.165],[172.615,-0.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.041562,34.546563],[28.11625,34.40625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.8275,48.9],[-46.515,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.4725,51.485],[-165.175,51.5925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.629463,38.542939],[-9.314297,38.348574]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.710234,63.392363],[21.363828,63.562969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.535,11.77625],[44.1525,12.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.8925,33.1425],[-78.875,32.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-14.8875],[-2.24625,-12.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55,35.385],[-54.50375,34.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.3,-11],[122.3625,-11.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.035,22.0825],[-35,25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.045,1.8275],[73.4575,1.425],[76.4825,2.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25,-35.385],[-25.3675,-35.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.703306,36.368428],[26.020625,36.225234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.0925,17.215],[62.6075,16.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.995391,50.711562],[-4.828125,50.955625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.09875,20.05625],[-114.7,21.3175],[-114.92125,21.76375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75,-53],[-75.96375,-52.84625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.1425,-42.2875],[57.2725,-43.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.035,-25.9975],[-72.8,-29.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.540937,39.187188],[17.3725,39.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.978125,33.243125],[27.385,32.965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-10],[-160,-15.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.4875,51.578281],[-6.949141,51.602773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.345,34.3],[-8.179141,34.739766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.645937,61.87375],[-6.3025,60.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.06875,60.39125],[20.47125,60.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.0625,42.3675],[132.1725,42.24625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.260771,53.982871],[-3.660864,54.007737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.955107,50.582607],[-6.100781,50.228047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.103291,42.465767],[10.786808,42.55563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.9775,47.44875],[-7.5025,47.678125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.5925,62.96],[-161.7225,60.7625],[-162.62,59.6475],[-163.6125,59.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.8225,-16.9675],[-12.0875,-20.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.265625,-34.81875],[-56.1625,-37.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.63,-33.6625],[-20,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.403125,57.536953],[21.096387,57.439023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.631641,34.477109],[30.0925,34.2325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.8025,54.52],[-171.8025,54.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.848125,70.810313],[29.39,70.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.97533,54.54129],[11.269346,54.326816]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.234932,36.621201],[-10.075,36.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137,-9],[142.61375,-9.98375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.8825,38.91],[4.02625,38.419375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.107246,56.027568],[-1.603267,55.799884]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.896309,39.95124],[19.1475,40.194375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.004155,40.577924],[13.173555,40.243291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.73875,48.4325],[-122.935,48.230625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.679688,38.073906],[-9.629463,38.542939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.964893,42.586113],[15.670596,42.432334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.100625,52.53],[5.3175,52.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145,25.2775],[-142.5275,27.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.077085,43.85087],[10.251458,43.390162]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.5875,60],[-32.7275,60.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.235,-1.3325],[131.4,-3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-8.6475],[159.5775,-9.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.604336,56.875566],[7.690146,56.531816]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.09,47.6825],[172.6375,43.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.86875,34.49875],[-54.50375,34.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.633047,43.456328],[28.699687,43.750625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.041875,49.915625],[-139.8075,50.5925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.69,-17.065],[122.865,-15.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.034062,54.128125],[5.910372,53.77391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.343223,49.781855],[-4.530977,49.444297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.6,41.8875],[-86.4175,45.2575],[-85.8775,45.825],[-83.9,45.7075],[-82.19,45.03],[-82.305,43.2525],[-83.115,41.9675],[-82.0725,41.77],[-79.375,42.635],[-78.835,43.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.128066,41.129287],[2.283926,41.33125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.935493,55.269111],[7.939844,54.86375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.41708,54.623066],[-0.718125,54.610547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.973931,13.114248],[-59.945,13.0875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.0825,27.2425],[-67.4425,27.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[62.8325,-37.3875],[66.8375,-37.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.235203,56.705232],[11.03021,56.313276]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.0375,33.675],[14.874719,35.952957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.1225,26.2125],[-74.3075,26.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.528906,50.685781],[-6.258672,50.534453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.360816,50.226732],[-4.029033,49.911714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.6825,23.11],[-87.23,22.931875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.965891,58.906169],[10.076912,58.656553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.8775,-2.675],[5.3,-2.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.861943,53.343584],[4.638936,53.120352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105,-15.17],[-105.82,-14.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.3,-8.9],[178.17625,-7.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.787695,49.333008],[-5.100801,49.464824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,1.1475],[-40,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.473359,65.570117],[25.22625,65.060625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.236143,42.952451],[15.614771,42.803228]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.9,37.585],[-10.613125,37.707813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.3425,35.5925],[-123.28625,37.22375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.53168,36.183516],[-4.988711,36.006094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.85875,32.6075],[-74.7475,31.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-40,37.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.213745,51.676665],[3.105825,51.965063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.223125,43.2575],[4.817695,43.257109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.7625,8.72],[121.6125,11.2175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,0],[-145.3725,4.6825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-20],[-105,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.5925,-11.505],[152.6975,-13.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.258672,50.534453],[-6.100781,50.228047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.793125,70.055],[30.401875,70.000625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97,22.3],[-92.74875,22.244375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.675,19.8],[-68.9,19.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.656875,49.909922],[-7.087813,49.715625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.541406,62.844219],[20.790234,62.103242]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-70.7125,-53.4425],[-70.875,-53.76]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.43585,54.216177],[7.857422,54.187529]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.435,32.565],[-17.85,32.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.5825,10.0275],[-141.065,8.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.7,-8],[125.574688,-7.068437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.7175,64.530723],[22.244062,64.816875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.645,-20.0375],[-6.1525,-17.26375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.55375,32.79625],[-30.65,30.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.0025,33.52125],[-19.96,29.978125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.146562,51.80043],[3.6775,51.7775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.089531,49.997148],[-0.50989,50.131948]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.7125,37.845],[1.1375,37.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.115,33.525],[15.2,33.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.33,-26.5375],[9.9975,-29.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.631603,57.456724],[10.465518,56.974839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.80375,41.35375],[3.007187,41.191328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.473301,58.69998],[5.183804,58.639092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.791382,50.254956],[-5.817515,49.94198]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.775674,39.137302],[25.41489,39.184761]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.185,14.27],[-68.5375,14.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.67375,38.82625],[-11.2325,39.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.15,52.2525],[6.1125,52.28],[6.000312,52.536875],[6.979961,53.339355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.5396,38.345166],[15.26334,38.308379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-40],[-76.5,-46.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-118.915,33.47],[-118.465,33.6375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.8375,26.245],[-87.2625,26.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.146172,60.864141],[4.707583,60.778877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.89,-45.405],[-20,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13,66.2425],[-13,66.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0025,-36.9625],[160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.49,37.405],[-74.360938,37.926563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.015801,55.898398],[17.431328,55.567109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.183784,44.192361],[8.924971,44.285557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.948125,36.88875],[2.495,36.9475],[3.18375,36.947969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.7325,-8.515],[135.4575,-8.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.06,-15.171563],[-168.33375,-11.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.195312,65.672344],[-24.69,65.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.174857,43.541549],[-3.340625,43.893125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105,-5.0575],[-106.8325,-3.2075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.273047,37.273672],[17.63,37.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.465625,40.441563],[11.187841,40.53687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-177.755,47.8925],[-179.7325,47.925],[-180,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.8025,60.815],[5.262852,60.422266]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.86,28.701563],[-16.163438,28.516562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.3275,44.1125],[-138.8625,41.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.5825,37.82375],[7.505937,37.529688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.45,-53.7],[-83.455,-54.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.295938,17.16375],[-63.12,16.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.3625,66.1375],[-24.69,65.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.53,50.5475],[-19.2225,50.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.634229,37.938584],[15.5396,38.345166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.514229,59.012822],[-2.853438,59.061875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.993164,56.89248],[9.2975,57.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.405,37.81],[-122.3975,37.83],[-122.6425,37.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.865312,37.523438],[-71.48375,36.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.815,38.0625],[-73.86,38.99875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.5325,38.3075],[-74.59125,37.648438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.549639,51.438965],[-5.24647,51.492124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.3825,55.41],[10.4,55.43],[10.5275,55.4875],[10.628242,55.61668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.446865,58.058926],[8.316113,57.824902]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.93625,35.5225],[34.98,34.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.483875,49.806055],[-1.302891,50.098242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.18875,39.246875],[0.884609,38.905703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[71.82375,-5.315],[72.458096,-7.128027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.78125,27.62625],[-85.7675,27.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.895,-22.3675],[5.6525,-19.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.885,-28.7225],[111.5075,-25.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.59,-43.83],[76.745,-43.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.741055,38.722437],[24.631413,38.327471]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.758359,55.537734],[18.956563,55.702969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.01375,28.27375],[-79.32125,27.41875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.836484,55.227539],[18.758359,55.537734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.379766,39.994687],[11.751953,40.351387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.97,46.59],[153.5975,46.16875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.884609,38.905703],[1.175,38.98625],[1.432139,39.310298]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.707656,62.230937],[-6.645937,61.87375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.4825,64.0125],[11.275,63.9825],[11.0625,63.8675],[10.955625,63.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.798809,43.312246],[6.423125,43.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68,-52.4],[-65.9975,-48.8175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.950078,39.889063],[17.284863,40.23209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-10],[-152.6125,-7.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.525,37.715],[-70.32125,37.06625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.710312,46.014219],[-7.67,45.2175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.195312,65.672344],[-23.8475,65.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,20.695],[-169.52,20.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.36625,45.32375],[-2.36625,44.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.6375,26.81625],[-77.8625,27.08375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.429688,40.173281],[1.624375,40.47625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-10],[-125,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.049434,40.175664],[24.812754,40.071875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.255,12.8725],[-140,13.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17,33],[-15.38875,34.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.50989,50.131948],[-0.886562,50.420002]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.555,17.3575],[119.4,17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.73792,58.188291],[17.435977,57.930264]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.3475,41.8525],[-169.39,41.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.141519,44.765156],[139.001005,44.710743]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18,-35],[17.26125,-34.13875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95,-25.2775],[96.2075,-24.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.2975,47.7825],[-6.610156,47.673828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.769199,56.145088],[16.476875,56.010977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.633662,55.371553],[-6.506875,55.907187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[148.2475,14.5325],[147.9325,15.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.974531,37.313125],[3.812266,37.140313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[92.9775,10.1375],[91.1725,9.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145,25.2775],[144.2325,26.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.939375,39.874063],[4.927604,39.853875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.323008,60.104219],[26.586084,60.382939]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.57625,58.60875],[-8.62125,58.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.595547,-14.152734],[-170.654141,-14.443984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.88,-16.23],[153.6425,-16.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.335,40.4325],[-73.5375,40.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.508301,42.19166],[6.738301,42.52252]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.815,0.575],[-145.3725,4.6825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.2025,7.665],[-78.525,8.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.788047,36.38876],[24.131104,36.23646]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.74,-9.72],[6.365,-14.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.2125,20.7425],[-73.9,20.27625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.690146,56.531816],[7.379629,56.242959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.7475,70.0225],[-179.4475,69.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.6425,57.26],[-5.75125,57.02125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.483875,49.806055],[-0.885273,49.620723]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.639141,56.784609],[10.914292,56.707234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.648672,59.604062],[26.391406,59.783828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[63.14125,72.01],[67.79875,73.23625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.979375,35.428125],[-48.5525,35.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.9025,51.62],[-139.325,52.0675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.8625,37.725625],[-9.679688,38.073906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.825,61.09],[-5.5025,60.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.5825,36.38],[-72.744375,34.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.265,0.0175],[3.8675,0.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.33,26.99],[-72.3975,26.70125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.2475,-8.7],[112.625,-21.5975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.835625,9.54125],[-82.22,9.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.115,53.365],[-40,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-148.9275,41.2],[-150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.15,2],[130,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0025,-34.5625],[165.29625,-34.67125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.031226,49.609712],[0.255674,49.907744]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.239863,65.526875],[22.648438,65.283398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.82,8.365],[70,8.59125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,-50],[125.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.59,36.469063],[-9.234932,36.621201]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.0375,27.1325],[141.66,30.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.865938,37.32],[6.9225,36.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.125891,35.763713],[24.66959,35.871655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,20],[131.8275,18.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.505,55.25],[9.79167,55.028234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.5,1.1],[118.02,-2.6825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.37,51.0775],[-13.28,51.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.105,38.210625],[13.790879,38.328535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.9375,55.335],[142.33,55.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,8.4575],[160,8.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.16,58.649062],[-5.753125,58.092656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.492695,38.715718],[8.769551,38.558916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-25.8475],[-26.395,-26.595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.955,56.259375],[-1.93998,56.931621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.515,35.455],[-67.0575,35.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.988203,50.156406],[-1.184526,49.875571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.805625,-18.205625],[167.97625,-18.43625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,20],[130,16.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.516147,40.096208],[13.374531,39.867656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.768828,20.000156],[-75.095,19.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.69124,59.906797],[19.908887,59.714678]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.7525,22.455],[119.72375,22.13875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.168114,37.267],[24.417593,37.161409]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.031875,19.47],[-67.33,19.1275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.160938,48.760937],[-6.478906,48.577344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.02375,57.048125],[4.33,57.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.19,43.78],[37.585,43.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.453618,44.371019],[14.110454,44.132203]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.499775,38.82457],[9.231826,39.077734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.51625,54.099375],[1.168828,53.909648]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.03125,40.54625],[23.7025,40.6675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15,-35.385],[-14.615,-35.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.745469,32.9625],[29.59,33.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.48,35.8],[29.728438,35.881563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.8975,17.485],[-167.4575,17.5925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.0025,33.34],[-60,32.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.0075,16.8775],[-25.01,16.93],[-24.81875,16.98125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.5,8.6],[-79.72,7.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-10],[-30,-7.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.7325,16.42125],[-153.2,15.855],[-153.0025,15.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.439744,43.867473],[8.413125,43.543437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.907422,60.282812],[-4.67375,60.906875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.185,44.4925],[-61.6525,44.705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.4625,58.175],[1.195,57.9375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.7825,-0.2125],[-38.16625,-3.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.635,27.5575],[-87.0025,27.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.898516,61.085391],[18.423047,60.707695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.379766,39.994687],[12.015625,39.81875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,10],[-138.435,8.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-25.81],[70,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.829219,47.7],[-5.5775,47.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.825,40.678594],[1.624375,40.47625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.98,-43.1825],[87.7275,-42.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.3975,59.785],[3.854609,60.086406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.25,-3],[-81.9,-5.25],[-81.119531,-6.191172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.530248,42.472596],[14.791904,43.008428]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.99,55.7525],[6.10375,55.97625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.045,10.6425],[-82.964375,9.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.6275,-20.025],[-38.3275,-21.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.5775,39.815],[17.3725,39.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.699922,39.473281],[-9.82375,39.937188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.326152,57.925352],[18.620322,58.012783]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.43,17.565],[-50.013125,19.969375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.592334,59.543623],[23.883651,59.737272]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.935,7.545],[109.9475,7.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.235,47.65],[-17.6575,47.515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.2675,-35.6325],[-155,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.798809,43.312246],[7.115,43.261992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.2275,34.885],[18.0825,35.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.6275,-35.1475],[107.84,-37.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.722383,36.033086],[-3.593711,36.361289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.525,-18.294375],[178.99,-13.905]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.3525,11.99],[-80.935,12.3575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.035,34.800625],[21.07,35.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.92,50.7175],[-12.37,51.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175,5.0575],[-170,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.588633,58.0579],[10.749147,57.717465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.506875,55.907187],[-6.959375,56.04375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.84375,40.83],[-10.8425,41.2075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.73,25.3775],[-86.6825,23.11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.35,2.0275],[45.68,1.57375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.5575,25.915],[-88.45,23.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.757053,43.33144],[9.483052,43.441766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.4225,5.4925],[168.09375,7.11125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,35.385],[-137.7775,32.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.463164,41.705469],[10.553125,41.41875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.17207,39.607148],[0.797266,39.375654]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,41.3125],[-150,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.0025,53.2275],[-30.0025,53.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.233125,37.010625],[20.820312,37.349688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.40375,27.70625],[34.2225,27.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.75875,39.19],[-14.2725,38.4425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.6,34.4],[126.54,33.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.362832,47.675449],[-4.62,47.541875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.675273,59.982813],[26.648672,59.604062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.508125,67.472813],[13.34125,66.955]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.33375,-11.75],[-170.654141,-14.443984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.131699,41.730029],[10.463164,41.705469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.145,71.4025],[29.97625,71.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.495,-20.1125],[58.0075,-20.69375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.90436,57.051143],[8.122251,56.883525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.766562,20.939375],[-74.10625,21.07375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.15,38.9975],[0.241406,39.104531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.136484,66.534727],[-21.1075,66.74125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.1,59.8075],[-1.256875,59.113125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.36875,25.85875],[-19.96,29.978125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.881328,58.08832],[20.834141,57.728828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-20],[-105,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.8225,54.585],[1.43,54.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.9925,-10.060937],[159.41,-9.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.74,20.785],[-45.0625,25.33625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.5,1.2],[123.655,4.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.7625,-0.245],[-88.6925,0.9225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.385,38.1625],[2.155,37.55375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.870631,40.63457],[14.238622,40.677594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,39.25875],[-60.8225,38.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-136.9025,51.62],[-135.0575,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.535,37.7525],[-72.545,37.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.077656,41.655078],[11.251514,41.357402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.3125,-38.1675],[166.67,-38.795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-20],[-15,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.836875,35.58125],[-13.630937,35.532813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.98625,69.51875],[16.5775,69.43375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.423125,43.0775],[6.005605,43.022617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.1225,50.7975],[-5.948643,51.215752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.789219,39.659375],[1.134531,39.588672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.555,36.28875],[-0.64375,35.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.27375,58.90625],[5.183804,58.639092]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.436563,35.03625],[26.648818,35.316318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.415,67.1275],[32.4925,67.07],[32.89,66.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,20],[70,18.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.735,14.905],[60.7175,10.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.6,54.97],[-1.230293,54.959705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.695625,38.028125],[14.105,38.210625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.271992,35.712578],[23.470859,35.316563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.6675,38.215],[-70.97,38.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.194531,21.738906],[119.315,19.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.977471,65.441455],[22.648438,65.283398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.578906,56.432969],[-2.874844,56.456094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.0625,28.750937],[-15.069297,28.329922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.609629,38.297812],[16.113934,37.874624]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40,-40],[32.8425,-37.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.88375,36.8975],[-75.3375,36.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.9475,34.405],[-155,35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.660469,39.537188],[6.9225,39.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.867734,57.827891],[18.163398,57.671094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.4925,-10.63],[122.3625,-11.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.26,25.7775],[121.52,27.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.66,31.3125],[128.135,31.3875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.8,-5.25],[-40,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.00125,55.0175],[0.905,55.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.095625,28.45875],[122.9575,29.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79,23],[-82.065,24.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.66625,34.610312],[-13.33,34.9875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.06,0],[-141.815,0.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.183804,58.639092],[5.081094,57.984375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.625,-38.3225],[-49.7775,-36.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.61875,39.029219],[0.451387,38.769238]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.948125,7.06875],[-81.4,6.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.6625,52.7275],[-50,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.73,-22.1125],[10.425,-25.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.43623,58.543359],[21.107188,58.580234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.19,69.50375],[14.644219,69.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.315702,58.246777],[10.911819,58.086389]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-50],[-154.89,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.3975,5.125],[-10,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.05375,-48.3125],[66.6825,-46.8825],[65.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.07375,18.6675],[-76.4975,18.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.2725,44.125],[30.9,46.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43,-12],[43.1775,-11.6875],[44.4825,-8.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.006875,52.968125],[4.149961,52.716133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-32.9425],[-160,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.5725,22.98],[-18.76,24.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.797266,39.375654],[1.18875,39.246875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.923906,40.437031],[-10.84375,40.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.3275,34.065],[-13.83,33.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.855781,58.365742],[19.176094,58.115781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,0],[130.0125,5.295]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.10125,69.59125],[43.111875,69.78125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.83,38.55625],[118.99,38.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.617188,65.831875],[-13.670859,65.557656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.045,13.36],[118.1625,16.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-10],[-120,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.257798,53.639539],[-3.634387,53.48209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.436602,38.653398],[-28.32,38.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.615,-35.24875],[-49.7325,-35.2075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.943418,37.058242],[12.667563,36.93707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.54625,-22.73375],[170.6775,-22.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.896563,21.191875],[-157.512266,21.273633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.354573,61.169585],[17.625806,61.556221]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.031226,49.609712],[-0.423467,49.701191]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.787695,49.333008],[-4.88041,48.924609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.7975,43.0875],[30.5925,43.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,20],[69.1675,21.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.2925,26.4675],[129.035,26.0875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.418438,63.7425],[21.86875,63.69375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-171.0425,21.095],[-170,20.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,30],[135.3725,28.5825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.54875,42.741875],[7.6,42.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.9125,-23.6575],[169.995,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.6675,57.016875],[4.751055,56.422891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.75,-55.43],[-42.8375,-53.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,50],[-162.105,48.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.03,27.53],[-75.95375,27.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.3075,16.03],[-161.27,16.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.7575,44.095],[-69.5225,43.3975],[-70.6925,42.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.1275,60.58875],[-5.7525,60.12],[-6.1925,59.585],[-6.034219,58.747344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.5025,47.678125],[-7.1925,48.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.2725,38.4425],[-14.484375,38.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.4,41.2],[138.4,38.75],[130.16375,34.34375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.155,14.4525],[144.700625,13.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.036152,57.56498],[17.122656,56.799727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-0.465],[-100,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,0],[73.1125,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.185,44.4925],[-63.5,44.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1525,70.38],[0,67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31,33.95],[31.179063,33.616875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.99,55.7525],[5.49457,55.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.49,56.635],[-0.86207,57.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.11,-45.405],[40,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.262021,42.919814],[17.16127,42.462773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.202847,40.045364],[8.054688,40.210625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.208203,46.725078],[-2.934687,46.844551]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.565913,41.265188],[9.923516,41.146836]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147,-4.8],[144,-3],[141,-2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.081875,66.418125],[-29.24,63.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.791707,36.625627],[24.480055,36.448539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.547754,39.230442],[24.461777,39.558867]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.2,41.58],[-125.195,40.7575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,27.705],[-38.31,28.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.56875,56.308125],[6.08125,56.24375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.325,25.085],[125.4375,22.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.1075,-40.0225],[10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.46,39.675],[1.134531,39.588672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.291563,68.2],[14.32625,68.454063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.136719,18.521875],[-74.8375,18.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.8425,51.4975],[-153.215,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.1325,-10.55],[137,-9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.363437,66.349375],[-23.136484,66.534727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.8275,30.0525],[-40,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.055938,50.082188],[-30.8325,50.8675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.719492,4.111396],[-7.84,3.6725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.633047,43.456328],[28.355,43.2975],[28.064385,43.102422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.54,-54.67],[-57.8575,-52.5475],[-57.63125,-51.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.744297,41.561094],[12.115781,41.194063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.748125,31.585625],[31.619247,31.847697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.038772,52.23241],[-6.106875,51.918594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-20],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-20],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.365,-17.76],[160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-30],[-94.4175,-30.0825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.590625,15.750625],[-73.32125,14.91875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.955,52.8575],[-179.3125,52.3825],[-180,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.3975,29.3025],[-69.0025,29.07375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.689297,51.3425],[-3.340781,51.355312],[-3.090957,51.310059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.5875,52.28],[-53.28,52.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.355,47.1325],[146,43.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.44,25.6625],[55.15,25.56875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.7375,55.8425],[1.5525,56.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,40],[-180,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.431328,55.567109],[17.249531,55.384531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.1325,-10.55],[141.32875,-12.59625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,40],[-180,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.31,33.4825],[34.4975,33.0425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.875625,38.836562],[26.6775,38.6025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.2975,12.4525],[-79.78375,12.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.386719,38.994219],[-71.795,38.64]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.21625,55.1975],[12.554133,55.233171]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[64.7325,0],[60,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[175.5375,-42.975],[-180,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.2125,16.935],[131.33,15.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.7275,60.8275],[0.77625,61.11375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.25,-39.3025],[-62.87625,-41.89625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.2425,10.6275],[93.3,14.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.375,-27.635],[-30,-27.9925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.355,56.495],[-30.0025,55.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.740781,58.415156],[4.703125,58.797187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.3,-8.9],[-180,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.9575,44.075],[35.4925,44.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-163.705,-6.3475],[-160,-1.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.9575,6.0775],[168.09375,7.11125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[97.645,11.2825],[97,11.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.576936,51.453381],[1.928394,51.919619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[93.3,14.4],[89.7275,18.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.366641,61.700234],[20.682969,61.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.51375,5.51625],[-14.54625,8.546875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.786808,42.55563],[10.407744,42.386943]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.660469,39.537188],[8.151791,39.333627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.631641,34.477109],[29.7375,34.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.469844,56.578125],[-7.095,56.954062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.7775,-31.9325],[-160,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.373462,57.437144],[17.449375,57.009375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.4,10.5],[125.7,13.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.997987,38.455532],[15.26334,38.308379]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.022773,54.28293],[14.682148,54.308906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.154512,43.383896],[-10.204062,42.854922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.412104,60.162671],[20.977891,59.996338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.1,5.8],[74.8225,4.4675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.371504,54.071631],[6.204438,53.83895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.595,26.7625],[-79.8,26.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.92875,-20.61625],[166.37375,-22.344375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.7675,42.16],[-11.87625,41.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.644375,35.865156],[-12.836875,35.58125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.87625,18.49625],[-69.39625,17.56125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.656875,49.909922],[-7.454375,49.680156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-20],[-30,-25.8475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.1725,-3.87375],[-180,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.7,66.98],[7.4025,66.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.0025,33.6325],[-40,31.6025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.181016,40.173789],[-11.67375,38.82625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.104141,60.507578],[-0.792188,60.057187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,4.835],[-138.665,7.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.223005,39.419204],[20.355,39.115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.95,23.3375],[-85.885,25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,48.245],[-147.485,47.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.26,25.7775],[123.29,27.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75.3,9.7],[70,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,20],[72.4,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.999766,57.248438],[-6.649375,57.014063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141,-38.7],[135.1025,-45.3925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.1325,4.3175],[-8.719492,4.111396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.699705,37.26321],[24.417593,37.161409]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.010781,55.513438],[-5.81,55.78125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.54375,40.899375],[3.226172,40.772656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.4325,25.16],[-82.7,24.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.893213,44.010146],[28.699687,43.750625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.103291,42.465767],[10.497386,42.746442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.525,-18.294375],[178.8,-19.3425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.19,19.82],[-67.031875,19.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.009687,37.76],[-23.3725,36.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.71,55.0025],[-25.2475,55.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.24125,-54.92875],[-79.995,-54.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.8975,51.98],[-40,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.44,4.495],[-50.015,10.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.7475,31.44],[-74.645,30.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.7875,59.7825],[-3.725,59.190313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.3175,52.7275],[5.32506,52.820001]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.085,30.175],[-73.1975,28.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.025,31.185],[-61.32,30.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-27.125],[0.0025,-25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.02375,57.048125],[3.9975,56.6325],[4.104453,56.332187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.41708,54.623066],[0.485,54.2575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.59,48.57],[-150,48.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.415,24.68],[160,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.855,-22.275],[-100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.31375,37.865],[-20,37.71125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.770117,38.031641],[21.132402,38.087119]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.323008,60.104219],[26.210313,60.347227]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.700625,13.5],[144.9475,13.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.71625,39.005],[-11.67375,38.82625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.470859,35.316563],[23.21,35.39625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50.0025,47.5775],[-50,48.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.672344,44.39875],[12.666816,44.676299]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.905,29.6475],[-160.3625,29.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.305313,59.578438],[6.0875,59.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.95375,53.8075],[5.020605,54.168008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.6575,43.1225],[34.6475,42.788125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.42375,60.516875],[0.104141,60.507578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.93498,47.150312],[-2.452166,46.863257]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.5975,35.7825],[19.5675,36.20875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.833379,50.535977],[-2.165471,50.419958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.038979,43.900977],[9.053223,43.477959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.712761,59.027883],[5.473301,58.69998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[96.4025,14.15],[97,16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.406515,40.720172],[24.75457,40.789453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.4425,27.585],[-67.125,27.6425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.755,62.5325],[20.790234,62.103242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.02,35.11375],[31.474375,34.946875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120.8925,34.3675],[-122.7025,37.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.7725,74.6525],[-74.0975,73.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,30],[-165,35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.436602,38.653398],[-27.911562,38.914687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.860273,60.326094],[19.008465,59.705375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.188398,52.077695],[4.654687,51.925156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.911562,38.914687],[-27.525,38.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.2,43.805],[148.3425,41.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.1475,38.84125],[6.666875,38.215156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.024492,43.93957],[12.939199,44.269688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.04,-0.021875],[-41.7125,1.7375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-30],[-180,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-30],[-180,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.0025,24.915],[-60,26.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.58,42.51375],[3.967344,42.223594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-116.1725,28.0075],[-109.8325,21.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.501523,61.532109],[19.014922,61.642578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-48.345,11.7375],[-45.0025,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85.8975,16.1775],[85.77,15.873437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,50],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.335,30.3575],[-78.58625,30.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.54625,-22.73375],[167.693906,-23.070781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.352656,53.157656],[5.522705,53.559409]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.010781,55.513438],[-5.825639,55.203441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.005,61.0875],[7.185,60.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.001777,69.098027],[14.644219,69.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.395,6.3975],[3.0875,4.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.523125,37.5625],[16.260469,37.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.065625,55.181445],[16.659565,55.258401]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.191396,37.289531],[11.28625,36.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.04625,5.08875],[157.175625,7.225625],[157.4675,7.516875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.35,20.4],[110.8725,21.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.005,61.0875],[5.4625,61.075],[5.131875,61.072812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.303721,40.320674],[25.049434,40.175664]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.62125,38.27],[2.67875,37.505]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.7925,-4.2375],[76.6,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-50],[-164.8875,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.1825,37.815],[121.19,38.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.05,8.4],[120.46,8.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.6575,-30.435],[-49.5,-30.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.879062,38.0525],[10.3375,37.81125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.060703,57.296289],[17.669512,57.304258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.3425,54.525],[-30.0025,55.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.035,33.97625],[35.096719,34.26375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.9425,33.89],[24.9125,34.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.802656,51.447031],[6.875,51.095],[6.865,51.0725],[7.345,50.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.694688,66.196875],[-19.6175,65.83125],[-18.970938,66.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.8125,-17.359727],[-155.39625,-24.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.245,-27.355],[160.0175,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.733301,44.051143],[9.038979,43.900977]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.619247,31.847697],[32.119062,31.647031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.5625,17.3325],[-87.465,17.62375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.4075,19.615],[-135.020625,15.224375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.508301,42.19166],[8.08125,42.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.1125,35.91125],[-2.61125,35.966563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.6925,0.9225],[-89.595,2.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,30],[144.2325,26.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.787813,71.224922],[23.2575,71.54875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[52.3,11.6],[57.1325,7.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.3475,2.0275],[45.68,1.57375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.645,50.0625],[155.3225,49.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.7,24.3],[-83.465,25.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.285,-20.7875],[168.54625,-22.73375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.908887,59.714678],[19.735938,59.440313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.3625,54.4975],[-166.8025,54.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.5225,28.4175],[48.7175,28.605]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.086406,40.580312],[7.5675,40.84125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.315547,58.931875],[21.107188,58.580234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[93.3,14.4],[92.8425,16.32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.345664,36.706875],[20.994258,36.679492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.15,63.2],[-23.2975,63.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.355,61.0175],[3.7975,60.946875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.223594,54.010781],[3.575,54.365625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.637832,49.762754],[-4.024844,49.586641]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.032969,66.305312],[-20.7475,66.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.034449,55.423906],[14.665709,55.334608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.5825,41.595],[7.574375,41.149375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.934063,55.691875],[3.809687,55.440313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.87,-50.86],[-62.8275,-50.47],[-60.205,-48.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.9575,71.2125],[-60.8425,72.91],[-65.7725,74.6525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-18],[51,-15],[49.915625,-10.021875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.145,55.545],[142.5225,56.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.725938,-22.962031],[111.7475,-22.30125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.5125,38.825],[7.4575,38.685]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.23,22.931875],[-87.5025,22.8425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.0625,53.2275],[-3.257798,53.639539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-5],[-31.0625,-7.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.415,24.68],[167.534844,19.455625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-155.1125,40.105],[-160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.6375,19.165],[114.194531,21.738906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-139.958438,40.086875],[-140.28,40.2975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.342695,59.654473],[22.796553,59.466914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.9125,-23.6575],[166.7075,-23.945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.722383,36.033086],[-3.931406,36.316367]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,37.71125],[-20.0025,36.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.655,59.815],[-93.6,59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.03,-9.93875],[-169.32,-10.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.77,60.145],[-146.03,59.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128,26],[129.585,28.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.1275,40.9975],[24.75457,40.789453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.8425,41.2075],[-10.8225,41.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.180312,61.413438],[3.7975,60.946875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.0225,40.38],[27.2675,40.595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.4575,-8.7725],[137,-9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.67054,54.728424],[10.738478,55.100254]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.5275,-10.0175],[-20,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.095,18.14],[65.0925,17.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.262021,42.919814],[16.735933,42.906719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.35,30.88],[-126.5975,32.0975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.75,32.2],[24.465,32.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.345664,53.816563],[3.5375,53.91],[3.75,53.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.6475,37.685],[-37.315,37.5225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.648408,55.654375],[15.034449,55.423906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.255,35.4275],[30.4325,35.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.4575,17.5925],[-167.2075,17.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.75,17.5],[-71.13875,16.43875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-40],[-180,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-40],[-180,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-106.8325,-3.2075],[-110,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.3725,32.41],[22,33.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,50],[-142.6075,47.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.004674,43.208229],[16.288393,42.803041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,9.7525],[-79.868437,9.378438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,13.965],[126.4,10.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.5925,52.8],[-44.3275,54.5125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.23875,48.07625],[161.8825,46.74]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.538984,55.294648],[18.758359,55.537734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.1,34.4],[-5.716416,35.907412]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[145.31,40.3625],[146.81,40.2475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.705,20.8175],[-72.045625,20.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.115122,36.985522],[26.74957,36.893555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.55,-29.575],[-85,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.2,33.025],[15.366875,32.474688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-20],[-25,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.0725,28.1875],[-96.465,28.525],[-95.1,28.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.325,-11.39],[-12.5275,-10.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.85,74.06375],[136.8825,73.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.92,39.1075],[-71.637969,38.376406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.9575,44.0875],[-5.783164,44.592305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.037559,60.133594],[-0.597422,60.380859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.85,32.09625],[-74.2675,32.30875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.3075,35.62875],[-6.04248,35.979863]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.306719,60.864062],[19.527812,60.725469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.5725,30.625],[-42.3975,30.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.364922,43.006016],[3.604922,42.797344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.455,42.2375],[140.205938,45.177344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.0025,33.36],[-30,32.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.460625,60.16875],[27.827188,60.22875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.45,-8.3175],[125.7,-8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.825,32.765],[24.105,32.07],[24.465,32.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.7025,37.38],[-122.6425,37.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.2875,15.5775],[-61.4975,13.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.10625,21.07375],[-73.9,20.27625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,20],[-130.008125,26.146875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.77,63.275],[-52.845,63.2025],[-50,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.3975,30.045],[-50,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.3475,58.94125],[2.13,58.7675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.317969,58.094687],[4.5825,58.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.4975,18.735],[-75.136719,18.521875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.14875,65.464375],[-23.3825,65.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.68,34.72],[33.738594,34.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.8975,20.8075],[-23.7125,15.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.532946,50.24703],[-1.447247,50.7914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.1325,51.8025],[-18.32,51.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.7075,20.06],[160,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,60],[-45.2475,55.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.529766,40.492578],[13.173555,40.243291]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.677749,56.38271],[6.353047,55.711758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-40],[80.0025,-43.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.7475,-22.30125],[109.7375,-20.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.74793,57.527598],[6.739763,58.169515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.822188,49.379688],[-6.724219,48.938906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.68957,59.970225],[25.090547,59.806436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.27042,36.278008],[-3.1125,35.91125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,30],[-170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.451475,55.546858],[15.343838,55.146855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.78625,34.46375],[27.066875,34.80875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.617344,57.609609],[17.867734,57.827891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.891122,55.877554],[15.835474,55.509087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.7575,53.1025],[8.4825,53.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.5475,34.7625],[13.2575,35.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.5575,16.1475],[-75.34125,17.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.96499,55.151123],[16.126771,55.551044]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.015801,55.898398],[17.083315,56.214521]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.1525,70.38],[9.33,70.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,4.2525],[-127.045,2.995]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.628906,52.187148],[2.461475,51.732637]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.08,16.695],[-68.315,15.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.92125,31.47125],[-64.8925,30.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.43,29.925],[130.35,30.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.33375,-11.75],[-166.845,-10.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.9125,-32.2825],[-51.255,-32.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.18752,55.196726],[14.665709,55.334608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.861299,36.672075],[23.533376,36.630793]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.3,-4.2],[45.68,1.57375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.555625,49.891875],[-8.4725,50.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18,-35],[10,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.615,-0.6475],[172.75,0.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.0675,36.44875],[130.1625,35.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,31.785],[-62.025,31.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.271562,41.209375],[13.024558,41.039642]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-60],[-44.75,-55.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.878408,57.549116],[17.669512,57.304258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.488677,54.022837],[8.533193,54.311936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.189063,-8.093438],[-17.6075,-4.205],[-20,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.612734,42.372891],[9.588618,42.703418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.099512,38.77126],[8.492695,38.715718]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.245,-27.355],[154.06,-31.13],[153.6175,-32.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.92375,60.86625],[2.526875,61.0825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.71375,30.91],[122.9,31.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.704375,-16.459375],[122.061875,-11.35375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.7225,71.54],[19.626562,71.052656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.9775,8.505],[165.6725,9.2025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.914292,56.707234],[11.03021,56.313276]]}},{"type":"Feature","properties":{"pass":"babelmandeb"},"geometry":{"type":"LineString","coordinates":[[43.600938,12.615312],[43.104375,13.241875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.546875,37.243125],[18.273047,37.273672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[56.17,6.225],[57.1325,7.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.355,-15.395],[54.935,-17.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.28,51.2875],[-17.1325,51.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.226172,40.772656],[3.753125,40.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.049531,68.127187],[14.272461,67.835117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.732891,55.796875],[16.875781,55.545547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.734727,40.860938],[29.27125,40.74875],[29.48,40.75],[29.5475,40.7475],[29.8825,40.753125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.885273,53.643613],[-4.289297,53.870781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.831406,56.232656],[20.176953,56.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.395,-26.595],[-22.8175,-27.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-50],[-180,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-50],[-180,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.62,25.605],[-63.1125,23.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.819993,42.138586],[15.964893,42.586113]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.373462,57.437144],[17.669512,57.304258]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.54,33.4325],[15.115,33.525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.962656,70.722344],[21.5675,70.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.999766,57.248438],[-6.839688,57.517383]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.065,8.955],[-140,8.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-10],[76.1675,-10.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.76375,28.015],[-87.185,28.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.8775,-14.8225],[0,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-157.512266,21.273633],[-158.3775,20.5675]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-126.67,74.54875],[-126.0425,74.62],[-120.5475,74.72],[-111.295,74.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.9125,23.80125],[-73.8925,22.55],[-73.884375,21.621875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.157101,53.959185],[8.487441,53.562617]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-30],[-16.24,-30.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.035,9.7125],[-90.8425,9.019375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[145,25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.5,64.1],[-24.0825,64.69875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.27,-39.3],[146.04,-39.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.4475,37.4975],[2.105,37.215]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-103.4475,73.4025],[-99.995,74.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.475,50],[-66,50],[-65.48875,49.79375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.32,29.625],[-93.21625,29.19125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.19,38.4375],[120.83,38.55625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40.3875,66.055],[40.69375,66.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.6175,-32.5],[153.48,-32.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.89,-45.405],[-30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.305,-16.4575],[-160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.1925,-60],[-63.265,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.185,-24.4775],[106.725,-26.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.1475,-26.13],[-125.003125,-25.136875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.83916,49.41332],[-4.177578,49.34814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.43585,54.216177],[7.782939,54.533564]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.195937,35.475],[26.648818,35.316318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.665,40.5875],[-10.5425,40.8475],[-10.375,41.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.430225,42.960469],[8.489414,43.210635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.335,44.6225],[-152.3425,42.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.247812,40.450625],[3.765,40.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.735933,42.906719],[16.773467,42.591909]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.855,29.59625],[-19.5925,28.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.12,30.4425],[48.84,29.960469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72,-33],[-80,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.40125,45.7825],[141.39875,51.28125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.86,-18.24],[118.12875,-17.94875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.5275,27.6125],[-146.0725,26.29]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.488379,36.032012],[29.9975,36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.203203,37.980781],[-0.494023,37.61957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.927604,39.853875],[4.519375,39.689141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.192749,43.23022],[4.873555,42.995273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.91875,30.246875],[-73.036875,30.944375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.2,25.58125],[-79.316875,26.375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.278125,36.711875],[-11.87875,36.89625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.2375,53.1425],[8.2575,53.145],[8.4825,53.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.0025,27.5875],[-82.2875,26.58125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.34875,34.09],[-15.6375,35.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.395,27.9525],[131.5425,30.215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[74.3425,-35.9925],[70.0025,-36.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.418008,56.664336],[10.465518,56.974839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.035312,46.94],[-7.285,46.569063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.070625,62.185625],[4.740021,61.920164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-30],[0,-27.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-60],[-180,-70]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.5475,53.17875],[-5.56,52.805469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.9725,44.9375],[-7.58125,44.64875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.12707,57.238789],[8.482715,57.360273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.8575,62.4375],[6.9275,62.4025],[6.9375,62.32],[6.9275,62.425],[6.8575,62.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.415684,38.837246],[24.741055,38.722437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-20.73,39.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.079219,35.722812],[-75.3775,35.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.1075,66.74125],[-20.8175,66.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.031875,19.47],[-66.753125,19.26875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.998125,36.25625],[16.37375,36.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.5375,40.25],[-72.46625,39.45625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-7.935],[-30,-5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.0275,57.445],[-19.63,56.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.145,7.35375],[-86.605,10.0225],[-86.8075,11.11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.4325,44.095],[30.28,44.34625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.48,32.125],[-80.03,31.68],[-80.175,30.388125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.4625,57.633437],[20.476396,57.328218]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.105,-34.4625],[0.0025,-34.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.9975,-46.44],[-90,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,25.91],[-165.82,24.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.31,39.12375],[15.749336,38.614609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.4575,-8.7725],[132.3125,-6.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,50],[-33.785,52.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123,19],[120,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-121.54557,34.599387],[-122.006875,35.371875],[-122.9375,36.595],[-123.12625,36.93375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.168828,53.909648],[1.531406,53.828281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.9,28.285],[-90.38,28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.898516,61.085391],[18.275918,61.147715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.868823,51.477681],[2.208242,51.472422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.545,40.5825],[-37.895,40.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.527939,53.538066],[-5.5475,53.17875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.0425,58.1525],[-137.1,57.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.965,16.1925],[155,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110,-50],[110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.2025,10.4175],[110.332813,11.999063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.355,39.115],[20.481853,38.631372]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.955625,63.75],[11.255,63.775],[11.2425,63.785],[10.955625,63.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.627153,37.238853],[23.874049,37.28481]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.191543,43.407358],[7.824063,43.32125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.375,-34.64],[152.54,-34.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.768457,55.970605],[17.986406,55.811875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.5475,10.55],[-50.9075,7.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.825,34.05875],[-7.986562,34.41875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.942187,47.478906],[-3.208203,46.725078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-50],[-110,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.260771,53.982871],[-3.257798,53.639539]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-60],[-180,-80]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.551875,41.174063],[13.715,40.98],[13.870631,40.63457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.62125,36.955898],[23.287891,36.571968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.855,31.17],[-73.036875,30.944375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.4175,40.6525],[-50,40.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.9725,55.405],[-131.5975,55.2975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.451875,47.8675],[-122.935,48.230625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.31,54.465],[-133.32,54.79],[-133.3325,55.5775],[-134.2525,55.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.3925,2.6],[126.8225,1.7425],[126.6875,-0.8125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.891563,18.311563],[-65.841875,17.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.72402,54.964635],[16.241221,55.024209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.119062,31.647031],[32.8875,32.335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.4875,-12.51],[-77.660625,-12.09625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.0025,53.6075],[-30.0025,55.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.455,48.95],[-151.59,48.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.371562,37.037188],[12.097554,36.952969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.31375,37.865],[-23.3725,36.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.4975,27.39],[-77.14875,27.68125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.485,47.6325],[-143.7425,46.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.845,37.68],[-60.5025,39.2375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.589688,36.696562],[-10.7225,36.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.439922,51.202578],[-5.24647,51.492124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.073384,53.77512],[6.735059,53.634062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.8925,29.085],[129.22,30.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[137,-15],[137.6,-12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-20.64125],[160.5575,-20.5925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.291406,55.273594],[16.419287,55.636387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,10],[-37.595,7.6425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.925,36.465],[18.6925,36.56],[18.250312,36.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.81125,42.1725],[38.3425,42.2075],[37.96375,42.2375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0175,-30],[160.0025,-25.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.131587,48.801069],[-2.776172,49.213906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.514229,59.012822],[-2.100625,59.70375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.148335,42.885435],[4.895313,42.259297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-32.9425],[-156.0275,-35.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.666875,38.215156],[7.31625,38.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.30375,28.42125],[-91.57875,27.81125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-50],[-170,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.316016,36.362266],[26.519492,36.193398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.42,9.1125],[140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.613594,56.419687],[-0.165,56.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.18375,65.429375],[24.473359,65.570117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.13,31.17],[-71.8025,30.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.99,56.655],[-40.0025,57.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.593125,28.889375],[-15.86,28.701563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.893213,44.010146],[28.963281,42.830156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.343838,55.146855],[15.72402,54.964635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.0175,55.91],[-130.0025,55.2825],[-130.6325,54.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.623047,54.214453],[6.371504,54.071631]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,26.1075],[-150,28.2375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.289414,58.611396],[18.080039,58.893164]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-111.2675,-31.3775],[-110,-32.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.99,38.73],[118.1725,38.7725],[120.48,38.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-176.955,52.8575],[-177.293437,54.639375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-26.765],[-170,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.741055,38.722437],[25.100732,38.490039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.990312,53.7975],[13.48208,54.170957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.9,5.4],[-46.4,2.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.89,46.415],[-4.180156,46.235938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-10],[78.415,-11.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.815,27.8975],[-91.57875,27.81125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-40],[76.745,-43.645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,13.765],[70,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-119.4475,33.2425],[-119.222328,33.3387]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,-20],[-76.035,-25.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.446719,59.755508],[5.217041,59.531699]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.146289,36.571445],[-3.27042,36.278008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.555,41.68125],[5.780332,42.32082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.53,16.6775],[65.0825,15.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.5875,25.85125],[-72.90625,24.33875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.04,57.3575],[3.145,57.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.666875,36.456875],[-1.38125,36.43125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.6,-46],[160.52,-40.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.490195,56.351406],[20.742734,56.151094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.765,6.7925],[160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.615273,61.027617],[19.306719,60.864062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.309062,57.458438],[19.668906,57.37418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.10125,69.59125],[43,69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,15.07],[153.34,16.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,60],[-6.566875,60.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.882812,48.511875],[-6.820273,48.182891]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.4275,19.825],[123.2425,20.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.038438,42.02125],[18.627187,41.923125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,24.6325],[119.7525,22.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.586084,60.382939],[27.048828,60.374121]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.59125,37.648438],[-74.49,37.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,17.0575],[-170,18.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-116.62,13.52],[-120,13.895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.635947,57.806558],[8.316113,57.824902]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-162.795,50.3725],[-162.105,48.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.8,-27.15],[154.250625,-27.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.63,52.7625],[-15.21,55.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,30],[-178.5,28.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,30],[-160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.4625,-2.5725],[-121.23,-1.2475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.521152,43.106621],[7.54875,42.741875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.8125,17.4075],[67.795,17.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.395664,37.676875],[15.851445,37.672402]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.6775,-25.775],[-41.3,-23.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.610625,67.785],[13.495,69.28],[14.19,69.50375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.835,24.2325],[-96.99,26.02625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.341704,49.829033],[-4.964746,49.878513]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.2425,-34.615],[107.4375,-37.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.3025,60.9325],[-5.84,60.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.736152,38.705385],[25.775674,39.137302]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18,18.0225],[-17.97375,21.07375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-42.24],[90,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.600625,66.39625],[-17.35,66.365625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.28,25.265],[55.15,25.56875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.833379,50.535977],[-1.9825,50.7125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.671724,55.080054],[11.169886,55.165555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.89625,42.9525],[32.6025,43.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.692422,59.539893],[25.090547,59.806436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.927813,26.094062],[-89.87,26.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.33,19.1275],[-67.87625,18.49625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.920566,61.413633],[21.385695,61.204697]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.78,69.30625],[16.229648,69.216367]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.645937,61.87375],[-6.845,62.1175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.619375,-16.745],[-10,-12.895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.455,44.1025],[-130.0025,43.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.8225,54.541875],[5.080781,54.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.366363,37.294783],[15.776404,37.322181]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.945,-24.1825],[70,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.2725,57.3675],[-6.999766,57.248438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.735938,59.440313],[19.58,59.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,0],[-141.33,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.4375,33.8725],[-40.0025,33.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.120417,54.936321],[-5.447498,55.371414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,0],[71.2525,-3.7175],[71.82375,-5.315]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.915801,56.669648],[7.93375,56.016875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.4925,-40.0525],[-140,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18,-35],[11.1075,-40.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.3125,-27.1975],[64.47,-25.7775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.581953,37.762852],[-9.6,37.35625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.0475,11.0225],[-99.9575,12.7375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88.905,-1.1125],[90,-1.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.32,22.7525],[-86.475259,22.085903]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.662539,54.805371],[5.328125,55.244062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.175,39.3825],[-28.436602,38.653398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.340217,38.629578],[25.481746,38.133721]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.451094,41.242969],[7.574375,41.149375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.9825,27.6325],[34.40375,27.70625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.1675,-10.0275],[69.88375,-9.961875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.296922,53.03798],[4.149961,52.716133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.875625,38.836562],[26.415713,38.840752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.790469,60.022109],[22.342695,59.654473]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.600938,12.615312],[43.42,12.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.505422,39.828574],[24.379602,40.247499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.01125,31.74625],[29.36,31.79875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-15.9275],[-160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.8025,54.52],[-167,55.4275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.234531,38.099219],[10.62,37.895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.0375,70.63125],[32.67875,70.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.3425,54.525],[-36.50875,53.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-21.41],[80.9025,-20.9575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.43535,54.595088],[14.183711,54.135215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.2875,34.77],[-72.375,34.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.74875,69.080313],[16.5775,69.43375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.83,-4.7875],[11.8025,-4.7675],[11.89,-5.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.163438,28.516562],[-18.30375,25.26875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.608438,38.824062],[13.144531,38.889063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.960938,27.070625],[-74.3525,26.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.9,52.6],[-180,62.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.23,13.1475],[-61.24,13.1325],[-60.835,13.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.790879,38.328535],[13.500449,38.29293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.66625,34.610312],[-13.83,33.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.0275,35.255],[27.41,35.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94,6.7],[96.54,2.4625],[99.9,-1.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[150,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.087734,54.157578],[12.85625,54.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.1,28.7475],[-94.455625,29.054375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.87375,7.2075],[-82.145,7.35375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.910372,53.77391],[5.522705,53.559409]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85,-15.17],[87.41,-17.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.787813,71.224922],[22.72875,71.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.817695,43.257109],[5.192749,43.23022]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.553795,39.514287],[25.775674,39.137302]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.72375,33.689375],[-8.8225,34.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.9375,55.335],[147.905,54.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-6.9825],[-150,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20,-50],[25.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.25,-23.3],[-43.1675,-22.8975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.788105,57.365605],[21.096387,57.439023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.7375,55.8425],[3.669375,56.106875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.53875,30.46625],[-71.600625,30.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.079497,54.052212],[10.6775,53.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.065,41.4825],[-69.49375,41.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,12.135],[-108.98,10.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-148.82,21.2525],[-150,21.29]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.955,-0.83],[53.6575,-3.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.435,10.0325],[-163.2075,13.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.5325,-23.505],[170.6775,-22.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.789692,44.880322],[14.750116,44.564231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.226172,40.772656],[2.84377,40.685156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.8525,64.51],[9.17,64.80375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.1525,-17.26375],[-6.619375,-16.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[48.7175,28.605],[48.229375,29.0775],[48.84,29.960469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.6,-3.445],[-170,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.425,39.4175],[-139.683125,39.82625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.8575,62.4375],[6.835,62.44],[6.46,62.415],[6.3875,62.4],[6.210225,62.398984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130,0],[133.285,3.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,41.75],[-160.415,41.74]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.2475,26.91],[133.395,27.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.9975,-17.14],[80,-15.945]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-152.9725,56.6775],[-151.905,57.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.035,26.0875],[132.2075,23.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.598662,49.992534],[-3.033704,49.937569]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.7,24.3],[-85.932109,22.026016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.709375,46.48125],[-7.4275,46.84],[-7.3425,46.9475],[-7.01,47.501562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.799375,47.2225],[-5.08375,47.000156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.3675,59.0125],[-0.255,59.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.127031,54.516719],[13.48208,54.170957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.23125,52.08],[-5.493437,51.875522]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,8.4575],[159.1125,9.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.5325,-7.5175],[-100.6475,-8.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.95375,38.6975],[124.3,39.4],[124.1,38.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.40875,64.93125],[10.035,64.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.16127,42.462773],[16.773467,42.591909]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.240937,37.558594],[10.369375,36.840937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.960415,54.927198],[10.67054,54.728424]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.02,28.9425],[-83.4325,28.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[133.02,39.2275],[138.32,40.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.032905,4.866694],[1.6525,5.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,-37.8],[178,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.421875,-46.995625],[-60.205,-48.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.059375,56.46],[10.418008,56.664336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.565,-51.945],[-75.195,-52.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.33,70.2275],[8.46,68.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.418438,63.7425],[22.594375,63.986855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-3.1075],[-127.4625,-2.5725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.445,41.88],[-68.964502,40.340308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-10],[90,-12.1625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.790234,62.103242],[21.133125,61.823125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.8925,30.34],[-65.7725,30.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.34125,-0.325],[125.5,1.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.841875,17.255],[-66.275,17.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8,0.385],[8,3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.955,-54.6525],[-67.02,-56.065]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.48375,36.72],[-70.58375,34.216875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.43,69.715],[-57.9575,71.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.535625,42.6075],[30.475,42.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[163.353125,14.503125],[166.4,9.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.2725,24.53],[143.7425,25.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.219824,39.057051],[17.111562,38.624531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.93918,61.439756],[4.75332,61.251289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,30],[157.015,33.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.011875,35.281875],[-8.77,35.4225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78,3.9],[-77.355,3.74]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,10],[-100.69,10.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.671133,39.425312],[3.03,39.2425],[3.2075,39.22375],[3.485586,39.055078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.519507,54.514373],[15.022773,54.28293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.7075,11.95],[-130,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-41.485,2.0625],[-40.7825,3.0725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.895,45.9425],[-0.9375,45.9425],[-1.27918,46.081191]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.2425,46.18],[-1.596523,46.256055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.393125,62.802188],[20.057578,62.840937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.924194,39.296875],[23.46458,39.10314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.8425,9.019375],[-93.21,10.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.50875,53.9425],[-35.5175,53.3425]]}},{"type":"Feature","properties":{"pass":"northeast"},"geometry":{"type":"LineString","coordinates":[[114.24125,76.7825],[119.08375,75.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.363437,66.349375],[-21.032969,66.305312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.625,-35.5625],[138,-35.7],[141,-38.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.426562,34.934062],[137.2875,34.14]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.2125,-11.5775],[-30,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.73,56.9675],[-162.0925,56.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141,-38.7],[129.2525,-37.65],[118,-35.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.285,-10.0325],[60,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.859038,53.012542],[-5.5475,53.17875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-67.4425,27.585],[-68.17,28.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.468555,57.56082],[23.1325,57.338125],[22.975,57.5725],[22.792422,57.810625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.32584,37.236904],[-9.46627,36.936104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.935039,49.176758],[-4.177578,49.34814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.45375,58.35875],[24.26875,58.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,28.485],[-140.915,28.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-27.855],[-130,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.91125,25.885625],[-80.03,25.115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.134531,39.588672],[1.24,39.89],[1.3625,40.07],[1.429688,40.173281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,19],[119.6375,19.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[59.49,-29.435],[57.365,-30.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.45,45.0675],[36.439609,44.759141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.055938,50.082188],[-29.2175,50.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.43373,37.622539],[10.927529,37.445293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109,16.1],[112.0475,16.9525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-31.785],[1.965,-32.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.1775,41.2075],[-13.53,39.5225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,0],[-99.6725,-0.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.8425,38.3325],[-27.1125,37.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.945,-24.1825],[70,-25.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.364375,66.204375],[-14.98,66.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.81,40.2475],[147.8825,40.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.179648,53.560078],[0.457852,53.575371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.419822,36.391848],[-1.9425,36.425],[-1.666875,36.456875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.7475,-22.30125],[112.625,-21.5975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.446865,58.058926],[8.686284,58.244041]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100,-30],[98.7225,-28.7925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.1175,57.507188],[7.300078,57.165078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.539375,57.721367],[4.02375,57.048125]]}},{"type":"Feature","properties":{"pass":"panama"},"geometry":{"type":"LineString","coordinates":[[-79.57125,8.948125],[-78.525,8.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.5725,36.6975],[-72.8875,36.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.9775,34.6775],[27.8425,34.94375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.130405,43.734478],[7.827422,43.645742]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.906875,-6.448125],[-81.119531,-6.191172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.4175,56.38],[-3.3925,56.3825],[-3.27,56.36],[-2.874844,56.456094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.499775,38.82457],[9.085498,38.851016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.980156,42.859297],[13.844531,43.389062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.0025,36.05],[-40.0025,33.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.72,-13.6225],[152.88,-16.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.4775,15],[166.4,9.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.64375,34.46125],[139.426562,34.934062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.223594,54.010781],[4.8225,54.541875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.1575,-32.8225],[120.8775,-34.915]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-92.685,74.3425],[-96.415,74.2975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-50],[-160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.302969,64.491406],[-14.2125,64.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.921806,37.203799],[27.115122,36.985522]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.11043,62.380625],[19.752969,61.821328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.3175,30.3025],[-74.62,29.590625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.2625,53.245],[-51.5875,52.28]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.895,45.215],[-3.225,45.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.185,61.39],[-53.2,63.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.63,-30.365],[-47.055,-32.4075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.103281,36.156094],[-70.58375,34.216875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.6975,4.3525],[-20,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.3975,24.271563],[119.7525,22.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.04,-39.6275],[149.445,-40.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.12,34.66375],[-12.7075,34.73625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.633047,43.456328],[28.963281,42.830156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.109805,41.729844],[-9.301797,42.146035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.563867,41.622969],[3.2375,41.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.945,12.1025],[-69.2125,12.3425],[-69.235,12.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.7625,8.72],[120.7525,8.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.5375,19.9875],[-22.8525,20.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,4.7825],[72.075,2.7675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.67,-38.795],[160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.74875,41.9725],[-9.7825,41.7025],[-10.00375,40.836758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.5675,58.985],[13.1975,58.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.867422,61.060391],[20.920566,61.413633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.896992,40.836719],[9.897813,40.441094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.5375,-21.63],[-3.5975,-20.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.898125,33.67375],[132.6,34.2],[135.125313,34.508437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.125313,34.508437],[131.898125,33.67375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.92125,31.47125],[-66.135,31.71]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.097383,55.425762],[19.093408,55.023052]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.246257,54.019458],[-5.4875,54.26],[-5.276172,54.441563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.36,44.515],[-12.215,42.3025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.195,27.85],[123.095625,28.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.526875,61.0825],[3.355,61.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32,-30],[40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.095647,38.93687],[24.547754,39.230442]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.626562,71.052656],[19.5425,70.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.47,-49.5775],[70,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[43.111875,69.78125],[45.4975,69.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.349375,60.0325],[28.7475,60.0475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.935039,49.176758],[-3.582187,48.967187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.5375,14.85],[-69.8475,15.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.5625,45.4625],[159.6175,41.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.605781,38.426162],[25.807234,38.195508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.79625,44.13625],[30.1425,44.09125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.7025,62.986875],[17.8375,62.93],[17.986992,62.816523]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.245981,36.202173],[23.287891,36.571968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.1825,44.86],[161.6,41.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.40875,64.93125],[10.0775,65.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.613437,59.383789],[4.714746,59.065039]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.3,-39],[144.27,-39.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.23375,44.276875],[-7.994258,43.911279]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.0425,47.7625],[-16.235,47.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.525957,56.332773],[11.725667,56.097224]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.045,44.7725],[-7.9775,47.44875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.37875,-4.61],[60,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.3,-24.3],[-44.6775,-25.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.5375,39.425],[129.5325,38.02125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.107188,58.580234],[20.781685,58.439336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.28625,36.695],[10.69,35.9225],[11.3775,35.9225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.935,28.735],[-69.8,28.195]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.416875,54.525937],[19.523477,54.868477]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,20.695],[-170.0025,25.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.365,-14.375],[7.25,-15.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.861943,53.343584],[4.433906,53.836562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.24125,-54.92875],[-80,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.565,18.505],[119.6075,18.9025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.955938,42.725313],[133.0625,42.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.8925,61.1975],[2.526875,61.0825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.095879,58.674238],[11.315702,58.246777]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.4225,51.2625],[-6.1225,50.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.705,39.225],[-69.30875,38.91625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.62125,58.525],[-7.91375,57.78375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[129.5325,38.02125],[130.11,37.3275],[130.0675,36.44875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.38875,34.265],[-13.9525,35.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-28.7725,-8.7975],[-25,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[93.7125,-13.86],[90.0025,-16.0975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.7225,42.512813],[27.4925,42.4625],[27.47,42.485],[27.7225,42.512813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.273047,37.273672],[19.77043,37.811298]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172,-40.5],[173.9,-40.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,12.755],[-148.1325,11.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.274375,11.658125],[-75.680547,11.515781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.334512,55.200977],[19.515936,55.559141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.035,64.095625],[22.146875,63.775625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.315215,38.888848],[25.340217,38.629578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.75431,42.72792],[8.480625,42.289375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.105,-39.9575],[-55.99,-44.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.585,-18.62],[153.0175,-18.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.091484,37.840859],[24.9725,37.685],[25.07004,37.507314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.73541,38.340186],[21.132402,38.087119]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.6475,43.4625],[-133.819375,43.974375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.535,1.4875],[-110,1.1725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.38,-18.2125],[167.97625,-18.43625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50.005625,28.862813],[51.4475,27.5425],[53.37,26.58]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.29875,59.1025],[10.793129,59.024679]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.5875,-32.2975],[-49.9125,-32.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.2425,20.13],[124.427188,21.252187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.42,27.7025],[-74.07,27.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.26,70.0475],[18.725,70.31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.535,33.5325],[-20.0025,33.52125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.3425,53.1025],[-25.71,55.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.5475,34.7625],[13.73,35.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.02,40.200625],[3.561875,39.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.1425,40.844844],[1.332246,41.00998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.16,43.6375],[-6.435,43.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.6725,57.675],[-40.99,56.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.098125,61.650312],[17.625806,61.556221]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.46,68.4925],[14.19,69.50375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.191543,43.407358],[8.084434,42.953066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.104897,47.958721],[-4.847197,47.9571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.0875,-36.2275],[-159.9975,-35.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.006055,55.484766],[7.098125,55.050625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.3925,42.57125],[35.485,42.68625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.805,52.785],[-5.195742,52.796914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.619805,48.723728],[-5.289603,48.464297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.413242,37.735093],[25.07004,37.507314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.9125,34.1825],[25.695,34.48375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.3925,-26.9425],[-42.2575,-27.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.32125,37.06625],[-71.235,37.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.7075,-23.945],[164.83,-24.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.01625,50.233125],[-0.262402,50.295737]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.465,32.32],[-60.0025,33.34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.1125,45.4025],[-135.6975,44.82]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.053438,38.313437],[-10.286133,38.606543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.07,37],[-10.844531,37.245937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.578906,56.432969],[-2.39832,56.198828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.86125,64.29375],[22.093125,64.510938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.9,-20.27],[-180,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.87,36.3625],[-9.59,36.469063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.3225,-4.135],[125.1,-3.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.22125,-5.05625],[125.23,-4.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.945,37.99],[-13.755,38.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.895,69.775],[54.385,69.75625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.76,-0.7725],[-100,-0.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.393125,62.802188],[19.6375,62.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.753125,40.67],[3.514375,40.472812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.9375,55.745],[-134.5725,55.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.59,58.785],[3.1975,58.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.50625,36.0425],[-15.0875,36.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.7,-12.4575],[172.7875,-13.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-30],[-160,-22.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.555,65.45375],[40.3875,66.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.8325,60.0475],[-3.7875,59.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.295,39.82],[-9.699922,39.473281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.5375,20.5325],[-92.325,21.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.489414,43.210635],[8.084434,42.953066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.600625,37.03375],[-8.50168,36.626758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.664375,17.281875],[-62.270625,17.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.11043,62.380625],[20.31875,62.093125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.221523,36.770952],[-7.861699,36.770942]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.804219,32.365684],[-67.53,33.2475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,10],[130,9.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-40],[-149.08,-39.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.1975,37.1025],[123.12,35.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.195,30.015],[-147.8225,30.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.58,55.5025],[2.7375,55.8425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.995,70.06],[-123.595,69.7575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-10],[-20,-14.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.04625,58.39],[3.59,58.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.5875,-32.2975],[-49.7325,-35.2075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.6175,52.57],[-149.78625,52.37875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.48375,36.72],[-72.07125,36.53875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.2575,35.155],[12.9725,35.53625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.047688,50.190049],[-4.360816,50.226732]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.02,40.200625],[2.938984,40.445156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.8,-27.15],[154.245,-27.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-107.184375,19.263438],[-106.425,18.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.166875,41.685156],[17.422959,41.843896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.423047,60.707695],[18.860273,60.326094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.666875,38.215156],[5.6675,38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.019688,19.97375],[-60.035053,19.990462]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.668906,57.37418],[20.021406,57.228848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.577188,39.564063],[19.487891,39.278262]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.047529,39.195288],[24.9254,39.568506]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.379629,56.242959],[7.671152,56.150957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.205938,45.177344],[139.141519,44.765156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.9,20.27625],[-73.766562,20.939375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.77,11.655],[108.1775,10.59],[107.28625,9.99125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.366875,32.474688],[14.92,32.9225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.195,27.37375],[-73.960938,27.070625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-10],[-135,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,10],[-161.5625,10.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.5575,48.1875],[-12.355,48.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.7875,-13.5525],[170.00375,-9.99375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.195937,35.475],[27.41,35.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.2025,21.505],[-73.768828,20.000156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.1425,44.09125],[30.4325,44.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.885,14.5575],[-18,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.98,10.0075],[-108.07,8.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.74875,41.9725],[-10.011563,41.696562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,50],[-131.605,48.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.9675,28.08],[-50,27.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[99.9,-1.4],[99.9475,-5.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60.5275,3.9975],[62.9075,7.145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.192188,38.465625],[0.322344,38.101406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.594201,54.944301],[14.665709,55.334608]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.245,56.3675],[1.745,56.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-22.12],[-1.1475,-21.2175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.974531,37.313125],[2.74375,37.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.380596,64.274795],[22.922773,64.697422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.14375,27.81375],[-72.33,26.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.827407,35.890791],[-7.719063,35.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.52,-34.87],[164.825,-35.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.937705,39.856963],[19.578711,39.841289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.955469,36.3125],[14.480322,36.283815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.6975,-23.75625],[-35.225,-24.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.667563,36.93707],[12.371562,37.037188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[128.5375,39.425],[131.795,42.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.755,44.0175],[-9.235039,44.361328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.344766,47.284002],[-3.942187,47.478906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.054688,40.210625],[8.085117,39.67123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.430625,45.03875],[-8.730781,44.616484]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.7675,27.9775],[-85.75125,28.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-42.9275,53.0525],[-41.8975,51.98]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,30],[-165,35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.714106,43.588721],[8.413125,43.543437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.568218,57.012427],[11.491523,56.585137]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.1325,28.9925],[-73.829375,28.595625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.295312,25.939062],[-75.625,26.23875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.59,56.785],[-165.2525,56.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.879692,43.568643],[-3.6375,43.86]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6325,50.6525],[5.645,50.6675],[5.9175,51.1675],[5.964375,51.2025],[6.165,51.5075],[5.5425,51.8125],[5.26625,51.72125],[4.8475,51.68375],[4.654687,51.925156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.3575,62.6875],[-14.5825,63.6675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.17,-38.3125],[-89.9975,-36.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[57.545,0],[53.365,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.035,58.95],[13.9825,58.8925],[13.5675,58.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.5,-20],[-38.3275,-21.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.648438,65.283398],[22.762187,64.915625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.48334,50.045639],[-4.029033,49.911714]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.7325,27.07],[-90.927813,26.094062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.262852,60.422266],[4.707583,60.778877]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-10],[-102.575,-10.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.574375,56.152187],[-7.095,56.954062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-50],[-164.8875,-45.4025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.9575,29.52],[-8.72375,33.689375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.30375,25.26875],[-16.106563,28.959063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.033281,54.138125],[-0.41708,54.623066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.73,1.07],[163.865,5.5225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.332969,60.713437],[2.92375,60.86625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.3725,39.4925],[17.284863,40.23209]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.545,10.42],[-75.73,10.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.364375,66.279375],[12.12625,66.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174,-37],[169.3125,-38.1675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.5825,63.6675],[-15.10125,64.086875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.592935,57.691311],[9.282207,57.45085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.83,38.55625],[119.7875,39.8025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.0525,39.725586],[23.814453,39.851016]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.036809,36.497406],[21.663691,36.420527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.5675,-36.9675],[150.4,-37.69875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.9725,55.405],[-131.82,55.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.9975,-47.12],[-83.24,-43.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.32,43.37],[-127.4225,42.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-105,-35.385],[-100.040937,-39.951563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,0],[145,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.853125,35.741719],[17.09875,36.04375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.690146,56.531816],[7.93375,56.016875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13,66.5],[-4.75,64.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.884375,39.855625],[-10.286133,38.606543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.068574,53.441016],[5.910372,53.77391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,15.17],[-30,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.479688,55.17],[-8.245,55.3475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,1.1475],[-39.2975,0.7125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,0],[49.322187,4.794844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.927813,26.094062],[-91.6725,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.1475,17.9675],[153.965,16.1925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.893438,58.392813],[-12.403125,58.37125],[-16.5175,57.9475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-36.455,6.5075],[-35,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.295,-7.16],[0,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.668047,59.100625],[20.95,59.05875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.972812,61.342813],[19.055508,60.824492]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.032905,4.866694],[0.6125,4.46]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.2,25.58125],[-77.035,25.848125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.267969,57.714297],[-1.366055,57.377656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.016709,37.527939],[26.623551,37.813804]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.67875,-34.1675],[151.5,-34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.39668,58.633281],[20.668047,59.100625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.029033,49.911714],[-3.77498,50.063242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.1325,-34.5325],[113.6275,-35.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.801758,39.217891],[19.577188,39.564063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.605,74.6325],[18.76,74.3475],[19.7225,71.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.252344,55.362188],[4.8225,54.541875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.4475,42.0725],[-147.98,42.2625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.938672,18.803281],[-76.4975,18.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-50],[-150,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55,-35.385],[51.4125,-31.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,19.7975],[120.4275,19.825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.480518,57.788066],[6.739763,58.169515]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.19335,54.792202],[8.380234,54.517422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.446875,54.6175],[-8.727852,54.496992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.405,-11.475],[-130.8775,-12.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,30],[-169.125,29.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.6825,-24.21],[156.0425,-19.1775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.559347,36.195459],[23.287891,36.571968]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.36625,44.495],[-2.680625,44.978125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.017187,57.086719],[23.468555,57.56082]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90.9925,11.49],[-89.1075,10.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.011016,57.479687],[9.592935,57.691311]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.443027,55.467617],[14.648408,55.654375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150.6375,58.2875],[150.9,58.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.89373,35.965781],[24.125891,35.763713]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.05125,52.47875],[-53.28,52.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.4775,27.6175],[-140,28.0325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.9525,43.8675],[35.6575,43.1225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,40],[-29.175,39.3825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.815,36.835],[1.51625,36.93125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.38,65.7025],[40.69375,66.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.038438,42.02125],[18.97,41.323906]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.5775,47.505],[-5.505,47.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.375,16.79],[144.9475,13.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.215,58.5025],[0.7375,58.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.8725,-17.2675],[163.7,-19.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80,9.7525],[-75.9375,11.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.151875,39.17],[-11.87625,41.055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.578711,39.841289],[19.48625,40.09375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.8525,25.8675],[-86.768125,26.300625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,41.9275],[-129.345,41.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.4775,54.275],[-8.4875,54.28],[-8.6275,54.3175],[-8.727852,54.496992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.2925,-5.7625],[111.9,-5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[71.82375,-5.315],[72.7925,-4.2375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.69625,42.6925],[-10.154512,43.383896]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.565,18.588125],[-75.136719,18.521875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.28,49.83],[154.355,47.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.38125,36.43125],[-0.555,36.28875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.470625,61.478125],[4.441797,61.112109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-30],[-126.1475,-26.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.495,56.935625],[1.5525,56.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.6975,42.775],[170,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.649375,59.885],[21.412104,60.162671]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.7425,10.545],[-25.9225,5.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.115122,36.985522],[27.260234,36.758281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,19.5575],[-130.4075,19.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.73,70.69],[-54.07,70.885]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.585313,41.249688],[18.692092,40.695101]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.485469,36.756875],[-2.004844,36.635937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.27624,41.837959],[2.84875,41.52625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.025,-23.155],[-10,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.93,28.7825],[-88.4725,28.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-10],[-85,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.682969,61.55],[20.50375,61.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.24,50.82],[-10.765,51.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72,-33],[-80,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.886254,37.865082],[20.370171,38.089795]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.5525,41.8],[19.038438,42.02125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25,-5.0575],[-21.78,-1.8075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.89875,27.65875],[-96.0725,28.1875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.220313,56.46125],[5.56875,56.308125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.63,16.96],[-87.465,17.62375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-10],[-158.3375,-8.3725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.5125,-40.545],[160,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.5075,50.9875],[-125.7725,48.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.13,58.7675],[1.8725,58.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85,-35.385],[83.62,-33.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.67,37.8075],[-32.360937,37.845938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.9375,-9.195],[176.6075,-9.12625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.806328,36.032734],[25.48186,36.060669]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.459062,42.345313],[3.967344,42.223594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.418008,56.664336],[10.914292,56.707234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.89,-45.405],[-83.24,-43.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.095879,58.674238],[10.986465,58.350725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.859104,43.38701],[15.148008,43.202773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.588618,42.703418],[9.8279,42.364806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.4875,54.77],[150.6375,58.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[86.76,-13.3775],[90,-12.1625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.049531,68.127187],[14.591875,68.22125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.630937,35.532813],[-13.9525,35.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.840806,41.531836],[9.565913,41.265188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.179141,34.739766],[-7.8925,34.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-114.39,-20.06],[-120,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.2125,-11.5775],[-34.765,-14.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.32125,37.06625],[-70.100625,36.533125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.134531,39.588672],[1.432139,39.310298]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.038979,43.900977],[8.439744,43.867473]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.03125,40.54625],[24.379602,40.247499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.91125,35.5325],[-133.7525,34.08]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-166.1175,-36.4175],[-164.0875,-36.2275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.4925,44.465],[36.439609,44.759141]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.789692,44.880322],[14.8975,44.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.86,59.1175],[38.4975,59.22],[38.1325,60.025],[37.1925,60.2825],[36.875,60.9],[35.6975,61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40,-40],[40.315,-39.7075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,20],[160,17.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.720547,56.398438],[-5.483984,56.51543],[-5.26,56.7025],[-5.12,56.8225],[-5.1375,56.84]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.1875,-28.2875],[-165,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,10],[-31.5275,11.745]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.91875,32.03125],[-76.42,31.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.755,38.2725],[-12.16875,37.699336]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.862468,50.634133],[1.243032,50.629766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.6525,26.55],[-175.06,25.22]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.9,-40.3],[172.545,-40.0325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,-35.385],[-140,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.98,-43.1825],[85.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.01418,61.979727],[18.098125,61.650312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.395,-4.615],[-140,-1.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.778125,58.673125],[-1.356133,58.670469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.203203,37.980781],[0.192188,38.465625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-98.7525,-20.0175],[-99.1,-19.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.52,27.66],[49.09,27.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.2,34.7325],[25.695,34.48375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.2175,50.9125],[-30,50.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.451475,55.546858],[15.835474,55.509087]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.680625,30.52875],[-67.51875,30.995625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.3025,-39.285],[150.109375,-37.7925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.060703,57.296289],[18.163398,57.671094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.33,57.095],[4.6675,57.016875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.1625,35.6325],[138.09875,40.50125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.2525,57.31],[5.220313,56.46125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.774375,65.679375],[22.648438,65.283398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.2425,10.6275],[92.9775,10.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.6975,-13.26],[153.0975,-13.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.402129,35.471797],[25.306733,35.501705]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.00625,58.97],[18.97,58.680937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.4175,40.6525],[-47.4925,42.8075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18,15],[-21.295,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160.3625,29.6575],[-160,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.190925,56.319414],[16.000312,56.106719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.55,-17.2875],[-145.715,-14.445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.27875,41.4425],[6.69,41.66125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146,-16.7],[146.58625,-16.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-40],[91.77,-41.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.476719,58.596914],[-2.744531,58.765469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.710312,46.014219],[-8.023125,45.86625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.654687,51.925156],[5.65375,51.9575],[6.0375,51.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.38042,52.485508],[4.83875,52.425],[5.071875,52.109375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.991055,57.008027],[6.794634,56.712373]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[76.45,7.4575],[75.955,6.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.376821,41.597085],[9.728066,42.124824]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.89,-45.4025],[-150,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.89875,27.65875],[-96.475,27.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.0025,-34.305],[0,-32.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.081094,57.984375],[4.539375,57.721367]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-22.7875],[-1.5375,-21.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,0],[-23.96,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-12.895],[-10,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.11,45.405],[-24.155625,46.25125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,30],[-120.61,32.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-55.2375,25.0475],[-58.675,23.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.83125,16.38],[113.1125,16.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.7025,48.115],[-13.1475,48.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.251562,59.371094],[19.008465,59.705375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.5825,47.1975],[-1.69,47.2025],[-2.375,47.145352]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.9,-36.25],[179.5,-37.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.7625,7.2875],[-35,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.181152,37.325801],[12.520449,37.301445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.9,65.6],[-24.0825,64.69875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.44957,36.637656],[-3.27042,36.278008]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,27.2825],[-54.86,25.30125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.1375,52.5675],[-10.5,54.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[108.605,20.3025],[106.8725,20.685],[107.1,20.25]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.43125,-2.879375],[170.7975,-7.165]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-108.07,8.1075],[-105.0025,5.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.1925,-35.1675],[-44.7575,-35.1625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.76,24.7025],[-17.97375,21.07375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.283398,60.16582],[25.090547,59.806436]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.2175,55.1475],[-0.00125,55.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.6425,32.8725],[-124.3125,32.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.42125,45.9625],[-60.2,47.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.01125,31.74625],[30.38875,32.23625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.483125,40.129375],[5.975,40.3075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.665,15.515],[-53.29125,17.36875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.5125,38.825],[6.666875,38.215156]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.67,18.7425],[140.010625,17.688125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.119688,56.64125],[8.993164,56.89248]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,30],[-42.3975,30.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.72875,39.3075],[3.8825,38.91]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-29.5025],[-19.545,-29.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.1025,32.31],[-78.325,31.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[62.9075,7.145],[60,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.92625,45.68375],[-130.0025,44.6925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.4025,22.1425],[-74.895,21.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.356279,41.171138],[8.766053,41.266393]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.705,20.8175],[-68.9,19.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.912393,41.787236],[16.655576,41.640464]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,30],[-131,31.0875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.620781,41.540937],[19.038438,42.02125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.9246,50.200186],[-1.532946,50.24703]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.67,56.4925],[-7.6325,57.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.87125,40.810625],[25.59231,39.925566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-174.455,-24.7225],[-170,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.979375,35.428125],[-47.1025,33.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.1025,65.0725],[39.555,65.45375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.617188,65.831875],[-14.73,65.76]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,13.33],[-143.6975,13.9475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.635,23.8525],[-150,26.1075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.215,-32.1125],[100,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.779844,53.08125],[2.435625,53.429375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.5075,-18.15],[159.505,-11.18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.6725,-7.85],[116.695,-7.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.281719,49.017773],[-5.289603,48.464297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.37,42.73625],[5.378965,43.050645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.943125,12.02375],[44.701191,12.123084]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.710625,35.91],[34.405,35.8525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.73,0],[143.1975,3.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.115,26.75],[-70.0325,27.1225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.316113,57.824902],[7.934531,57.566284]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.1,57.9975],[-137.5125,57.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.076138,39.862085],[26.3875,40.16],[27.2675,40.595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-104.3,0],[-103.445,-1.85]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.36,40.09875],[-9.699922,39.473281]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.245981,36.202173],[23.559347,36.195459]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.44,-17.9175],[117.704375,-16.459375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.81278,51.167213],[1.868823,51.477681]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.195,27.37375],[-73.2575,26.54375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.18,30.155],[-74.645,30.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.148335,42.885435],[5.378965,43.050645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.715,-14.445],[-140,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.693281,51.971836],[-6.106875,51.918594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.736152,38.705385],[26.152444,38.613633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.46,-20.405],[156.45,-19.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.509844,45.197031],[-5.61125,44.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.27,-20.0525],[-94.17,-24.42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.687598,51.32625],[-9.505,51.3525],[-9.2625,51.405],[-9.25,51.4075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.0175,-10.0225],[-22.8075,-12.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.9325,64.130938],[23.4625,64.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-151.255,21.33],[-156.8025,21.3675],[-157.512266,21.273633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[156.825,16.97],[160,17.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.57,46.186875],[-2.597188,45.826875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.8125,-17.359727],[-150,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.8275,35.5],[-7.335,34.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.226719,37.613281],[20.820312,37.349688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.129075,43.962122],[15.480953,43.776353]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35,25.2775],[-38.31,28.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.185,47.355],[-40.0025,46.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.155625,46.25125],[-19.96625,47.293125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,-40],[-155.2675,-35.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.78,-1.8075],[-20,-3.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.835,-33.93],[160.0025,-33.4825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.38,-18.2125],[163.7,-19.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.04,55.18],[142.145,55.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.255674,49.907744],[0.688661,50.350463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.7925,57.2025],[-132.53,56.6125],[-133.22,56.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-20,39.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,40],[-60.5025,39.2375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,40],[-30.0225,38.948437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.2225,27.3325],[33.9825,27.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.005637,54.352508],[14.43535,54.595088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.1625,54.6725],[-131.5625,54.6375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.8,-54.3775],[-84.7525,-55.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.036562,12.6975],[-57.97375,12.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.875781,55.545547],[17.015801,55.898398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.58125,35.43125],[28.920625,35.503125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.4625,21.815],[120,22.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.619375,36.385625],[34.9925,35.875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.5775,-3.97],[57.545,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.627153,37.238853],[23.441687,37.458124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,0],[77.6925,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.600625,66.39625],[-17.380938,66.065625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.4275,42.895625],[34.6475,42.788125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.19661,19.230025],[-73.2125,19.2425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.815,62.5475],[-8.12875,62.07125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.929062,57.948437],[-0.11625,58.309375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.622686,54.63365],[14.019648,54.751348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.188398,52.077695],[4.38042,52.485508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.713926,49.025977],[-5.872583,48.592964]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.26418,36.671563],[13.026172,36.29752]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.84,14.3175],[-137.255,12.8725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.85875,36.415],[-25.7725,34.595]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[161.8825,46.74],[158.5625,45.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.615,45.28],[-2.597188,45.826875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.6,-16.7],[139.31,-16.09]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.654141,-14.443984],[-171.6675,-14.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.48125,36.735],[14.082495,36.676348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[95.7825,-10.03],[90,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.385,42.865],[131.795,42.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.72625,-3.48375],[117.155,-5.56875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.02,-2.6825],[116.9525,-1.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.4675,41.715],[-160,41.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.775,20.12],[123,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.1825,12.66],[68.8025,14.6775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[82.8525,-14.8625],[84.28,-15.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.615,54.4775],[2.3575,54.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.805625,-18.205625],[174.24625,-15.27875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.3175,33.8925],[124.49,33.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.07004,37.507314],[25.509514,37.176184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.09875,36.04375],[16.37375,36.395]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-20],[-125,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.984121,57.868047],[7.419902,57.585527]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.001005,44.710743],[136.01,43.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60.7175,10.755],[65.037969,10.012969]]}},{"type":"Feature","properties":{"pass":"gibraltar"},"geometry":{"type":"LineString","coordinates":[[-5.32584,36.043621],[-5.716416,35.907412]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.1875,-28.2875],[-165.01,-30.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.285625,66.604375],[-14.462969,66.379375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.393125,62.802188],[19.479375,62.294375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.0025,-35.005],[18,-35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.4425,57.9025],[0.75,57.81375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.505,28.34],[-87.36375,29.29375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.51,44.8475],[-20,43.6375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.15,26.235],[-87.8375,26.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.625,36.50125],[-72.545,37.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,20],[141.4675,18.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.516328,57.951445],[9.440625,58.222188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.7,61.235],[7.6675,61.225],[7.4175,61.185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.27918,46.081191],[-1.596523,46.256055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.85875,32.6075],[-74.2675,32.30875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.2925,34.13875],[28.11625,34.40625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.12875,-13.985],[174.1025,-13.19375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[68.025,2.0025],[67.5325,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.319844,55.808359],[18.57375,55.78625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.7125,17.955],[-75.855,16.94125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.088066,49.74123],[-1.839488,49.887781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.069297,28.329922],[-15.89625,28.360312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[171.805625,-18.205625],[168.5575,-22.005]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.5675,40.84125],[8.103125,40.953125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.133311,43.544722],[15.148008,43.202773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.703125,58.797187],[4.478125,58.512187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.106563,28.959063],[-15.593125,28.889375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.435552,59.908784],[25.283398,60.16582]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.945,-44.2125],[0,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.757305,35.227305],[25.910625,35.455469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.1,59.8075],[-0.792188,60.057187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.19875,40.162734],[2.345554,40.599189]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.126465,48.693008],[-2.329688,48.909688],[-2.533433,49.108145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,22.745],[138.6375,21.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-144.105,-16.05375],[-140.66125,-15.07125],[-140,-14.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.0625,25.33625],[-44.645,25.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.6,12],[-86.8075,11.11]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.4375,22.52],[124.427188,21.252187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.947437,36.525415],[28.283672,36.377031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.48,38.1025],[120.83,38.55625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.1125,-45.4025],[120,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.0575,40.0875],[160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.196691,19.230134],[-73.19661,19.230025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.09,-19.2025],[9.7475,-20.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.985625,54.510937],[-10.0525,54.3225],[-10.115,54.295],[-10.338125,53.749688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.015,4.9075],[-88.91,5.5075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.004674,43.208229],[15.526992,43.320381]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.314542,45.632634],[12.964375,45.506953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.9975,36],[30.140937,35.641094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.886254,37.865082],[19.92,37.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.4975,61.1475],[-3.78625,61.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.036152,57.56498],[16.658262,57.161621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.41708,54.623066],[-0.3325,54.33625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.01,49.6325],[-15.3225,48.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.4475,39.45875],[-55,35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.884375,21.621875],[-73.766562,20.939375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.30475,55.035637],[18.239062,55.553359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.71375,29.43375],[-17.8,29]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.3725,6.54],[111.9125,9.7975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.3,-39],[146.4325,-39.1675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,16.67],[150,15.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.635938,63.64125],[9.1225,63.51]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.251562,59.371094],[18.6625,59.246797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.3575,61.7225],[4.180312,61.413438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135.01625,-25.2625],[-130,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.423711,53.838926],[7.073384,53.77512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.548184,36.386191],[22.58125,36.75],[22.973813,36.431958]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.81875,16.98125],[-25.07,16.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.6675,53.7425],[-129.4675,52.49]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-138.8625,41.2725],[-140,41.4325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.805,-47.365],[-10,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.675,-32.5275],[165.74,-34.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125,15.17],[-125.6425,14.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.872583,48.592964],[-6.160938,48.760937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.7725,11.6125],[-61.79875,10.6875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.7825,55.9825],[-0.165,56.555]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.8475,15.4125],[-71.5575,16.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.725,22.57],[65.1075,21.35],[65.1025,20.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.921318,52.701387],[-5.686904,52.46791]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.8,5.7],[126.01,5.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.573867,36.835508],[22.036809,36.497406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.2625,52.295938],[3.836875,52.74875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.765,40.315],[4.654375,40.162188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.02,43.925],[-9.156367,43.561094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[79.545,2.6075],[80.695,2.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.188398,52.077695],[4.127988,52.351133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-123.96875,38.284375],[-122.9,37.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.4725,28.4775],[-92.41,28.88125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.579688,15.480937],[-91.8875,11.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.527939,53.538066],[-5.235,53.35875],[-4.976504,53.224507]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.172656,58.85125],[23.464531,58.669543]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.59625,-34.270625],[14.005,-27.00875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.329941,40.571616],[17.964287,40.843486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.3375,-16.49],[-85,-15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.56,52.805469],[-5.195742,52.796914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.254687,36.852031],[-8.221875,36.569375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.9975,-52.185],[-79.995,-54.41]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.4275,27.57],[-149.02625,29.11125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.6375,24.725],[-85.185,23.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.302969,64.491406],[-15.10125,64.086875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.305,-16.4575],[-149.8125,-17.359727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.461777,39.558867],[24.0525,39.725586]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.04,43.8],[30.5925,43.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.195,30.015],[-149.605,29.6275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.883651,59.737272],[23.969263,59.470547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.84875,41.52625],[2.535918,41.327461]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.742734,56.151094],[20.916562,55.968047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.693281,51.971836],[-6.990234,52.043125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[67.3475,7.3275],[68.825,8.84875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.115,26.75],[-69.2975,23.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.7475,22.3875],[-55.2375,25.0475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-10],[-11.325,-11.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.67,20.05],[-139.3825,20.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.603267,55.799884],[-0.2175,55.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.276172,54.441563],[-5.061953,54.614063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.430313,49.543438],[-2.088066,49.74123]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.462969,66.379375],[-14,65.975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.921318,52.701387],[-6.334453,52.254629]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.674375,45.144375],[-9.235039,44.361328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.366875,32.474688],[14.40375,32.73125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.58875,58.64625],[-0.3675,59.0125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.07,47.0125],[158.5625,45.4625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.255,35.4275],[29.7425,35.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.7425,55.5625],[17.986406,55.811875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.97,41.323906],[18.692092,40.695101]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.3825,-21.52625],[113,-23.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-143.615,-3.66],[-142.06,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.036484,39.93668],[23.453954,39.883619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7,52.331875],[-6.975,52.245],[-6.990234,52.043125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.045,25.38625],[120.26,25.7775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.1825,37.815],[120.48,38.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.6725,63.7675],[-16.3675,63.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.765,-14.63],[-37.6275,-20.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.4725,50.1825],[-10.706875,50.58375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[158.4825,21.61],[160,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.54375,40.899375],[3.875,41.0025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,20],[-114.92125,21.76375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.7925,35.7625],[-125.795,36.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.78,64.98],[34.8025,64.985],[35.0225,65.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.319315,55.488536],[7.098125,55.050625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.960938,27.070625],[-73.2575,26.54375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.235,24.49],[-154.545,24.818125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.09,57.773125],[24.305,57.7475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.19875,56.086875],[15.208984,55.821055]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.2675,-4.7875],[-86.8475,-3.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.513984,60.741211],[18.423047,60.707695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.32,-10.715],[-170.595547,-14.152734]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.985,59.425],[-2.100625,59.70375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.60125,38.8825],[6.2775,38.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.6425,28.9375],[-74.88625,28.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.39375,61.965],[18.605,61.5825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.977891,59.996338],[21.237109,59.49334]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.547754,39.230442],[25.047529,39.195288]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-141.1725,52.3475],[-149.695,53.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.9475,57.6725],[-87.3825,58.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.58,59.23],[19.196875,59.211094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.1175,66.3225],[8.675,66.8975],[9.610625,67.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.216855,44.554338],[13.863359,44.43959]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.662578,50.626484],[-5.955107,50.582607]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[178.375,-6.8375],[178.17625,-7.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.245,25.99],[-160.3625,29.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.026172,36.29752],[13.615547,36.486328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.6475,43.4625],[-138.265,41.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.1125,9.1325],[160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.175,58.2275],[22.450625,57.80125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[50,-41.9275],[50,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.91793,54.895625],[18.30475,55.035637]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.315702,58.246777],[10.986465,58.350725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-50],[-34.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.969263,59.470547],[23.608594,59.370469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.58,-56.48],[-65.17,-56.00125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.21,40.0125],[8.393438,39.832773]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.938406,37.792102],[20.820312,37.349688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[40,-40],[30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.17375,-55.2],[-72.585,-55.91],[-67.88,-56.355]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.16375,59.35125],[13.5675,58.985]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.00241,36.943411],[25.358799,36.8823]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170.7975,-7.165],[171.53,-8.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.655,13.9775],[-79.68,14.2075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.295,41.805],[-64.6325,41.2225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.8075,11.2625],[110.2025,10.4175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.75,23.8775],[-23.23,20.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.32584,36.043621],[-3.89625,35.715625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.0175,-18.4925],[153.3825,-23.82375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.666875,36.456875],[-0.288516,36.661797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.7425,31.44],[34.24125,31.978437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.315,19.915],[119.705,19.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.168828,53.909648],[0.609102,53.816172]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.2475,-35.185],[-49.915,-38.485]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.995,-54.41],[-76.24125,-54.92875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.600625,30.1325],[-71.2525,29.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-97.6725,10.4],[-94.0475,11.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.79,26.775],[-75.405,26.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.008125,26.146875],[-128.6125,28.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.3,-11],[124.04625,-10.92375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.959687,36.066563],[20.5975,35.7825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.961719,60.365117],[4.493164,59.836953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-47.43,17.565],[-46.0375,18.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.4875,14.65],[150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.505,28.34],[-86.31,28.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.998682,39.514512],[25.775674,39.137302]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.089531,49.997148],[0.255674,49.907744]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.959687,36.066563],[19.5675,36.20875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.53125,52.8375],[141.73,54.1275],[141.95,54.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.3125,33.345],[-75.4475,32.9075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.954531,4.022656],[72.2725,5.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.5925,28.24],[-21.75,23.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.72515,53.843041],[8.157101,53.959185]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.8925,-30.0775],[0,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.1475,33.2975],[25.16,33.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.740021,61.920164],[4.9275,62.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.145,33.42],[-47.1025,33.15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.795,15.93],[-160,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.56,52.805469],[-4.976504,53.224507]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.1425,32.54],[33.905,33.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.734531,61.2575],[20.141562,61.29375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,30],[-127.8325,30.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.5275,28.3875],[125.7875,28.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123,-16],[121.785,-16.9925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.9975,-29.9975],[5.0225,-25.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.897364,56.449147],[20.55042,56.64918]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[154.0575,40.0875],[159.6175,41.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.325,52.028437],[2.461475,51.732637]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.89875,21.4575],[38.6425,21.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.508125,37.379063],[5.9675,37.26375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.4925,29.805],[-71.2525,29.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.0025,33.6325],[-43.145,33.42]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.92,45.67],[-14.8925,46.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.42625,59.305],[20.668047,59.100625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.055,14.5125],[-80.5,14.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.100625,36.533125],[-70.103281,36.156094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.6475,37.685],[-33.3675,37.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.625,12.4875],[-61.804063,11.961875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.93125,37.3425],[-15.0875,37.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.59231,39.925566],[25.303721,40.320674]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.73125,58.2925],[-6.22707,58.164531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.229375,36.69125],[-11.278125,36.711875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,-30],[-120,-24.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.73375,59.5425],[3.100625,59.299062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.5825,37.82375],[8.13,37.830625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,20],[156.825,16.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.84269,63.271816],[20.300833,63.439908]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.215,61.16],[2.526875,61.0825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.656875,49.909922],[-7.98375,50.07125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.680625,30.52875],[-69.3575,30.25625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.0275,-35.2],[-155.3375,-35.07]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.0475,11.0225],[-93.66,11.0875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.271973,50.628486],[-0.547988,50.43625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.3825,58.61],[-90.655,59.815]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.251514,41.357402],[11.811123,41.008486]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.156641,56.687109],[-7.095,56.954062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.915,35.365156],[-2.61125,35.966563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.186611,42.07395],[10.463164,41.705469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.33,36.0725],[-9.87,36.3625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.0125,5.295],[128.36,4.0475],[127.585,2.8875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.395625,50.685],[-8.135,50.5575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.89,-14.505],[-175.47,-14.1825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.211406,55.83875],[11.33822,56.091329]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.27624,41.837959],[3.967344,42.223594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-146.26,-6.3125],[-144.62,-6.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-50,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-40],[-50,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.16,33.5625],[25.46875,34]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.914634,50.762358],[-0.582109,50.710166]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[15.72402,54.964635],[15.451475,55.546858]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.23375,44.276875],[-7.125,44.55]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.714746,59.065039],[3.620312,59.264062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.950937,36.170625],[-74.49,37.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.77,71.9125],[-165.7475,70.0225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.11,-45.405],[20,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-90,-50],[-94.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.71375,29.43375],[-16.106563,28.959063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[150,20],[152.1475,17.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.8925,6.9475],[121.7625,8.72]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.179063,33.616875],[33.11375,33.39]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.116108,37.745186],[26.143315,38.162983]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.255937,51.314375],[-7.608437,51.464687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.035,35.92],[123.1975,37.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.250391,57.807266],[19.680195,57.877598]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.4075,40.7425],[5.856875,40.78875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.166472,51.147981],[-3.924785,51.556335]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.779531,38.952188],[5.60125,38.8825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,30],[-155.9475,34.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.181016,40.173789],[-11.245,41.615]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30,-50],[40,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.405,-5.9975],[11.89,-5.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.825639,55.203441],[-6.633662,55.371553]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-79.995,-54.7725],[-80,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.5375,20.105],[124.3825,20.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.142504,34.804087],[-7.719063,35.5475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115.44,0],[-120,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.2268,36.042238],[14.559629,35.929512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.3625,-0.49],[126.335,-0.725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[157.115,50.02],[157.59375,50.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.934063,55.691875],[4.252344,55.362188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.315702,58.246777],[11.382346,57.877431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100,-30],[-105,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-126.1475,-26.13],[-125.685,-25.9225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.28,51.2875],[-12.1375,52.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94.315625,-41.379375],[100,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.2425,47.23],[-58.539228,47.308888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.7075,-3.335],[66.03,-6.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.634387,53.48209],[-3.885273,53.643613]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.955625,63.75],[10.815,63.675],[10.6425,63.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-32.7175],[-42.4025,-32.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.380625,54.685947],[-5.120417,54.936321]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.604028,61.650012],[19.752969,61.821328]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.08625,52.7725],[-10.404687,52.319531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.049531,68.127187],[13.891875,67.750625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.464531,58.669543],[23.399687,59.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.6725,26],[-94.2425,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,-1.55],[90,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-9.68],[69.88375,-9.961875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.100732,38.490039],[24.898643,38.091514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.440156,59.17311],[5.4175,58.8025],[5.473301,58.69998]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.458203,48.838672],[-6.478906,48.577344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75.435,-35.7875],[74.3425,-35.9925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.27625,55.71875],[18.956563,55.702969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.3,34.0625],[22.6275,34.2425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-10],[-14.189063,-8.093438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.0025,24.6925],[-153.14,23.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.008437,42.025],[4.995625,41.708594]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.68875,64.63],[39.5125,64.97]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.58,13.435],[-16.5625,13.455],[-17.5325,13.1775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147.8825,40.165],[141.3,35.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,67],[-13,66.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.019688,19.97375],[-60,22.7725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95,-15.17],[-100.055937,-10.021562]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.8775,0.89],[-30,2.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.728066,42.124824],[9.8279,42.364806]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-7.935],[-28.7725,-8.7975]]}},{"type":"Feature","properties":{"pass":"magellan"},"geometry":{"type":"LineString","coordinates":[[-70.875,-53.76],[-70.57,-52.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.6675,25.785],[120.26,25.7775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.935967,41.305891],[8.657148,41.25707]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.650625,33.94],[28.11625,34.40625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.249531,55.384531],[17.500703,55.30668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.4525,64.2925],[-4.75,64.3275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[88,21],[83.6575,17.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.987588,59.961416],[19.69124,59.906797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.704336,48.739219],[-3.131587,48.801069]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.565,70.5875],[17.82,70.62375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.69375,59.2625],[5.93,59.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.783164,44.592305],[-5.61125,44.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.516147,40.096208],[13.529766,40.492578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.245981,36.202173],[22.548184,36.386191]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.782803,50.104521],[-4.58043,49.953359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.4325,44.095],[32.2725,44.125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70.6975,-49.3725],[70.47,-49.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.7475,-20.37],[7.895,-22.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.84269,63.271816],[19.615,63.415]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.35,66.365625],[-17.085,66.43]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.733301,44.051143],[9.183784,44.192361]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.761133,36.697363],[-0.288516,36.661797]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-175.89,-14.505],[-180,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.0025,60.835],[-150.395,61.1675],[-151.53,60.785],[-152.8625,58.895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.1625,21.47],[38.89875,21.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-30],[75,-25.2775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.265,-60],[-70,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165,5.0575],[-162.4725,7.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.461641,41.581094],[17.613828,41.268682]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.5525,25.851875],[121.6675,25.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.497386,42.746442],[10.01048,42.660972]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.485823,53.499235],[-5.147969,53.50375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.5475,72.2325],[-79.955,72.6375],[-77.6475,72.8125],[-71.635,72.3625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.34125,-0.325],[123.7375,-2.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-30],[-168.1875,-28.2875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-50],[-50,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60.0025,-43.305],[63.3825,-43.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.1275,60.58875],[-4.907422,60.282812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.353047,55.711758],[6.917637,56.007363]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.094375,39.663594],[10.4175,40.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,20],[-180,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,20],[-180,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.73,28.8],[-60,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[94.93,-41.2575],[100,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.9025,-42.55],[-56.97625,-43.865625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.54375,40.899375],[3.94875,41.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.9975,-35.845],[-156.0275,-35.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.200312,56.110312],[5.3225,55.644063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.3825,-23.82375],[153.585,-18.62]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.601875,42.577109],[5.852773,42.782852]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.671875,38.979023],[24.741055,38.722437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.4825,64.915],[7.315,65.2025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.518125,59.256875],[3.100625,59.299062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.93625,25.2175],[-73.9125,23.80125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.829688,46.004688],[-5.648125,45.58625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.5,-33.5],[32,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.63,-30.365],[-43.3925,-26.9425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.675,23.43],[-57.7475,22.3875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118.12875,-17.94875],[122.061875,-11.35375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.5225,43.755],[-133.819375,43.974375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.357578,36.687515],[24.596785,36.850251]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.284688,58.859375],[18.97,58.680937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.6525,-19.5675],[9.09,-19.2025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.71875,45.77625],[-4.05,46.00875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.81,42.435],[-10.69625,42.6925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-100.055937,-10.021562],[-100,-10.3425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.149774,53.588088],[-4.289297,53.870781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.485,31.24],[122.3425,31.04]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.345554,40.599189],[2.64875,40.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.95,-5.4],[116.4075,-5.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-4.4625],[-110,-3.1675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,13.765],[75.3,9.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.1,31.8],[-8.72375,33.689375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.515754,43.396252],[7.115,43.261992]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.035,34.800625],[22.2825,35.64375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.029033,49.911714],[-3.637832,49.762754]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-121.8875,18.2125],[-129.45,19.4775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[115.614688,-9.172187],[116.68,-9.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.54875,28.55],[-91.30375,28.42125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.3925,42.2075],[35.295,42.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.489199,56.099004],[6.353047,55.711758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,40],[-50.5875,40.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,50],[-140.8525,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.375,-34.64],[155.2,-36.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.809434,39.477559],[14.379375,39.819375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.915,27.9675],[-60,26.1575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-34.915,-55.0675],[-40,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.62125,36.955898],[23.984683,36.948062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[44.1275,65.895],[43.7325,66.51375],[43.1675,66.99375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[60,-37.5975],[57.5225,-37.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-39.5,-20],[-37.6275,-20.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.61125,44.855],[-4.705938,45.724375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.8175,38.8225],[-135.7675,38.2725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.519375,39.689141],[4.7475,39.545]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.540937,39.187188],[18.090957,39.447441]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.505,25.56],[127.325,25.085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.154512,43.383896],[-9.755,44.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.9975,0],[144.73,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.995137,50.41293],[1.243032,50.629766]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.615,74.7825],[9.33,70.2275]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-97.1,75.07],[-96.415,74.2975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.986406,55.811875],[18.239062,55.553359]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.66375,57.96625],[-2.897454,58.567219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.762187,64.915625],[22.244062,64.816875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.79625,44.13625],[29.74,43.8825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.6,3],[104.7475,5.8175],[104.89625,8.33125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.073384,53.77512],[6.790234,53.982109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-29.5025],[-20,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-135,-5.0575],[-135.7625,-4.29]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.335,-0.725],[125.5,1.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.748125,31.585625],[32.119062,31.647031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.635938,63.64125],[9.51,63.7],[9.57,63.7925],[9.515937,63.846875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.287852,57.043262],[20.117129,56.855566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.29252,56.583906],[19.147813,56.902109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.90125,20.06875],[133.2125,16.935]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.385,32.965],[25.75,32.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[111.83125,16.38],[110.4475,12.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.694688,66.196875],[-19.2875,66.27],[-18.970938,66.24]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.432834,54.658691],[15.697578,54.295391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160.0025,-34.5625],[160.0025,-35.68625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.055,-12.8575],[-180,-14.4925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,30],[-180,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.03875,48.51125],[-125.5,48.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-20],[-10.795,-20.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.492695,38.715718],[7.863125,38.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.54,54.1675],[-164.98625,54.46125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.8725,28.83],[122.9575,29.225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.95375,27.03],[-76.515,26.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.128359,58.375],[18.430703,58.305273]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.964375,45.506953],[12.364736,45.269893]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.625,12.4875],[-63.7725,11.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.325,36.0075],[166.315,36.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-49.575,-32.005],[-49.5875,-32.2975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104.740625,1.6625],[104.499219,1.555625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.86,28.701563],[-15.069297,28.329922]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.526071,45.198754],[14.26142,44.988687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.223005,39.419204],[20.010156,39.600938],[19.937705,39.856963]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-60],[-50,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.020605,54.168008],[5.245566,54.889023]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.868823,51.477681],[2.126753,51.171348]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.11,45.405],[-25.5475,45.8175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.575,54.365625],[2.873125,54.61125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.118125,-18.09],[167.97625,-18.43625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.7325,-20.2],[160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.46249,50.480791],[-3.215,50.21625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.175,17.4975],[-87.9075,17.1425],[-87.5625,17.3325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.9975,-35.015],[-9.9975,-33.92]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.255674,49.907744],[0.01625,50.233125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.00375,40.836758],[-10.665,40.5875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.272012,49.962236],[-1.9246,50.200186]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.5125,38.825],[7.584219,38.998438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.725667,56.097224],[11.33822,56.091329]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.419822,36.391848],[-2.61125,35.966563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.5075,-3.465],[-30,-5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[122.3,-11],[121.5275,-9.0925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.235,19.6025],[38.1175,19.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[92.8425,16.32],[92,20],[91.3325,21.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-91.85125,28.66625],[-91.57875,27.81125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.63,7.6775],[-25.9225,5.9775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.840937,60.062812],[4.911777,59.718779]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,50],[-20.51,50.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.99,10.6625],[-100.69,10.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.500449,38.29293],[13.16335,38.280382]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.10125,64.086875],[-16.3675,63.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.9225,34.7075],[-9.011875,35.281875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.94125,41.35125],[-129.0225,40.925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-44.9925,-35.3775],[-50,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.727852,54.496992],[-8.725,54.87],[-8.479688,55.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.566758,36.880391],[-0.47,37.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-30],[-30,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.0525,27.7925],[-72.8175,27.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.8325,14.43],[-68.315,15.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.3625,66.0525],[10.40875,64.93125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.168114,37.267],[23.984683,36.948062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.46875,34],[25.695,34.48375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.508301,42.19166],[6.69,41.66125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.5,-47],[170,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[34.6575,36.654063],[34.3175,36.385],[33.9425,36.128438]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.032949,36.54707],[26.229688,36.745088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.235203,56.705232],[10.914292,56.707234]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.741055,38.722437],[25.315215,38.888848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-122.04,-22.09625],[-120,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.301875,58.63625],[0.215,58.5025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.835,13.305],[-61.4975,13.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.266152,59.013701],[10.368342,58.619362]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-145.4,15.565],[-145,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.885273,49.620723],[-1.184526,49.875571]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.195,57.9375],[0.75,57.81375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.0125,60.155],[29.4,60.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-129.45,39.4925],[-130,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.33595,52.879058],[1.25041,52.986816]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.395625,50.685],[-8.117031,50.880625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,50],[-46.515,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.60125,35.39],[12.756484,35.875937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-27.050937,38.749375],[-27.911562,38.914687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-156.33125,53.83875],[-152.9725,56.6775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.28875,33.04125],[-14.7575,31.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[176.3525,-9.2675],[173.7,-12.4575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.695,54.6175],[-133.98,54.65]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.85,12.26],[-24.5275,13.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.608594,59.370469],[23.180596,59.44479]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[37.4475,44.380938],[38.19,43.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.40375,38.85625],[11.028125,38.784062]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.9975,34.3825],[160,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-3.1675],[-110,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.469375,39.95125],[5.179121,39.955371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.068125,11.07125],[-58.4525,12.2325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-93.335,29.99],[-93.32,29.625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-58.605,47.325],[-58.2425,47.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.515,50],[-50,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[114.3725,6.54],[119.90125,14.345]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.99,37.4175],[-25.009687,37.76]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.3375,36.63],[-74.950937,36.170625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.38,37.57625],[-9.112578,37.612578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.101406,56.646094],[-6.649375,57.014063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80.695,2.155],[81.9,5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.7625,46.625],[142.9275,46.1525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.545,37.4875],[-72.5575,37.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.58125,35.43125],[28.05875,35.611875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.2975,23.6],[-69.5725,26.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.23625,65.063438],[23.751797,65.235781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.990742,50.061914],[0.688661,50.350463]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[153.135,-2.7025],[155.8,-5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.809297,39.776055],[25.998682,39.514512]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.4575,39.45],[-25.335,40.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.775,20.12],[123.2425,20.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.63,56.625],[-17.63,52.7625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.32125,60.575859],[19.09397,60.176763]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.756484,35.875937],[13.73126,35.998975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.542988,51.866641],[1.928394,51.919619]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.6525,27.5825],[-85.14,26.99875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.435625,53.429375],[2.133906,53.819219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.3225,55.644063],[5.49457,55.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.905249,57.467534],[24.017187,57.086719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.6425,21.1375],[37.8925,20.2125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.930508,52.306133],[2.628906,52.187148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.395,-32.83],[-35.33,-35.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.814375,44.189375],[-7.994258,43.911279]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.455278,38.316953],[11.932227,38.128867]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.3525,49.185],[-0.224844,49.425376]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[73.045,1.8275],[73.1125,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.357129,44.037832],[14.346814,43.727184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.325767,51.642944],[1.150381,51.951289]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.964375,45.506953],[13.08001,45.130343]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.275746,50.442839],[0.539297,50.64375],[0.862468,50.634133]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.0225,38.3325],[10.234531,38.099219]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[165.6,-46],[160,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.777886,56.109766],[10.95052,55.873606]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.393438,39.832773],[8.202847,40.045364]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.8825,20.225],[-78.065625,18.979375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.755,26.4525],[143.0375,27.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.005,37.77],[11.396704,38.073561]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.17125,35.970469],[-10.33,36.0725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.9625,-9.4225],[159.5775,-9.045]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.935039,49.176758],[-4.152488,48.913396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.63,11.4375],[-130,11.665]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.2,16.2],[56.37,17.195],[57.925,18.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-24.155625,46.25125],[-20.3475,49.6875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.6575,-24.5425],[-76.035,-25.9975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120.045,25.38625],[120,25.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5,-25.2775],[-4.4125,-24.6775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.7725,-15.07],[54.885,-16.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.008339,57.770645],[9.764834,58.145391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.02625,29.11125],[-150,28.2375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.791707,36.625627],[25.00241,36.943411]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[80,-10],[84.195,-14.3525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.56875,41.778125],[5.008437,42.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.73,35.395],[14.314375,35.810312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.125,16.52],[-159.3075,16.03]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.7875,-12.915],[-90,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[179.5,-37.8],[-180,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.2,25.58125],[-77.62,25.20875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[54.5775,-3.97],[55.37875,-4.61]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.343223,49.781855],[-4.177578,49.34814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.65,-43.75],[70.0025,-43.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.57,46.186875],[-3.23,45.6575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[124.2625,-7.2125],[125.454375,-7.94875]]}},{"type":"Feature","properties":{"pass":"northwest"},"geometry":{"type":"LineString","coordinates":[[-103.4475,73.4025],[-104.945,74.32]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.82375,24.3325],[-82.095,24.40125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.602749,37.437231],[25.509514,37.176184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.239863,65.526875],[21.683516,65.004453]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.565,41.125],[-20,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.5625,54.6375],[-132.31,54.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85,-15.17],[-80,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.255,-24.09],[-74.6575,-24.5425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.095,34.5025],[27.066875,34.80875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[118,-35.5],[116.66,-36.0875],[114.1925,-35.5825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174,-37],[167.46,-36.56]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,40],[-30,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-40],[-30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-25.2475,55.4325],[-26.355,56.495]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.524448,66.182422],[-23.070254,66.132832],[-23.136484,66.534727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.6325,11.9475],[-83.3525,11.99]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.948125,36.88875],[1.51625,36.93125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[162.6975,-10.05625],[163.3025,-10.025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104,-7],[105.09625,-9.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-116.62,13.52],[-120,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.925938,70.0675],[21.1825,70.2375],[21.528125,70.348125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.535625,42.6075],[29.180273,41.264727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.5125,2.5475],[-90.595,3.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.251514,41.357402],[11.031494,40.980557]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85.11,-45.405],[80,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-137.2,37.4175],[-138.555,38.6675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.668047,59.100625],[20.26375,58.895]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[72.5775,-7.375],[76.1675,-10.0275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.215,32.995],[-69.8425,33.26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-124.9925,45.6275],[-125.1025,44.6325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.008339,57.770645],[9.516328,57.951445]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.3125,63.9325],[-167.01,63.63],[-167.36,63.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.444408,37.090765],[26.229688,36.745088]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[91.1725,9.695],[88,13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-17.4525],[-105.82,-14.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178.6825,30],[-180,40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.97375,21.07375],[-21.295,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.8375,18.4025],[-73,17.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-178.6825,30],[-180,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.929062,57.948437],[-0.29125,57.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.76,21.98625],[119.315,19.915]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.495625,35.18125],[-9.8225,33.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.0525,19.385],[-159.125,16.52]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.101801,19.972452],[-64.285,18.84375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.22072,54.951475],[10.67054,54.728424]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.6425,58.3675],[-167.82,59.18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.54625,8.546875],[-13.8175,7.845]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.4025,50.85],[-40,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.165,56.555],[0.49,56.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[141.7475,45.7025],[143.09,45.655]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.6625,26.45],[-83.685,25.8625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170,-30],[-170,-27.2575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[144.9475,13.83],[145.67125,15.22625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.85,41.6325],[-158.4675,41.715]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,-10],[-180,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.805,52.785],[-4.089213,53.258459]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.739763,58.169515],[6.984121,57.868047]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[62.9075,7.145],[63.99,8.5675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-133.22,56.395],[-131.9725,55.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.771665,43.637942],[14.346814,43.727184]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-50,13.62],[-50,16.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-65.9975,-48.8175],[-60.421875,-46.995625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[55.11,-45.4025],[60,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-17.97375,21.07375],[-16.095,25.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[21.237109,59.49334],[20.313437,59.704609]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[177.59,-10.3225],[177.85,-10.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.595,2.055],[-90.595,3.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,30],[-180,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,30],[-180,20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-96.5,-53.6475],[-90,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.445,70],[54.385,69.75625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.96625,37.7625],[5.6675,38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.60125,35.39],[12.9725,35.53625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.041562,34.546563],[29.495,34.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.8725,58.4525],[1.555937,58.307812]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.993164,56.89248],[8.779694,56.930338]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.591562,44.739688],[29.76125,45.06125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.33,-35.0775],[-34.665,-35.0725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.0775,65.415],[10.7875,66.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.042178,50.586245],[0.01625,50.233125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.75,57.81375],[-0.165,57.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.2575,42.0275],[135.455,42.2375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.09375,30.035625],[-150.67,29.265]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.4625,64.715],[22.922773,64.697422]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.16875,37.699336],[-12.400781,37.014375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.588618,42.703418],[10.01048,42.660972]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.525957,56.332773],[11.950625,56.411104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.156641,56.687109],[-6.959375,56.04375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.68,34.8975],[14.874719,35.952957]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-153.14,23.3275],[-157.512266,21.273633]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.221875,36.569375],[-8.50168,36.626758]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[169.995,-30],[160.0175,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.02,37.96],[-67.845,37.68]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.825,32.765],[23.4325,33.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.596523,46.256055],[-1.6525,45.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-50],[-30,-50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[173.0625,1.134375],[-180,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.1,34.4],[-6.3075,35.62875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.515754,43.396252],[7.521152,43.106621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.679063,36.326875],[-8.2075,36.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[170,30],[165,35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-26.355,56.495],[-23.465,56.9825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.07,37],[-10.7225,36.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174.3825,50.315],[176.09,47.6825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.806523,54.399775],[12.087734,54.157578]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.63,-33.6625],[-19.9975,-33.5325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.116108,37.745186],[26.420952,37.83022]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.8325,-34.53],[6.86,-33.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150.02125,29.221875],[-150.09375,30.035625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.5425,-45.73],[-60.421875,-46.995625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-51.8,-32.2],[-54.615,-35.24875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.5,1.1],[123.655,4.1425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.83875,36.345],[-74.43125,36.0775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-148.6725,60.78],[-146.95,60.75]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[106.725,-26.8775],[105.525,-25.6975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-131.785,42.8525],[-130,41.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140,41.4325],[-141.545,41.6475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.274375,11.658125],[-70.64,12.8425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.11,23.955],[-73.884375,21.621875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10,-50],[15.11,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.670117,47.37918],[-6.859687,47.153437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.35,30.05],[129.5625,30.35]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-18.545,63.2925],[-19.41,63.3925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.7225,9.2925],[140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.185,56.57],[4.33,57.095]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-61.8725,-62.93],[-63.265,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104,-7],[110.2475,-8.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.066029,50.901753],[0.696914,50.83457]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-170.76,29.2825],[-173.205,26.9725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.7,14.6],[-83.31625,15.421875],[-83.776875,16.00125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[125.22125,-5.05625],[124.8775,-6.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[31.585148,31.861387],[30.38875,32.23625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.125723,49.297363],[-3.274683,49.67916]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.666816,44.676299],[13.017197,44.858936]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.325,28.4525],[-77.314687,27.958437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.84875,39.37],[10.079297,39.135859]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,4.7825],[70,6.3225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.7,56.2],[137.9675,56.12]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-22.861953,64.063906],[-23.5,64.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-94.4175,28.0825],[-94.415,27.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.65375,68.94],[15.001777,69.098027]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.479375,62.294375],[19.7625,62.3425],[20.11043,62.380625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.2,47.75],[-59.3,46.1]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.9025,37.6175],[16.523125,37.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.769199,56.145088],[16.190925,56.319414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.204062,42.854922],[-10.47,42.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.275,17.0575],[-67.08,16.695]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.596523,46.256055],[-1.429609,45.708789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.695264,37.793544],[24.898643,38.091514]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.971714,36.178628],[26.711875,35.864063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.1975,58.2675],[-40,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-128.7075,-11.3575],[-124.8725,-10.035]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.27125,58.27125],[-0.775,58.3375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.106746,57.850391],[11.382346,57.877431]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-30],[-125,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.08125,34.969688],[-20.665,34.94],[-22.3425,34.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.4775,-28.56],[169.995,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.9125,35.8025],[29.48,35.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,-50],[-63.1025,-53.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.887881,56.8654],[11.748981,57.371318]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32,-30],[33.6975,-26.58875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136,-35.5],[136.625,-35.5625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.18,30.155],[-74.1325,28.9925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.718125,54.610547],[-0.3325,54.33625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.27125,58.27125],[-0.929062,57.948437]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-86.7,5.9325],[-88.55,7.305]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.0875,47.645],[-2.623906,47.280781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113.2925,-5.7625],[113.00375,-6.29125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.8975,30.975],[-143.235,33.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[174,-37],[172.3,-34.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.615,-35.0175],[-9.9975,-35.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11,-19],[9.7475,-20.37]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.668906,57.37418],[19.707686,57.088086]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[51.8875,25.375],[51.6,26.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.659565,55.258401],[16.875781,55.545547]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.879692,43.568643],[-5.509331,43.617627]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113,-23.5],[110.725938,-22.962031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.286719,37.064297],[-9.46627,36.936104]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[79.1025,2.7875],[79.545,2.6075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.835,-33.93],[153.48,-32.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.706875,43.434375],[38.19,43.78]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.4325,33.735],[23.9425,33.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.853125,35.741719],[17.998125,36.25625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-164.8875,-45.4025],[-170,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.885,18.4675],[-69.39625,17.56125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-60],[-40,-60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.5,41.885],[-70.19125,42.10375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,40],[-14.73,39.3625],[-13.75875,39.19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,0],[81.9,5.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[89.7275,18.85],[87.08,14.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.736152,38.705385],[25.41489,39.184761]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.156367,43.561094],[-8.618125,43.990098]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[126.915,20.06],[124.5375,20.105]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.6325,41.2225],[-68.964502,40.340308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.943438,35.452188],[27.044585,35.922881]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.1075,35.2325],[-74.9525,33.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.609102,53.816172],[1.046392,53.582031]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.238955,38.558301],[13.16335,38.280382]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[168.5325,-23.505],[173.055,-26.21]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[39.47,15.615],[41.64,14.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-115.2,27.5],[-116.1725,28.0075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[132.2075,23.7025],[132.96,23.1375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.700625,68.794258],[16.5325,68.575],[16.475156,68.487656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,26.1575],[-60,28.6725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-23.20875,64.4825],[-22.78,64.41],[-22.427988,64.244668]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.635,54.5],[0.8225,54.585]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[97,11.125],[97,13.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.0875,43.1875],[-10.67,43.835]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,20],[-112.6675,17.47]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45,-35.385],[42.8775,-33.13]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.7475,31.44],[-74.225,31.2825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130,-30],[-130,-27.855]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.67875,37.505],[2.155,37.55375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.295312,25.939062],[-75.2,24.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.94375,27.12375],[-76.515,26.475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,-10.695],[160,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-57.793125,32.43375],[-60,31.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[30.0925,34.2325],[31,33.95]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,60],[-6.034219,58.747344]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.34125,66.955],[12.700625,66.5775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.6725,47.0525],[-13.93,47.8675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-45.2475,55.4325],[-47.6625,52.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.2575,11.83],[-35,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.455278,38.316953],[12.775117,38.854687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.1425,32.54],[32.7375,32.765]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.046445,40.513301],[18.623086,40.538965]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.2975,47.7825],[-6.068125,47.966406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.62125,36.955898],[23.627153,37.238853]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.615,54.4775],[1.51625,54.099375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-64.6625,30.0875],[-63.095,28.3625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.50375,34.8975],[-50.0025,35.755]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.0025,34.3075],[-30.0025,33.36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.95,59.1725],[-19.995,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.006875,52.968125],[4.296922,53.03798]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.90436,57.051143],[7.604336,56.875566]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.09397,60.176763],[19.419526,59.931455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.840937,60.062812],[4.493164,59.836953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.9975,36],[30.625,36.43125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-161.5625,10.0125],[-165.435,10.0325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.605,74.6325],[19.626562,71.052656]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.886562,50.420002],[-0.988203,50.156406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.9975,-46.44],[-87.48,-47.735]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.302891,50.098242],[-0.988203,50.156406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.86,38.99875],[-73.895938,39.374844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.631603,57.456724],[10.96079,57.473796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.639141,56.784609],[10.465518,56.974839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,-30],[-111.2675,-31.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.277881,56.896787],[7.173579,56.549888]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[151.855,17.79],[150,16.67]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[143.7425,25.6475],[143.445,26.27]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[139.9975,0],[141,-2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40.0025,56.0575],[-40.0025,53.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.104375,49.138437],[-2.533433,49.108145]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.8025,30.5475],[-71.600625,30.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.419062,43.011875],[14.507051,43.373496]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.583125,60.046875],[3.3975,59.785]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.801758,39.217891],[19.83875,38.7775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[152.1475,17.9675],[151.855,17.79]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-99.6725,-0.3325],[-98.8475,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,13.895],[-120,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.2225,50.905],[-18.32,51.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[134.1225,16.035],[135,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[11.437969,41.627891],[11.509063,41.307187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.521152,43.106621],[8.084434,42.953066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10,-30],[-1.41,-31.535]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.24,63.135],[-32.7275,60.8925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,20],[-153.7325,16.42125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.186611,42.07395],[9.84946,41.877839]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.07875,25.73375],[-84.27625,25.4875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.533193,54.311936],[8.196689,54.343059]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.5225,23.49875],[-73.58625,21.51375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.59,33.315],[28.61875,33.57875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.447407,54.972646],[-5.447498,55.371414]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54,46.1],[-56.18625,46.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-30],[-29.9975,-33.1475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[85,-25.2775],[90.103125,-19.976875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.734531,61.2575],[19.501523,61.532109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.60125,58.9625],[-3.725,59.190313]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.755679,43.520796],[-9.156367,43.561094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.010625,17.688125],[136.61,16.7575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.3075,51.325625],[-8.705,50.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[166.67,-38.795],[162.4675,-37.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.9375,-18.285],[50,-18]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.019688,19.97375],[-60.101801,19.972452]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.8425,41.2075],[-11.181016,40.173789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.836875,52.74875],[4.006875,52.968125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-40,-30],[-37.395,-32.83]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-140.7175,-0.7275],[-140,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.145,7.35375],[-79.948125,7.06875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.842891,41.005273],[-9.3625,40.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-12.021875,49.96],[-11.725,50.285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-19.5925,28.24],[-18.76,24.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.313437,59.704609],[19.908887,59.714678]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.575,52.85],[3.836875,52.74875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-159.255,21.8275],[-157.896563,21.191875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.2475,-8.7],[115.614688,-9.172187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-33.1475,10.0225],[-36.0175,10.010625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.97625,-18.43625],[168.5275,-18.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,-30],[70,-25.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.786406,51.599531],[1.057684,51.571407]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.768828,20.000156],[-73.196691,19.230134]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-169.03,-9.93875],[-166.4175,-9.53]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-173.0375,47.1775],[-170.6675,41.575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.004155,40.577924],[13.31832,40.896455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-165.06,-15.171563],[-160,-10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-38.31,28.405],[-32.8275,30.0525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-0.9775,53.73625],[-0.635,53.672969],[-0.290234,53.687109]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.3325,-30.96],[12.06,-28.455]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.016709,37.527939],[27.25,37.23]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-103.815,-6.77],[-102.5325,-7.5175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.452798,37.190425],[12.814531,37.374473]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[101.15625,2.74375],[100.9225,2.9275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-81.08375,8.9775],[-80.5275,9.4375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.345117,36.432734],[-6.350391,35.909531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.28125,43.234375],[35.6575,43.1225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.9775,35.4225],[124.1775,34.5275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.23125,52.08],[-4.974375,52.020938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.3175,29.95],[-88.07375,30.1025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-31.5825,50],[-40,50]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.435,6.34],[2.42625,4.97875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.283398,60.16582],[24.943906,60.051406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-127.4625,-2.5725],[-130,0]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.2725,44.125],[33.9575,44.075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77.8875,30.3525],[-78.16875,29.77375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,-6.9825],[-146.26,-6.3125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[109.8,3.7],[110.905,1.6425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.11,-45.405],[63.3825,-43.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.725,61.0275],[0.77625,61.11375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.33875,41.3125],[-68.964502,40.340308]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.2475,41.87],[-10.81,42.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15,-35.385],[-15.385,-35.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.44625,38.70125],[2.974531,37.313125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.616113,60.295938],[4.493164,59.836953]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.5975,-20.05],[-2.645,-20.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,48.695],[-30.055938,50.082188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.773467,42.591909],[17.262021,42.919814]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140.010625,17.688125],[144.155,14.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.45,45.0675],[35.4925,44.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.800312,43.855781],[-2.32125,43.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.8,-20.2],[-75.2925,-20.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[160,8.075],[163.075,4.4075]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.447407,54.972646],[-5.633505,54.731068]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.262021,42.919814],[17.590479,42.619701]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.483125,40.129375],[5.179121,39.955371]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.63,37.3525],[17.948125,37.379688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.366875,41.7975],[18.271719,41.101719]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.935,12.3575],[-80.2975,12.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-78.875,32.51],[-79.22,32.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-54.2,69],[-51.1925,69.215],[-51.8075,69.86],[-54.73,70.69]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.61875,33.57875],[28.2925,34.13875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.96,64.13],[-13.92125,64.09875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.8875,32.335],[33.1425,32.54]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.2525,-16.8],[-149.8125,-17.359727]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.532946,50.24703],[-1.302891,50.098242]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-32.360937,37.845938],[-33.9775,36.33]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[33.662754,34.869424],[33.738594,34.45875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135,15.17],[140,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.196691,19.230134],[-73.2125,19.2425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-59.036562,12.6975],[-58.4525,12.2325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-148.1325,11.96],[-150,10]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.795,41.53],[-63.295,41.805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[147,-10],[144.5,-8.5],[142.61375,-9.98375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[6.483359,42.673984],[6.226973,42.812876]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.7075,20.06],[152.1475,17.9675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.357188,21.172812],[-74.63875,21.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.688125,35.751563],[-6.350391,35.909531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.515518,36.735889],[-7.221523,36.770952]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[172.6375,43.5525],[177.9575,44.2525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.812266,37.140313],[3.18375,36.947969]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.25,-15.9425],[5.8775,-14.8225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.17,53.7],[9.1475,53.75],[8.836846,53.857148]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.43,29.925],[129.585,28.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.728438,35.881563],[30.140937,35.641094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.680195,57.877598],[19.668906,57.37418]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.8525,55.105703],[20.065625,55.589805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.01375,35.09375],[-13.12,34.66375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[35.6575,43.1225],[33.8475,43.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[38.706875,43.434375],[37.8275,43.325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.635,72.175],[-126.67,74.54875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.761875,53.75125],[-4.875,54.010312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.6875,70.7575],[-13,66.5]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.681875,59.484375],[28.203906,60.118125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[113,-23.5],[112.80375,-25.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[75.435,-35.7875],[75,-35.385]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.648818,35.316318],[27.0275,35.255]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.885313,55.132188],[3.265,54.91625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-70.68,15.01625],[-71.7375,14.5125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30,-50],[-34.89,-45.405]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.530459,43.106787],[9.141162,43.092314]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.382898,45.325483],[13.314542,45.632634]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.395312,36.695937],[-4.215781,36.429844]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.95,39.335],[-9.907578,38.803672]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-101.61,68.5],[-106.2775,69.0025],[-113.1775,68.38],[-113.53,68.7],[-122.995,70.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-75.1075,35.2325],[-74.805,35.4525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[41.64,14.9],[42.053125,14.906875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.27625,25.4875],[-84.4325,25.16]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.245,41.615],[-11.2475,41.87]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.7225,71.54],[20.411563,71.279375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-21.3775,60],[-19.995,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-69.925,36.7475],[-70.32125,37.06625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[159.79,-10.5],[159.9925,-10.060937]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.5725,36.6975],[-72.5825,36.38]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.5825,41.595],[8.111875,41.577813]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-120,10],[-125,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.41489,39.184761],[25.315215,38.888848]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.81043,55.711328],[7.446348,55.897129]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.608438,35.794063],[-9.00125,35.73]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-29.9975,-35.05],[-30,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.062852,44.548828],[13.397709,44.838541]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.87625,41.055],[-11.181016,40.173789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.942051,64.684297],[-14.302969,64.491406]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,20],[-175,15.17]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.3925,42.2075],[36.3925,42.57125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.920625,35.503125],[29.255,35.4275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.739453,32.532793],[-16.34,33.0275],[-16.315,33.0225],[-16.28875,33.04125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-27.9225],[-18.1975,-28.2975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.3625,49.93],[-7.087813,49.715625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,30.2725],[-146.105,34.235]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.0275,57.445],[-19.995,60]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.75,32.2],[26.1475,33.2975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.906855,36.160156],[-5.32584,36.043621]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-68.02,37.96],[-68.5525,38.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[66.3125,-27.1975],[70,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.006563,26.254375],[-91.6725,26]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-132.31,54.465],[-133.695,54.6175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-46.0375,18.24],[-43.7775,16.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.960938,27.070625],[-73.829375,28.595625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.2325,39.705],[-11.181016,40.173789]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-134.795,30.09],[-130,30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.519687,43.526875],[-1.4525,44.205]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.25041,52.986816],[1.014375,53.32875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[32.755,29.0825],[33.1025,29.0375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.72515,53.843041],[7.423711,53.838926]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[127.45,-8.3175],[126.5075,-6.465]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.036484,39.93668],[22.885,39.6825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.705,49.365],[-8.555625,49.891875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.635,34.76],[25.2,34.7325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[69.88375,-9.961875],[68.73,-8.7575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.682773,58.456992],[10.084219,58.238926]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[45.4975,69.6475],[46.655,69.8425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-82.22,9.9425],[-83.045,10.6425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-37.395,-32.83],[-40,-32.7175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[164.83,-24.25],[164.455,-24.7225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60.035053,19.990462],[-61.77,21.8775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.701875,35.807187],[22.894749,36.008716]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.928772,36.401431],[20.928555,36.400508]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.619375,-16.745],[-10,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[117.704375,-16.459375],[115.614688,-9.172187]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-158.7025,16.3575],[-158.795,15.93]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.375,44.045],[29.74,43.8825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.240937,37.558594],[10.603281,37.491719],[10.927529,37.445293]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[24.812754,40.071875],[24.953335,39.817231]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[36.3975,44.0375],[36.9325,44.245]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.3825,47.2575],[-2.93498,47.150312]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[135.3725,28.5825],[136.6425,30.4275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,15.5225],[-153.0025,15.4975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.507051,43.373496],[14.791904,43.008428]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-180,62.1],[-179.2,64.9]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[130.0675,36.44875],[138.09875,40.50125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[167.534844,19.455625],[173.4775,15]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-74.11,23.955],[-75.2,24.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.831406,56.232656],[19.389844,56.289297]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-5.1975,51.005],[-5.24647,51.492124]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-95.795,4.15],[-94.3825,4.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[102.6075,7.8125],[102.7075,7.5675],[103.95,4.57]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[27.8425,34.94375],[28.585,34.694375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-63.25,44.5],[-63.52,44.58],[-62.9725,44.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.695,-7.2925],[119.5275,-7.6225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[2.1525,52.260234],[2.137793,52.579573]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.865,42.035],[-65.465,43.24375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.79125,69.845],[20.725,70.63125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[65.0575,8.69],[65.055,8.175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.322187,4.794844],[52.3,11.6]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,50],[-158.305,51.775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.291563,68.2],[13.52375,68.06]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-168.57875,61.7775],[-168.64375,61.535625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[100.02625,-9.998125],[104,-7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.9275,46.1525],[141.7475,45.7025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[18.57375,55.78625],[18.470957,56.224805]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.685,25.8625],[-82.095,24.40125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.085,25.4825],[-74.63875,21.88]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.941094,36.737188],[13.26418,36.671563]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-87.295,11.66],[-88.1,12.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20,-20],[-20,-27.9225]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.728438,35.881563],[29.9975,36]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.0725,53.8725],[0.179648,53.560078]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-71.735,31.91],[-71.495,32.0825]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-102.575,-10.02],[-103.815,-6.77]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.753125,19.26875],[-66.373125,19.325625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[7.43585,54.216177],[7.061797,54.235117]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-83.776875,16.00125],[-85.6,20.9325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-84.27625,25.4875],[-84.75,25.7875],[-85.762656,26.469375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.5,-33.5],[40,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[3.514375,40.472812],[3.247812,40.450625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-172.485,-16.9125],[-170.654141,-14.443984]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-35.96,36.2725],[-40.0025,36.05]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[120,24.6325],[120.045,25.38625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[22.549687,64.623906],[22.762187,64.915625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.296934,58.780742],[-3.65125,58.699688]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.994258,43.911279],[-8.19875,43.684375],[-8.470459,43.627012]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[136.6425,30.4275],[137.5025,31.63]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-160,0],[-155,5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.051172,36.245078],[-9.59,36.469063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[123.5525,25.851875],[123.29,27.3]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.36,63.1475],[-168.260625,62.479375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-142.555,-42.8625],[-140,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.0275,62.43125],[-4.4525,64.2925]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.923516,41.146836],[9.897813,40.441094]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.9075,34.275],[-72.85,33.135]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.842695,39.815234],[13.516147,40.096208]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[131.5425,30.215],[130.9,31]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[104,-7],[101.6975,-4.315],[99.9,-1.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[20.682969,61.55],[20.867422,61.060391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[9.555738,58.746776],[9.21811,58.473256]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-9.8625,37.725625],[-9.985625,37.286875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-6.300605,48.218477],[-6.610156,47.673828]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-85.932109,22.026016],[-86.16,22.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.217041,59.531699],[5.041094,59.009687]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-3.582187,48.967187],[-4.152488,48.913396]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-52.2675,4.85],[-51.9,5.4]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.031226,49.609712],[1.045,49.44]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155.5225,58.1325],[163.4875,61.435],[164.4,62.3775]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.5,48.5675],[-125.5025,48.2675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-147.8125,71.4125],[-153.9575,71.98375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-4.988711,36.006094],[-4.732188,35.990938]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-20.048411,62.415458],[-20.005,62.3675]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.364375,66.204375],[-15.778125,66.475469]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-7.5025,47.678125],[-6.863437,47.920781]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-43.145,33.42],[-41.285,31.3975]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.987852,58.151973],[9.440625,58.222188]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[1.928394,51.919619],[1.793633,52.388354]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-130.6325,54.635],[-131.1625,54.6725]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.180596,59.44479],[22.796553,59.466914]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-62.270625,17.04],[-64.295938,17.16375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-11.2475,41.87],[-11.235,42.5525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-92.5125,2.5475],[-94.3825,4.435]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.26125,-34.13875],[16.62,-33.275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-110,20],[-103.665,13.9175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-15.385,-35.0175],[-14.615,-35.0175]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-10.765,51.4],[-10.7725,50.9625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-1.09375,-11.13375],[-1.99,-10.015]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-150,10],[-151.96,13.59]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[116.6375,18.1675],[119.6075,18.9025]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[53.67,69.5325],[54.385,69.75625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[25.998682,39.514512],[26.076138,39.862085]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-60,40],[-68.02,37.96]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0.5375,38.475],[0.451387,38.769238]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[17.513984,60.741211],[17.898516,61.085391]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[16.270781,41.757656],[16.168137,42.247499]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[81.9,5.9],[94,6.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[110.725938,-22.962031],[100,-20]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-88.55,7.305],[-90.8425,9.019375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-154.52,-34.9125],[-150,-30]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[19.79125,69.845],[19.28,69.7875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-125.795,33.3825],[-126.6575,33.8475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.915,35.365156],[-0.64375,35.8]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-73.91875,30.246875],[-74.18,30.155]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[140,30],[141.105,31.2]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[23.4625,64.715],[23.668203,64.983066]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[4.26125,38.86375],[4.02625,38.419375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-14.295,66.63],[-15.285625,66.604375]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-89.9975,-36.3225],[-90,-40]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[142.5225,56.83],[149.615,58.4125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[151.265,-39.825],[149.7025,-39.6125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[70,18.4325],[67.795,17.9125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[155,35.385],[150.94,39.1325]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.005637,54.352508],[14.183711,54.135215]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-13.50625,36.0425],[-12.9625,36.145],[-12.656172,36.203125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[29.39,70.855],[29.106875,70.955625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-66.135,31.71],[-67.53,33.2475]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[121.3,27.8],[120,25.7]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[5.614844,55.403125],[5.3225,55.644063]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[12.988867,54.780352],[12.676641,54.962285]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[90,0],[88.905,-1.1125]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[146.525,-16.085],[146.58625,-16.48]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[13.165,58.5125],[13.27,58.595],[13.36875,58.67375],[12.9025,58.7425]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-149.605,29.6275],[-150.02125,29.221875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-53.2,63.6],[-60.2225,66.865]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[28.975,33.71],[28.2925,34.13875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-2.004844,36.635937],[-1.488762,37.003491]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[138.6375,21.6275],[136.90125,20.06875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.827482,36.412427],[26.519492,36.193398]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[0,-10],[-5,-5.0575]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[49.915625,-10.021875],[50,-2.02]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-76.42,31.5175],[-77.0375,30.635]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-77,-13.7],[-77.660625,-12.09625]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.69,24.6575],[-16.095,25.7525]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-30.055938,50.082188],[-30,50.89]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[14.272461,67.835117],[14.143437,67.526875]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-167.3375,47.0575],[-169.39,41.7275]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[10.084219,58.238926],[10.008339,57.770645]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[26.032949,36.54707],[25.703306,36.368428]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-80.325,25.04],[-80.03,25.115]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[8.363936,42.587884],[7.870938,42.779531]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-16.235,47.65],[-14.8925,46.81]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-8.470459,43.627012],[-8.27332,43.46125],[-8.755679,43.520796]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[119.565,18.505],[120,19]]}},{"type":"Feature","properties":{},"geometry":{"type":"LineString","coordinates":[[-72.33,26.99],[-72.115,26.75]]}}]}', +); diff --git a/data/marnet-50km.d.cts b/data/marnet-50km.d.cts new file mode 100644 index 0000000..bfd7782 --- /dev/null +++ b/data/marnet-50km.d.cts @@ -0,0 +1,7 @@ +import type { FeatureCollection, LineString } from 'geojson'; + +/** Optional native passage label carried on marnet edges. */ +export type MarnetProperties = { pass?: string }; + +declare const marnetData: FeatureCollection; +export default marnetData; diff --git a/package.json b/package.json index 35fcd10..2fc2097 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,16 @@ "import": "./dist/esm/ports/index.js", "require": "./dist/cjs/ports/index.js" }, + "./marnet-20km": { + "types": "./dist/types/marnet/marnet-20km.d.ts", + "import": "./dist/esm/marnet/marnet-20km.js", + "require": "./dist/cjs/marnet/marnet-20km.js" + }, + "./marnet-50km": { + "types": "./dist/types/marnet/marnet-50km.d.ts", + "import": "./dist/esm/marnet/marnet-50km.js", + "require": "./dist/cjs/marnet/marnet-50km.js" + }, "./package.json": "./package.json" }, "sideEffects": [ diff --git a/scripts/build-marnet.cjs b/scripts/build-marnet.cjs index 16c369d..8d3de22 100644 --- a/scripts/build-marnet.cjs +++ b/scripts/build-marnet.cjs @@ -1,18 +1,39 @@ -/* Generate data/marnet.cjs from the eurostat marnet_plus_100km GeoJSON. +/* Generate a shared network asset (data/marnet[-].cjs) from a + * Eurostat marnet_plus GeoJSON. * * The network is emitted as a single CommonJS asset (JSON string + JSON.parse) * that both the CJS and ESM builds resolve at runtime, instead of being inlined - * into each build's marnet module. Shipping it once (as dist/data/marnet.cjs) - * roughly halves the published package size. + * into each build's marnet module. Shipping it once (as dist/data/…) roughly + * halves the published package size (issue #10). * - * Run manually when refreshing the network: - * node scripts/build-marnet.cjs /path/to/marnet_plus_100km.geojson + * Eurostat ships the network at 5 / 10 / 20 / 50 / 100 km resolutions as + * GeoPackage files in eurostat/searoute + * (modules/core/src/main/resources/marnet/marnet_plus_.gpkg). Convert the + * one you want to GeoJSON (WGS84, 6-decimal precision) first, e.g. with GDAL: + * + * ogr2ogr -f GeoJSON -lco COORDINATE_PRECISION=6 \ + * marnet_plus_20km.geojson marnet_plus_20km.gpkg + * + * then run this script with an optional resolution label. Without a label the + * output is the bundled default (data/marnet.cjs, 100 km); with one it is a + * resolution variant exposed as a subpath export (issue #11): + * + * node scripts/build-marnet.cjs marnet_plus_100km.geojson # -> data/marnet.cjs + * node scripts/build-marnet.cjs marnet_plus_20km.geojson 20km # -> data/marnet-20km.cjs + * node scripts/build-marnet.cjs marnet_plus_50km.geojson 50km # -> data/marnet-50km.cjs + * + * A companion .d.cts type declaration is (re)generated alongside each asset. */ const fs = require('fs'); const path = require('path'); const input = process.argv[2] || '/tmp/eurostat-marnet/marnet_plus_100km.geojson'; -const outPath = path.resolve(__dirname, '..', 'data/marnet.cjs'); +const resolution = process.argv[3]; // e.g. '20km'; omit for the default 100 km network + +const dataDir = path.resolve(__dirname, '..', 'data'); +const baseName = resolution ? `marnet-${resolution}` : 'marnet'; +const outPath = path.join(dataDir, `${baseName}.cjs`); +const dtsPath = path.join(dataDir, `${baseName}.d.cts`); const src = fs.readFileSync(input, 'utf8'); const parsed = JSON.parse(src); @@ -21,10 +42,14 @@ const parsed = JSON.parse(src); // and western Pacific share a single graph vertex. let touched = 0; for (const f of parsed.features) { - for (const c of f.geometry.coordinates) { - if (c[0] === 180) { - c[0] = -180; - touched++; + const geoms = + f.geometry.type === 'MultiLineString' ? f.geometry.coordinates : [f.geometry.coordinates]; + for (const line of geoms) { + for (const c of line) { + if (c[0] === 180) { + c[0] = -180; + touched++; + } } } } @@ -35,12 +60,13 @@ if (json.includes("'") || json.includes('\\')) { process.exit(1); } +const label = resolution ? `marnet_plus_${resolution}` : 'marnet_plus_100km'; const header = `/* Auto-generated by scripts/build-marnet.cjs. Do not edit by hand. * - * Single shared copy of the Eurostat marnet_plus_100km network, loaded by - * both the CJS and ESM builds (see src/lib/marnet.ts). Shipping the network - * as one asset instead of inlining it into each build roughly halves the - * published package size. + * Single shared copy of the Eurostat ${label} network, loaded by both the CJS + * and ESM builds (see src/lib/marnet.ts / src/marnet/*.ts). Shipping the + * network as one asset instead of inlining it into each build roughly halves + * the published package size. * * Source: https://github.com/eurostat/searoute (EUPL-1.2). */ @@ -49,5 +75,17 @@ const header = `/* Auto-generated by scripts/build-marnet.cjs. Do not edit by ha const body = 'module.exports = JSON.parse(\n \'' + json + '\',\n);\n'; fs.writeFileSync(outPath, header + body); + +const dts = `import type { FeatureCollection, LineString } from 'geojson'; + +/** Optional native passage label carried on marnet edges. */ +export type MarnetProperties = { pass?: string }; + +declare const marnetData: FeatureCollection; +export default marnetData; +`; +fs.writeFileSync(dtsPath, dts); + console.log('normalized', touched, 'antimeridian vertices'); console.log('wrote', outPath, '(' + (fs.statSync(outPath).size / 1024 / 1024).toFixed(2) + ' MB)'); +console.log('wrote', path.relative(path.resolve(__dirname, '..'), dtsPath)); diff --git a/scripts/copy-marnet.cjs b/scripts/copy-marnet.cjs index 63ae38f..f46092a 100644 --- a/scripts/copy-marnet.cjs +++ b/scripts/copy-marnet.cjs @@ -1,14 +1,18 @@ -/* Copy the shared network asset into a build output directory. +/* Copy the shared network asset(s) into a build output directory. * - * The CJS build (dist/cjs/lib), the ESM build (dist/esm/lib) and the test - * build (build/test/lib) all import `../../data/marnet.cjs`, which resolves to - * `/data/marnet.cjs`. Placing a single copy at that path lets both - * published builds share one asset (see issue #10) and lets the test build - * find it at runtime. + * The CJS build (dist/cjs/lib, dist/cjs/marnet), the ESM build (dist/esm/…) + * and the test build (build/test/…) all import `../../data/marnet*.cjs`, which + * resolves to `/data/marnet*.cjs`. Placing a single copy of each asset + * at that path lets both published builds share one copy (see issue #10) and + * lets the test build find them at runtime. + * + * Copies the default 100 km network plus any resolution variants + * (data/marnet-.cjs) that back the subpath exports (issue #11), together + * with their .d.cts type declarations. * * Usage: - * node scripts/copy-marnet.cjs dist # -> dist/data/marnet.cjs (+ .d.cts) - * node scripts/copy-marnet.cjs build # -> build/data/marnet.cjs (+ .d.cts) + * node scripts/copy-marnet.cjs dist # -> dist/data/marnet*.cjs (+ .d.cts) + * node scripts/copy-marnet.cjs build # -> build/data/marnet*.cjs (+ .d.cts) */ const fs = require('fs'); const path = require('path'); @@ -24,8 +28,15 @@ const srcDir = path.join(root, 'data'); const outDir = path.resolve(root, target, 'data'); fs.mkdirSync(outDir, { recursive: true }); -for (const file of ['marnet.cjs', 'marnet.d.cts']) { + +// Copy every marnet asset and its type declaration: marnet.cjs (default 100 km) +// and any marnet-.cjs resolution variants. +const files = fs + .readdirSync(srcDir) + .filter((f) => /^marnet(-[0-9]+km)?\.(cjs|d\.cts)$/.test(f)); + +for (const file of files) { fs.copyFileSync(path.join(srcDir, file), path.join(outDir, file)); } -console.log('copied network asset to', path.relative(root, outDir)); +console.log('copied', files.length, 'network asset files to', path.relative(root, outDir)); diff --git a/src/marnet/index.spec.ts b/src/marnet/index.spec.ts new file mode 100644 index 0000000..b04902f --- /dev/null +++ b/src/marnet/index.spec.ts @@ -0,0 +1,51 @@ +import test from 'ava'; + +import { DEFAULT_MARNET as MARNET_20KM } from './marnet-20km'; +import { DEFAULT_MARNET as MARNET_50KM } from './marnet-50km'; +import { clearFinderCache, DEFAULT_MARNET, seaRoute } from '../index'; + +test.beforeEach(() => clearFinderCache()); + +const SHANGHAI: [number, number] = [121.5, 31.0]; +const ROTTERDAM: [number, number] = [4.4, 51.9]; + +test('marnet-20km exposes a finer FeatureCollection of LineStrings', (t) => { + t.is(MARNET_20KM.type, 'FeatureCollection'); + t.true(MARNET_20KM.features.length > 25000, `got ${MARNET_20KM.features.length} features`); + t.true(MARNET_20KM.features.every((f) => f.geometry.type === 'LineString')); + // Finer than the bundled 100 km default. + t.true(MARNET_20KM.features.length > DEFAULT_MARNET.features.length); +}); + +test('marnet-50km exposes a network between the default and 20 km resolution', (t) => { + t.is(MARNET_50KM.type, 'FeatureCollection'); + t.true(MARNET_50KM.features.length > 12000, `got ${MARNET_50KM.features.length} features`); + t.true(MARNET_50KM.features.every((f) => f.geometry.type === 'LineString')); + t.true(MARNET_50KM.features.length > DEFAULT_MARNET.features.length); + t.true(MARNET_50KM.features.length < MARNET_20KM.features.length); +}); + +test('resolution variants keep the native passage labels', (t) => { + const labels = (net: typeof MARNET_20KM) => + new Set(net.features.map((f) => f.properties?.pass).filter(Boolean)); + t.true(labels(MARNET_20KM).has('suez')); + t.true(labels(MARNET_20KM).has('panama')); + t.true(labels(MARNET_50KM).has('suez')); +}); + +test('seaRoute accepts a resolution variant via the network option', (t) => { + const r = seaRoute(SHANGHAI, ROTTERDAM, { network: MARNET_20KM, units: 'kilometers' }); + t.is(r.geometry.type, 'LineString'); + // Shanghai → Rotterdam via Suez sits in the same ~19,000–21,000 km band as the + // default network; the finer graph should not change the corridor materially. + t.true(r.properties.length > 18000 && r.properties.length < 22000, `${r.properties.length} km`); +}); + +test('the 20 km network yields a higher-fidelity (more detailed) path than the default', (t) => { + const fine = seaRoute(SHANGHAI, ROTTERDAM, { network: MARNET_20KM, units: 'kilometers' }); + const coarse = seaRoute(SHANGHAI, ROTTERDAM, { units: 'kilometers' }); + t.true( + fine.geometry.coordinates.length > coarse.geometry.coordinates.length, + `fine ${fine.geometry.coordinates.length} vs coarse ${coarse.geometry.coordinates.length}`, + ); +}); diff --git a/src/marnet/marnet-20km.ts b/src/marnet/marnet-20km.ts new file mode 100644 index 0000000..b3e97e5 --- /dev/null +++ b/src/marnet/marnet-20km.ts @@ -0,0 +1,32 @@ +import type { MarnetNetwork } from '../lib/finder.js'; + +import marnetData from '../../data/marnet-20km.cjs'; + +/** + * Eurostat `marnet_plus_20km` maritime network (~29,581 LineString segments, + * ~3.6 MB JSON) — roughly 3× the resolution of the bundled 100 km default. + * + * Finer resolution gives more accurate coastal routing and shorter-hop + * fidelity, at the cost of a larger download and slightly slower first-route + * graph construction. Pass it to the `network` option: + * + * ```ts + * import { DEFAULT_MARNET } from 'searoute-ts/marnet-20km'; + * import { seaRoute } from 'searoute-ts'; + * + * seaRoute(origin, destination, { network: DEFAULT_MARNET }); + * ``` + * + * The network ships as a single shared `dist/data/marnet-20km.cjs` asset that + * both the CJS and ESM builds resolve at runtime (see issue #10). Because it is + * a subpath export, the core stays lean — you only pay for this network if you + * import it. + * + * Source: https://github.com/eurostat/searoute (EUPL-1.2). + */ +export const DEFAULT_MARNET: MarnetNetwork = marnetData as MarnetNetwork; + +export type { MarnetNetwork } from '../lib/finder.js'; +export type { MarnetProperties } from '../lib/marnet.js'; + +export default DEFAULT_MARNET; diff --git a/src/marnet/marnet-50km.ts b/src/marnet/marnet-50km.ts new file mode 100644 index 0000000..987f3e9 --- /dev/null +++ b/src/marnet/marnet-50km.ts @@ -0,0 +1,31 @@ +import type { MarnetNetwork } from '../lib/finder.js'; + +import marnetData from '../../data/marnet-50km.cjs'; + +/** + * Eurostat `marnet_plus_50km` maritime network (~15,498 LineString segments, + * ~1.9 MB JSON) — roughly 1.6× the resolution of the bundled 100 km default. + * + * A modest step up in coastal-routing accuracy for a small size increase. Pass + * it to the `network` option: + * + * ```ts + * import { DEFAULT_MARNET } from 'searoute-ts/marnet-50km'; + * import { seaRoute } from 'searoute-ts'; + * + * seaRoute(origin, destination, { network: DEFAULT_MARNET }); + * ``` + * + * The network ships as a single shared `dist/data/marnet-50km.cjs` asset that + * both the CJS and ESM builds resolve at runtime (see issue #10). Because it is + * a subpath export, the core stays lean — you only pay for this network if you + * import it. + * + * Source: https://github.com/eurostat/searoute (EUPL-1.2). + */ +export const DEFAULT_MARNET: MarnetNetwork = marnetData as MarnetNetwork; + +export type { MarnetNetwork } from '../lib/finder.js'; +export type { MarnetProperties } from '../lib/marnet.js'; + +export default DEFAULT_MARNET;